86 lines
4.7 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Type Name="IClientMessageFormatter" FullName="System.ServiceModel.Dispatcher.IClientMessageFormatter">
<TypeSignature Language="C#" Value="public interface IClientMessageFormatter" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IClientMessageFormatter" />
<AssemblyInfo>
<AssemblyName>System.ServiceModel</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implement the <see cref="T:System.ServiceModel.Dispatcher.IClientMessageFormatter" /> interface to create a custom client formatter that serializes objects into messages and deserializes messages into objects for a particular operation.</para>
<para>Attach custom indigo1 client formatters to the <see cref="P:System.ServiceModel.Dispatcher.ClientOperation.Formatter" /> property to handle this conversion explicitly.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Defines methods that are used to control the conversion of messages into objects and objects into messages for client applications.</para>
</summary>
</Docs>
<Members>
<Member MemberName="DeserializeReply">
<MemberSignature Language="C#" Value="public object DeserializeReply (System.ServiceModel.Channels.Message message, object[] paremeters);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance object DeserializeReply(class System.ServiceModel.Channels.Message message, object[] paremeters) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="System.ServiceModel.Channels.Message" />
<Parameter Name="paremeters" Type="System.Object[]" />
</Parameters>
<Docs>
<param name="paremeters">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>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.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Converts a message into a return value and out parameters that are passed back to the calling operation.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The return value of the operation.</para>
</returns>
<param name="message">
<attribution license="cc4" from="Microsoft" modified="false" />The inbound message.</param>
</Docs>
</Member>
<Member MemberName="SerializeRequest">
<MemberSignature Language="C#" Value="public System.ServiceModel.Channels.Message SerializeRequest (System.ServiceModel.Channels.MessageVersion version, object[] inputs);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.ServiceModel.Channels.Message SerializeRequest(class System.ServiceModel.Channels.MessageVersion version, object[] inputs) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Channels.Message</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="version" Type="System.ServiceModel.Channels.MessageVersion" />
<Parameter Name="inputs" Type="System.Object[]" />
</Parameters>
<Docs>
<param name="version">To be added.</param>
<param name="inputs">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Called after an operation is invoked on the client but prior to serializing the outbound message. Implement to convert the parameter objects into the outbound message.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Converts an <see cref="T:System.Object" /> array into an outbound <see cref="T:System.ServiceModel.Channels.Message" />. </para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The SOAP message sent to the service operation.</para>
</returns>
</Docs>
</Member>
</Members>
</Type>