TargetStartedEventArgs Class

Definition

Arguments for target started events

public ref class TargetStartedEventArgs : Microsoft::Build::Framework::BuildStatusEventArgs
[System.Serializable]
public class TargetStartedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs
[<System.Serializable>]
type TargetStartedEventArgs = class
    inherit BuildStatusEventArgs
Public Class TargetStartedEventArgs
Inherits BuildStatusEventArgs
Inheritance
Inheritance
Attributes

Remarks

WARNING: marking a type [Serializable] without implementing ISerializable imposes a serialization contract -- it is a promise to never change the type's fields i.e. the type is immutable; adding new fields in the next version of the type without following certain special FX guidelines, can break both forward and backward compatibility

Constructors

TargetStartedEventArgs()

Default constructor

TargetStartedEventArgs(String, String, String, String, String)

This constructor allows event data to be initialized. Sender is assumed to be "MSBuild".

TargetStartedEventArgs(String, String, String, String, String, String, DateTime)

This constructor allows event data to be initialized including the timestamp when the event was created.

TargetStartedEventArgs(String, String, String, String, String, String, TargetBuiltReason, DateTime)

This constructor allows event data to be initialized.

Fields

locker

Lock object.

(Inherited from LazyFormattedBuildEventArgs)

Properties

BuildEventContext

Event contextual information for the build event argument

(Inherited from BuildEventArgs)
BuildReason

Why this target was built by its parent.

HelpKeyword

Custom help keyword associated with event.

(Inherited from BuildEventArgs)
Message
Message

Gets the formatted message.

(Inherited from LazyFormattedBuildEventArgs)
Message

Text of event.

(Inherited from BuildEventArgs)
ParentTarget

Target which caused this target to build

ProjectFile

Project file associated with event.

RawMessage

Exposes the underlying message field without side-effects. Used for serialization.

(Inherited from BuildEventArgs)
RawTimestamp

Exposes the private Microsoft.Build.Framework.BuildEventArgs.timestamp field to derived types. Used for serialization. Avoids the side effects of calling the Timestamp getter.

(Inherited from BuildEventArgs)
SenderName

Name of the object sending this event.

(Inherited from BuildEventArgs)
TargetFile

File where this target was declared.

TargetName

target name

ThreadId

The thread that raised event.

(Inherited from BuildEventArgs)
Timestamp

The time when event was raised.

(Inherited from BuildEventArgs)

Applies to