PropertyInitialValueSetEventArgs 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
| PropertyInitialValueSetEventArgs() |
Creates an instance of the PropertyInitialValueSetEventArgs class. |
| PropertyInitialValueSetEventArgs(String, String, String, String, String, String, MessageImportance) |
Creates an instance of the PropertyInitialValueSetEventArgs class. |
| PropertyInitialValueSetEventArgs(String, String, String, String, Int32, Int32, 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
PropertyInitialValueSetEventArgs(String, String, String, String, Int32, Int32, String, String, String, MessageImportance)
Creates an instance of the PropertyInitialValueSetEventArgs class.
public PropertyInitialValueSetEventArgs(string propertyName, string propertyValue, string propertySource, 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.PropertyInitialValueSetEventArgs : string * string * string * string * int * int * string * string * string * Microsoft.Build.Framework.MessageImportance -> Microsoft.Build.Framework.PropertyInitialValueSetEventArgs
Public Sub New (propertyName As String, propertyValue As String, propertySource 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.
- propertyValue
- String
The value of the property.
- propertySource
- String
The source of the property.
- 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.