 | IValidatorIDValidation Method |
Validates the ID of a CAEX object. IDs of CAEX objects shall be unique.
Namespace: Aml.Engine.Services.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax(bool IsValid, string Message) IDValidation(
CAEXObject caexObject,
string ID
)
Function IDValidation (
caexObject As CAEXObject,
ID As String
) As (IsValid As Boolean, Message As String)
ValueTuple<bool, String^> IDValidation(
CAEXObject^ caexObject,
String^ ID
)
Parameters
- caexObject CAEXObject
- The CAEX object.
- ID String
-
The ID, which should be assigned to the object. If no ID is defined, the uniqueness of the already
assigned ID is evaluated.
Return Value
ValueTupleBoolean,
StringA value tuple, returning the validation result and a message
See Also