Click or drag to resize

ValidationResultsNotUniqueIDs Method

Gets the validation results for all elements with IDs which are not unique in the document.

Namespace: Aml.Engine.Services
Assembly: Aml.Engine.Services (in Aml.Engine.Services.dll) Version: 3.2
Syntax
public static IEnumerable<ValidationElement> NotUniqueIDs(
	this IEnumerable<ValidationElement> validationResult
)

Parameters

validationResult  IEnumerableValidationElement
The validation result. Use the IDValidationResults(IEnumerableValidationElement) as a parameter for this method.

Return Value

IEnumerableValidationElement
All validation results, which are related to CAEX object IDs which are not unique.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableValidationElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also