EdmValidator.Validate Method (IEdmModel, ValidationRuleSet, IEnumerable<EdmError>%)
Validates the IEdmModel and all of its properties given certain version.
Namespace: Microsoft.Data.Edm.Validation
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Validate ( _
root As IEdmModel, _
ruleSet As ValidationRuleSet, _
<OutAttribute> ByRef errors As IEnumerable(Of EdmError) _
) As Boolean
'Usage
Dim root As IEdmModel
Dim ruleSet As ValidationRuleSet
Dim errors As IEnumerable(Of EdmError)
Dim returnValue As Boolean
returnValue = root.Validate(ruleSet, _
errors)
public static bool Validate(
this IEdmModel root,
ValidationRuleSet ruleSet,
out IEnumerable<EdmError> errors
)
[ExtensionAttribute]
public:
static bool Validate(
IEdmModel^ root,
ValidationRuleSet^ ruleSet,
[OutAttribute] IEnumerable<EdmError^>^% errors
)
static member Validate :
root:IEdmModel *
ruleSet:ValidationRuleSet *
errors:IEnumerable<EdmError> byref -> bool
public static function Validate(
root : IEdmModel,
ruleSet : ValidationRuleSet,
errors : IEnumerable<EdmError>
) : boolean
Parameters
- root
Type: Microsoft.Data.Edm.IEdmModel
The root of the model to be validated.
- ruleSet
Type: Microsoft.Data.Edm.Validation.ValidationRuleSet
The custom rule set to validate against.
- errors
Type: System.Collections.Generic.IEnumerable<EdmError>%
The errors encountered while validating the model.
Return Value
Type: System.Boolean
True if model is valid, otherwise false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).