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