Constructs a validation message. You can override this method to construct a custom validation message.
Namespace: Microsoft.VisualStudio.Modeling.Validation
Assembly: Microsoft.VisualStudio.Modeling.Sdk (in Microsoft.VisualStudio.Modeling.Sdk.dll)
Syntax
'宣言
Protected Overridable Function ConstructValidationMessage ( _
description As String, _
code As String, _
violationType As ViolationType, _
ParamArray elements As ModelElement() _
) As ValidationMessage
'使用
Dim description As String
Dim code As String
Dim violationType As ViolationType
Dim elements As ModelElement()
Dim returnValue As ValidationMessage
returnValue = Me.ConstructValidationMessage(description, _
code, violationType, elements)
protected virtual ValidationMessage ConstructValidationMessage(
string description,
string code,
ViolationType violationType,
params ModelElement[] elements
)
protected:
virtual ValidationMessage^ ConstructValidationMessage(
String^ description,
String^ code,
ViolationType violationType,
... array<ModelElement^>^ elements
)
protected function ConstructValidationMessage(
description : String,
code : String,
violationType : ViolationType,
... elements : ModelElement[]
) : ValidationMessage
Parameters
description
Type: System.StringThe message description.
code
Type: System.StringA code that identifies the message.
violationType
Type: Microsoft.VisualStudio.Modeling.Validation.ViolationTypeThe type of message (error, warning, or informational message).
elements
Type: []The elements to which the message applies.
Return Value
Type: Microsoft.VisualStudio.Modeling.Validation.ValidationMessage
The validation message; otherwise, a null reference (Nothing in Visual Basic), if there is no validation message.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.