PropertyReassignmentEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PropertyReassignmentEventArgs() |
Creates an instance of the PropertyReassignmentEventArgs class. |
PropertyReassignmentEventArgs(String, String, String, String, String, String, String, MessageImportance) |
Creates an instance of the PropertyReassignmentEventArgs class. |
PropertyReassignmentEventArgs()
Creates an instance of the PropertyReassignmentEventArgs class.
public:
PropertyReassignmentEventArgs();
public PropertyReassignmentEventArgs ();
Public Sub New ()
Applies to
PropertyReassignmentEventArgs(String, String, String, String, String, String, String, MessageImportance)
Creates an instance of the PropertyReassignmentEventArgs class.
public PropertyReassignmentEventArgs (string propertyName, string previousValue, string newValue, string location, string message, string helpKeyword = default, string senderName = default, Microsoft.Build.Framework.MessageImportance importance = Microsoft.Build.Framework.MessageImportance.Low);
new Microsoft.Build.Framework.PropertyReassignmentEventArgs : string * string * string * string * string * string * string * Microsoft.Build.Framework.MessageImportance -> Microsoft.Build.Framework.PropertyReassignmentEventArgs
Public Sub New (propertyName As String, previousValue As String, newValue As String, location 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 whose value was reassigned.
- previousValue
- String
The previous value of the reassigned property.
- newValue
- String
The new value of the reassigned property.
- location
- String
The location of the reassignment.
- message
- String
The message of the reassignment event.
- helpKeyword
- String
The help keyword of the reassignment.
- senderName
- String
The sender name of the reassignment event.
- importance
- MessageImportance
The importance of the message.