FaultHandlerActivity.FaultType 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
속성 값
예제
다음 예제에서는 FaultType
속성을 설정하는 방법을 보여 줍니다. 이 예제는 Compensation SDK 샘플에 포함되어 있습니다. 자세한 내용은 보정 샘플합니다.
this.NoProductFault.FaultType = typeof(DiscontinuedProductException);
Me.NoProductFault.FaultType = GetType(DiscontinuedProductException)
설명
FaultHandlerActivity를 사용하려면 이 속성을 설정해야 합니다.