FaultCode.CreateReceiverFaultCode Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- Source:
- FaultCode.cs
- Source:
- FaultCode.cs
- Source:
- FaultCode.cs
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
Returns
A FaultCode object with the created SOAP fault subcode in the SubCode property.
Exceptions
subCode
is null
.
Applies to
CreateReceiverFaultCode(String, String)
- Source:
- FaultCode.cs
- Source:
- FaultCode.cs
- Source:
- FaultCode.cs
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.