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