BinaryClientFormatterSink Class

Definition

Provides the implementation for a client formatter sink that uses the BinaryFormatter.

public ref class BinaryClientFormatterSink : System::Runtime::Remoting::Channels::IClientFormatterSink
public class BinaryClientFormatterSink : System.Runtime.Remoting.Channels.IClientFormatterSink
type BinaryClientFormatterSink = class
    interface IClientFormatterSink
    interface IMessageSink
    interface IClientChannelSink
    interface IChannelSinkBase
Public Class BinaryClientFormatterSink
Implements IClientFormatterSink
Inheritance
BinaryClientFormatterSink
Implements

Remarks

The function of the formatter sink is to generate the necessary headers and serialize the message to the stream. After the formatter sink, the IMessage is forwarded to all sinks in the 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 must be placed in the sink chain before the formatter. This is easily achieved by implementing the IClientFormatterSink interface, which gives the impression of having a reference to the formatter sink. The real formatter sink can then be placed later in the sink chain.

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

BinaryClientFormatterSink(IClientChannelSink)

Initializes a new instance of the BinaryClientFormatterSink 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)

Applies to

See also