ExternalProjectStartedEventArgs 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.
Initializes a new instance of the ExternalProjectStartedEventArgs class.
Overloads
ExternalProjectStartedEventArgs() |
Default constructor |
ExternalProjectStartedEventArgs(String, String, String, String, String) |
Useful constructor |
ExternalProjectStartedEventArgs(String, String, String, String, String, DateTime) |
Useful constructor, including the ability to set the timestamp of the event |
ExternalProjectStartedEventArgs()
Default constructor
protected:
ExternalProjectStartedEventArgs();
protected ExternalProjectStartedEventArgs ();
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
protected ExternalProjectStartedEventArgs ();
Protected Sub New ()
- Attributes
Applies to
ExternalProjectStartedEventArgs(String, String, String, String, String)
Useful constructor
public:
ExternalProjectStartedEventArgs(System::String ^ message, System::String ^ helpKeyword, System::String ^ senderName, System::String ^ projectFile, System::String ^ targetNames);
public ExternalProjectStartedEventArgs (string message, string helpKeyword, string senderName, string projectFile, string targetNames);
new Microsoft.Build.Framework.ExternalProjectStartedEventArgs : string * string * string * string * string -> Microsoft.Build.Framework.ExternalProjectStartedEventArgs
Public Sub New (message As String, helpKeyword As String, senderName As String, projectFile As String, targetNames As String)
Parameters
- message
- String
text message
- helpKeyword
- String
help keyword
- senderName
- String
name of the object sending this event
- projectFile
- String
project name
- targetNames
- String
targets we are going to build (empty indicates default targets)
Applies to
ExternalProjectStartedEventArgs(String, String, String, String, String, DateTime)
Useful constructor, including the ability to set the timestamp of the event
public:
ExternalProjectStartedEventArgs(System::String ^ message, System::String ^ helpKeyword, System::String ^ senderName, System::String ^ projectFile, System::String ^ targetNames, DateTime eventTimestamp);
public ExternalProjectStartedEventArgs (string message, string helpKeyword, string senderName, string projectFile, string targetNames, DateTime eventTimestamp);
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public ExternalProjectStartedEventArgs (string message, string helpKeyword, string senderName, string projectFile, string targetNames, DateTime eventTimestamp);
new Microsoft.Build.Framework.ExternalProjectStartedEventArgs : string * string * string * string * string * DateTime -> Microsoft.Build.Framework.ExternalProjectStartedEventArgs
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
new Microsoft.Build.Framework.ExternalProjectStartedEventArgs : string * string * string * string * string * DateTime -> Microsoft.Build.Framework.ExternalProjectStartedEventArgs
Public Sub New (message As String, helpKeyword As String, senderName As String, projectFile As String, targetNames As String, eventTimestamp As DateTime)
Parameters
- message
- String
text message
- helpKeyword
- String
help keyword
- senderName
- String
name of the object sending this event
- projectFile
- String
project name
- targetNames
- String
targets we are going to build (empty indicates default targets)
- eventTimestamp
- DateTime
Timestamp when the event was created
- Attributes