Share via


ValidationController.ValidateCustom Method (Store, array<String )

Validates every model elements in a store, using validation methods in the specified custom categories. A validation method belongs to a category if it has a ValidationMethod attribute specifying that category.

Namespace:  Microsoft.VisualStudio.Modeling.Validation
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)

Syntax

'Declaration
Public Function ValidateCustom ( _
    store As Store, _
    ParamArray customCategories As String() _
) As Boolean
public bool ValidateCustom(
    Store store,
    params string[] customCategories
)
public:
bool ValidateCustom(
    Store^ store, 
    ... array<String^>^ customCategories
)
member ValidateCustom : 
        store:Store * 
        customCategories:string[] -> bool
public function ValidateCustom(
    store : Store, 
    ... customCategories : String[]
) : boolean

Parameters

  • customCategories
    Type: array<String[]

    Specifies which validation methods will be applied. Every validation method that has a ValidationMethod attribute that specifies one of these custom categories will be applied to each model element in the store.

Return Value

Type: Boolean
true if the store is valid and no errors were found; otherwise, false.

.NET Framework Security

See Also

Reference

ValidationController Class

ValidateCustom Overload

Microsoft.VisualStudio.Modeling.Validation Namespace