Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
public static void LogError(
    this ValidationContext context,
    string description,
    string code,
    params IElement[] elements
)
public:
[ExtensionAttribute]
static void LogError(
    ValidationContext^ context,
    String^ description,
    String^ code,
    ... array<IElement^>^ elements
)
static member LogError : 
        context:ValidationContext *
        description:string *
        code:string *
        [<ParamArrayAttribute>] elements:IElement[] -> unit
<ExtensionAttribute>
Public Shared Sub LogError (
    context As ValidationContext,
    description As String,
    code As String,
    ParamArray elements As IElement()
)
Parameters
- description 
 Type: System.String- Message displayed in the error window. 
- code 
 Type: System.String- A unique identifier for this message. 
- elements
 Type: Microsoft.VisualStudio.Uml.Classes.IElement[]
See Also
ValidationContextExtensions Class
Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml Namespace
Return to top