ValidationContextExtensions.LogWarning Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Add a message to the error window flagged as a warning.
Namespace: Microsoft.VisualStudio.Uml.Extensions
Assembly: Microsoft.VisualStudio.Uml.Extensions (in Microsoft.VisualStudio.Uml.Extensions.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Sub LogWarning ( _
context As ValidationContext, _
description As String, _
code As String, _
ParamArray elements As IElement() _
)
'Usage
Dim context As ValidationContext
Dim description As String
Dim code As String
Dim elements As IElement()
context.LogWarning(description, code, _
elements)
public static void LogWarning(
this ValidationContext context,
string description,
string code,
params IElement[] elements
)
[ExtensionAttribute]
public:
static void LogWarning(
ValidationContext^ context,
String^ description,
String^ code,
... array<IElement^>^ elements
)
static member LogWarning :
context:ValidationContext *
description:string *
code:string *
elements:IElement[] -> unit
public static function LogWarning(
context : ValidationContext,
description : String,
code : String,
... elements : IElement[]
)
Parameters
- description
Type: System.String
- code
Type: System.String
- 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