IClientMessageFormatter.DeserializeReply(Message, Object[]) 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.
Converts a message into a return value and out
parameters that are passed back to the calling operation.
public:
System::Object ^ DeserializeReply(System::ServiceModel::Channels::Message ^ message, cli::array <System::Object ^> ^ parameters);
public object DeserializeReply (System.ServiceModel.Channels.Message message, object[] parameters);
abstract member DeserializeReply : System.ServiceModel.Channels.Message * obj[] -> obj
Public Function DeserializeReply (message As Message, parameters As Object()) As Object
Parameters
- message
- Message
The inbound message.
- parameters
- Object[]
Any out
values.
Returns
The return value of the operation.
Remarks
Called after a reply message is received. Implement to convert the reply message into a return value (and any out
parameters) that is returned to the calling application.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.