BinaryClientFormatterSink Class
Provides the implementation for a client formatter sink that uses the BinaryFormatter.
Assembly: System.Runtime.Remoting (in System.Runtime.Remoting.dll)
The BinaryClientFormatterSink type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | BinaryClientFormatterSink | Initializes a new instance of the BinaryClientFormatterSink class. |
| Name | Description | |
|---|---|---|
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() | AsyncProcessMessage | Asynchronously processes the provided message. |
![]() | AsyncProcessRequest | Requests asynchronous processing of a method call on the current sink. |
![]() | AsyncProcessResponse | 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.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetRequestStream | 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 | Requests message processing from the current sink. |
![]() | SyncProcessMessage | Synchronously processes the provided message. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
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. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
