ValidationContextExtensions.LogError Method
Display an error message in the Visual Studio error list. When the user attempts to save the model, ask whether to continue.
Namespace: Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml
Assembly: Microsoft.VisualStudio.ArchitectureTools.Extensibility (in Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Sub LogError ( _
context As ValidationContext, _
description As String, _
code As String, _
ParamArray elements As IElement() _
)
public static void LogError(
this ValidationContext context,
string description,
string code,
params IElement[] elements
)
[ExtensionAttribute]
public:
static void LogError(
ValidationContext^ context,
String^ description,
String^ code,
... array<IElement^>^ elements
)
static member LogError :
context:ValidationContext *
description:string *
code:string *
elements:IElement[] -> unit
public static function LogError(
context : ValidationContext,
description : String,
code : String,
... elements : IElement[]
)
Parameters
description
Type: System.StringMessage displayed in the error window.
code
Type: System.StringA unique identifier for this message.
- elements
Type: array<Microsoft.VisualStudio.Uml.Classes.IElement[]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ValidationContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
.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.
See Also
Reference
ValidationContextExtensions Class
Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml Namespace