SoapClientFormatterSink Class
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.
Provides the implementation for a client formatter sink that uses the SoapFormatter.
public ref class SoapClientFormatterSink : System::Runtime::Remoting::Channels::IClientFormatterSink
public class SoapClientFormatterSink : System.Runtime.Remoting.Channels.IClientFormatterSink
type SoapClientFormatterSink = class
interface IClientFormatterSink
interface IMessageSink
interface IClientChannelSink
interface IChannelSinkBase
Public Class SoapClientFormatterSink
Implements IClientFormatterSink
- Inheritance
-
SoapClientFormatterSink
- Implements
Remarks
The function of the formatter sink is to generate the necessary headers and serialize the message to the stream. After reaching the formatter sink, the IMessage is forwarded to all sinks in the channel sink chain through the ProcessMessage or AsyncProcessRequest calls. At this stage the message has already been serialized and is provided as information only. Sinks that need to create or modify the message need to be placed in the sink chain before the formatter. This can be achieved by implementing both the IMessageSink and IClientChannelSink interfaces. The formatter sink can be placed in the sink chain later.
Property | Description |
---|---|
includeVersions |
Specifies whether the formatter will include versioning information. Values are true or false . |
Important
Using an instance of this object with untrusted data or across an unsecure channel is a security risk. Use this object only with trusted data and across a secure channel. For more information, see Validate All Inputs.
Constructors
SoapClientFormatterSink(IClientChannelSink) |
Initializes a new instance of the SoapClientFormatterSink class. |
Properties
NextChannelSink |
Gets the next IClientChannelSink in the sink chain. |
NextSink |
Gets the next IMessageSink in the sink chain. |
Properties |
Gets a IDictionary of properties for the current channel sink. |
Methods
AsyncProcessMessage(IMessage, IMessageSink) |
Asynchronously processes the provided message. |
AsyncProcessRequest(IClientChannelSinkStack, IMessage, ITransportHeaders, Stream) |
Requests asynchronous processing of a method call on the current sink. |
AsyncProcessResponse(IClientResponseChannelSinkStack, Object, ITransportHeaders, Stream) |
Requests asynchronous processing of a response to a method call on the current sink. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetRequestStream(IMessage, ITransportHeaders) |
Returns the Stream onto which the provided message is to be serialized. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ProcessMessage(IMessage, ITransportHeaders, Stream, ITransportHeaders, Stream) |
Requests message processing from the current sink. |
SyncProcessMessage(IMessage) |
Synchronously processes the provided message. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |