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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.