Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Message::CreateMessage Method (MessageVersion^, FaultCode^, String^, String^)

 

Creates a message that contains a SOAP fault, the reason for the fault, a version and an action.

Namespace:   System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
static Message^ CreateMessage(
	MessageVersion^ version,
	FaultCode^ faultCode,
	String^ reason,
	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.

action
Type: System::String^

A description of how the message should be processed.

Return Value

Type: System.ServiceModel.Channels::Message^

A Message object for the message created.

Exception Condition
ArgumentNullException

version, fault, action 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
Return to top
Show:
© 2017 Microsoft