9 references to FaultType
System.Workflow.ComponentModel (9)
AuthoringOM\Fault.cs (9)
56
if (this.Fault == null && this.
FaultType
== null)
61
if (this.
FaultType
!= null && !typeof(Exception).IsAssignableFrom(this.
FaultType
))
63
throw new InvalidOperationException(SR.GetString(CultureInfo.CurrentCulture, SR.Error_ExceptionTypeNotException, this.
FaultType
, FaultTypeProperty.Name));
66
if (this.Fault != null && this.
FaultType
!= null && !this.
FaultType
.IsInstanceOfType(this.Fault))
74
ConstructorInfo cInfo = this.
FaultType
.GetConstructor(new Type[] { });
79
throw new InvalidOperationException(SR.GetString(CultureInfo.CurrentCulture, SR.Error_FaultTypeNoDefaultConstructor, this.
FaultType
));
141
return
FaultType
;