This API supports the FIM 2010 infrastructure. Using this API directly from your code is not supported.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As XmlInteractiveActivity
Dim value As FaultException

value = instance.CreateFaultMessage

instance.CreateFaultMessage = value

Syntax

Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
<DescriptionAttribute("A Fault Exception that is to be sent back to the client after a WS-Transfer Create Request has been received. For example, if the document cannot be deserialized, or fails document validation, an InvalidRepresentationFault should be sent back to the client. Also, a parent activity should set this property if OperationValidation or DocumentValidation fail: This will inform the Activity to stop processing the document, and to return the fault response to the client.")> _
<CategoryAttribute("Parameters")> _
<ValidationOptionAttribute(ValidationOption.Optional)> _
<BrowsableAttribute(True)> _
Public Property CreateFaultMessage As FaultException
C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] 
[DescriptionAttribute("A Fault Exception that is to be sent back to the client after a WS-Transfer Create Request has been received. For example, if the document cannot be deserialized, or fails document validation, an InvalidRepresentationFault should be sent back to the client. Also, a parent activity should set this property if OperationValidation or DocumentValidation fail: This will inform the Activity to stop processing the document, and to return the fault response to the client.")] 
[CategoryAttribute("Parameters")] 
[ValidationOptionAttribute(ValidationOption.Optional)] 
[BrowsableAttribute(true)] 
public FaultException CreateFaultMessage { get; set; }
C++
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)] 
[DescriptionAttribute(L"A Fault Exception that is to be sent back to the client after a WS-Transfer Create Request has been received. For example, if the document cannot be deserialized, or fails document validation, an InvalidRepresentationFault should be sent back to the client. Also, a parent activity should set this property if OperationValidation or DocumentValidation fail: This will inform the Activity to stop processing the document, and to return the fault response to the client.")] 
[CategoryAttribute(L"Parameters")] 
[ValidationOptionAttribute(ValidationOption::Optional)] 
[BrowsableAttribute(true)] 
public:
property FaultException^ CreateFaultMessage {
		FaultException^ get ();
		void set (FaultException^ value);
}
J#
/** @property */
public FaultException get_CreateFaultMessage ()

/** @property */
public void set_CreateFaultMessage (FaultException value)
JScript
public function get CreateFaultMessage () : FaultException

public function set CreateFaultMessage (value : FaultException)

Property Value

Returns FaultException.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

Windows 2008 x64 Edition

See Also