다음을 통해 공유


FaultHandlerActivity.FaultType 속성

정의

FaultHandlerActivity에서 처리되는 예외의 Type을 가져오거나 설정합니다. FaultType에 지정된 형식에서 파생된 형식의 예외도 처리됩니다.

public:
 property Type ^ FaultType { Type ^ get(); void set(Type ^ value); };
public Type FaultType { get; set; }
member this.FaultType : Type with get, set
Public Property FaultType As Type

속성 값

Type

연결된 TypeException입니다.

예제

다음 예제에서는 FaultType 속성을 설정하는 방법을 보여 줍니다. 이 예제는 Compensation SDK 샘플에 포함되어 있습니다. 자세한 내용은 보정 샘플합니다.

this.NoProductFault.FaultType = typeof(DiscontinuedProductException);
Me.NoProductFault.FaultType = GetType(DiscontinuedProductException)

설명

FaultHandlerActivity를 사용하려면 이 속성을 설정해야 합니다.

적용 대상