ValidationContextExtensions.LogFatal Method
Display an error message in the Visual Studio error list. If the user attempts to save the model, warn that it might not be possible to re-open it.
Namespace: Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml
Assembly: Microsoft.VisualStudio.ArchitectureTools.Extensibility (in Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Sub LogFatal ( _
context As ValidationContext, _
description As String, _
code As String, _
ParamArray elements As IElement() _
)
public static void LogFatal(
this ValidationContext context,
string description,
string code,
params IElement[] elements
)
[ExtensionAttribute]
public:
static void LogFatal(
ValidationContext^ context,
String^ description,
String^ code,
... array<IElement^>^ elements
)
static member LogFatal :
context:ValidationContext *
description:string *
code:string *
elements:IElement[] -> unit
public static function LogFatal(
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[]Elements that should be selected when the user double-clicks the error message.
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