Message::CreateMessage Method (MessageVersion^, FaultCode^, String^, Object^, String^)
.NET Framework (current version)
Creates a message that contains a SOAP fault, a reason and the detail for the fault, a version and an action.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: static Message^ CreateMessage( MessageVersion^ version, FaultCode^ faultCode, String^ reason, Object^ detail, String^ action )
Parameters
- version
-
Type:
System.ServiceModel.Channels::MessageVersion^
A MessageVersion object that specifies the SOAP version to use for the message.
- faultCode
-
Type:
System.ServiceModel::FaultCode^
A MessageFault object that represents a SOAP fault.
- reason
-
Type:
System::String^
The reason of the SOAP fault.
- detail
-
Type:
System::Object^
The details of the SOAP fault.
- action
-
Type:
System::String^
A description of how the message should be processed.
| Exception | Condition |
|---|---|
| ArgumentNullException | version, fault, action, detail or faultCode is null. |
This static method is used to create a new copy of message ready for sending.
.NET Framework
Available since 3.0
Available since 3.0
Show: