UninitializedPropertyReadEventArgs Constructors

Definition

Overloads

UninitializedPropertyReadEventArgs()

UninitializedPropertyReadEventArgs

UninitializedPropertyReadEventArgs(String, String, String, String, MessageImportance)

Creates an instance of the UninitializedPropertyReadEventArgs class

UninitializedPropertyReadEventArgs()

UninitializedPropertyReadEventArgs

public:
 UninitializedPropertyReadEventArgs();
public UninitializedPropertyReadEventArgs ();
Public Sub New ()

Applies to

UninitializedPropertyReadEventArgs(String, String, String, String, MessageImportance)

Creates an instance of the UninitializedPropertyReadEventArgs class

public UninitializedPropertyReadEventArgs (string propertyName, string message, string helpKeyword = default, string senderName = default, Microsoft.Build.Framework.MessageImportance importance = Microsoft.Build.Framework.MessageImportance.Low);
new Microsoft.Build.Framework.UninitializedPropertyReadEventArgs : string * string * string * string * Microsoft.Build.Framework.MessageImportance -> Microsoft.Build.Framework.UninitializedPropertyReadEventArgs
Public Sub New (propertyName As String, message As String, Optional helpKeyword As String = Nothing, Optional senderName As String = Nothing, Optional importance As MessageImportance = Microsoft.Build.Framework.MessageImportance.Low)

Parameters

propertyName
String

The name of the uninitialized property that was read.

message
String

The message of the uninitialized property that was read.

helpKeyword
String

The helpKeyword of the uninitialized property that was read.

senderName
String

The sender name of the event.

importance
MessageImportance

The message importance of the event.

Applies to