Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)
Syntax
'Declaration
Protected Overridable Function ConstructValidationMessage ( _
description As String, _
code As String, _
violationType As ViolationType, _
ParamArray elements As ModelElement() _
) As ValidationMessage
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
)
abstract ConstructValidationMessage :
description:string *
code:string *
violationType:ViolationType *
elements:ModelElement[] -> ValidationMessage
override ConstructValidationMessage :
description:string *
code:string *
violationType:ViolationType *
elements:ModelElement[] -> ValidationMessage
protected function ConstructValidationMessage(
description : String,
code : String,
violationType : ViolationType,
... elements : ModelElement[]
) : ValidationMessage
Parameters
description
Type: StringThe message description.
code
Type: StringA code that identifies the message.
violationType
Type: Microsoft.VisualStudio.Modeling.Validation.ViolationTypeThe type of message (error, warning, or informational message).
elements
Type: array<Microsoft.VisualStudio.Modeling.ModelElement[]The elements to which the message applies.
Return Value
Type: Microsoft.VisualStudio.Modeling.Validation.ValidationMessage
The validation message; otherwise, null, if there is no validation message.
.NET Framework Security
- 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.