WorkflowApplicationEventArgs 클래스
정의
WorkflowApplication과 연결된 이벤트의 기본 클래스입니다.A base class for events associated with a WorkflowApplication .
public ref class WorkflowApplicationEventArgs : EventArgs
public class WorkflowApplicationEventArgs : EventArgs
type WorkflowApplicationEventArgs = class
inherit EventArgs
Public Class WorkflowApplicationEventArgs
Inherits EventArgs
- 상속
- 파생
예제
다음 코드 예제에서는 WorkflowApplicationEventArgs 인스턴스의 Unloaded 처리기로 전달된 WorkflowApplication를 검사하고 언로드된 워크플로의 InstanceId를 표시합니다.The following code example inspects the WorkflowApplicationEventArgs passed into the Unloaded handler of a WorkflowApplication instance and displays the InstanceId of the workflow that was unloaded.
wfApp.Unloaded = delegate(WorkflowApplicationEventArgs e)
{
Console.WriteLine("Workflow {0} unloaded.", e.InstanceId);
};
설명
WorkflowApplicationEventArgs도 Unloaded 인스턴스의 WorkflowApplication 처리기에 사용됩니다.WorkflowApplicationEventArgs is also used in the Unloaded handler of a WorkflowApplication instance.
속성
InstanceId |
워크플로 인스턴스의 고유 식별자입니다.The unique identifier of the workflow instance. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다.Determines whether the specified object is equal to the current object. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다.Serves as the default hash function. (다음에서 상속됨 Object) |
GetInstanceExtensions<T>() |
지정한 형식의 확장명 컬렉션을 가져옵니다.Gets the collection of extensions of the specified type. |
GetType() |
현재 인스턴스의 Type을 가져옵니다.Gets the Type of the current instance. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다.Creates a shallow copy of the current Object. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다.Returns a string that represents the current object. (다음에서 상속됨 Object) |