C# 클래스 NAnt.Core.BuildEventArgs

Class representing an event occurring during a build.

An event is built by specifying either a project, a task or a target.

A Project level event will only have a Project reference.

A Target level event will have Project and Target references.

A Task level event will have Project, Target and Task references.

상속: System.EventArgs
파일 보기 프로젝트 열기: skolima/NAnt 1 사용 예제들

공개 메소드들

메소드 설명
BuildEventArgs ( ) : System

Initializes a new instance of the BuildEventArgs class.

BuildEventArgs ( Project project ) : System

Initializes a new instance of the BuildEventArgs class for a Project level event.

BuildEventArgs ( Target target ) : System

Initializes a new instance of the BuildEventArgs class for a Target level event.

BuildEventArgs ( NAnt.Core.Task task ) : System

Initializes a new instance of the BuildEventArgs class for a Task level event.

메소드 상세

BuildEventArgs() 공개 메소드

Initializes a new instance of the BuildEventArgs class.
public BuildEventArgs ( ) : System
리턴 System

BuildEventArgs() 공개 메소드

Initializes a new instance of the BuildEventArgs class for a Project level event.
public BuildEventArgs ( Project project ) : System
project Project The that emitted the event.
리턴 System

BuildEventArgs() 공개 메소드

Initializes a new instance of the BuildEventArgs class for a Target level event.
public BuildEventArgs ( Target target ) : System
target Target The that emitted the event.
리턴 System

BuildEventArgs() 공개 메소드

Initializes a new instance of the BuildEventArgs class for a Task level event.
public BuildEventArgs ( NAnt.Core.Task task ) : System
task NAnt.Core.Task The that emitted the event.
리턴 System