PropertyInitialValueSetEventArgs Constructors

Definition

Overloads

PropertyInitialValueSetEventArgs()

Creates an instance of the PropertyInitialValueSetEventArgs class.

PropertyInitialValueSetEventArgs(String, String, String, String, String, String, MessageImportance)

Creates an instance of the PropertyInitialValueSetEventArgs class.

PropertyInitialValueSetEventArgs()

Creates an instance of the PropertyInitialValueSetEventArgs class.

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

Applies to

PropertyInitialValueSetEventArgs(String, String, String, String, String, String, MessageImportance)

Creates an instance of the PropertyInitialValueSetEventArgs class.

public PropertyInitialValueSetEventArgs (string propertyName, string propertyValue, string propertySource, string message, string helpKeyword = default, string senderName = default, Microsoft.Build.Framework.MessageImportance importance = Microsoft.Build.Framework.MessageImportance.Low);
new Microsoft.Build.Framework.PropertyInitialValueSetEventArgs : string * string * string * string * string * string * Microsoft.Build.Framework.MessageImportance -> Microsoft.Build.Framework.PropertyInitialValueSetEventArgs
Public Sub New (propertyName As String, propertyValue As String, propertySource 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 property.

propertyValue
String

The value of the property.

propertySource
String

The source of the property.

message
String

The message of the property.

helpKeyword
String

The help keyword.

senderName
String

The sender name of the event.

importance
MessageImportance

The importance of the message.

Applies to