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(String, String, String, String, String, Int32, Int32, 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.
Applies to
PropertyReassignmentEventArgs(String, String, String, String, String, Int32, Int32, String, String, String, MessageImportance)
Creates an instance of the PropertyReassignmentEventArgs class.
public PropertyReassignmentEventArgs(string propertyName, string previousValue, string newValue, string location, string file, int line, int column, 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 * int * int * 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, file As String, line As Integer, column As Integer, 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 property location (XML, command line, etc).
- file
- String
The file associated with the event.
- line
- Int32
The line number (0 if not applicable).
- column
- Int32
The column number (0 if not applicable).
- 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.