FaultCode.CreateReceiverFaultCode Method

Definition

Creates a receiver fault code for a message.

Overloads

CreateReceiverFaultCode(FaultCode)

Creates a receiver fault code with the specified subcode.

CreateReceiverFaultCode(String, String)

Creates a receiver fault code with the specified subcode.

CreateReceiverFaultCode(FaultCode)

Creates a receiver fault code with the specified subcode.

public:
 static System::ServiceModel::FaultCode ^ CreateReceiverFaultCode(System::ServiceModel::FaultCode ^ subCode);
public static System.ServiceModel.FaultCode CreateReceiverFaultCode (System.ServiceModel.FaultCode subCode);
static member CreateReceiverFaultCode : System.ServiceModel.FaultCode -> System.ServiceModel.FaultCode
Public Shared Function CreateReceiverFaultCode (subCode As FaultCode) As FaultCode

Parameters

subCode
FaultCode

A FaultCode object that represents the fault subcode.

Returns

A FaultCode object with the created SOAP fault subcode in the SubCode property.

Exceptions

subCode is null.

Applies to

CreateReceiverFaultCode(String, String)

Creates a receiver fault code with the specified subcode.

public:
 static System::ServiceModel::FaultCode ^ CreateReceiverFaultCode(System::String ^ name, System::String ^ ns);
public static System.ServiceModel.FaultCode CreateReceiverFaultCode (string name, string ns);
static member CreateReceiverFaultCode : string * string -> System.ServiceModel.FaultCode
Public Shared Function CreateReceiverFaultCode (name As String, ns As String) As FaultCode

Parameters

name
String

The local name for the fault subcode.

ns
String

The namespace name for the fault subcode.

Returns

A FaultCode instance with the created SOAP fault subcode in the SubCode property.

Applies to