IServerFormatterSinkProvider Interface
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.
Marks a server channel sink provider as a server formatter sink provider.
public interface class IServerFormatterSinkProvider : System::Runtime::Remoting::Channels::IServerChannelSinkProvider
public interface IServerFormatterSinkProvider : System.Runtime.Remoting.Channels.IServerChannelSinkProvider
[System.Runtime.InteropServices.ComVisible(true)]
public interface IServerFormatterSinkProvider : System.Runtime.Remoting.Channels.IServerChannelSinkProvider
type IServerFormatterSinkProvider = interface
interface IServerChannelSinkProvider
[<System.Runtime.InteropServices.ComVisible(true)>]
type IServerFormatterSinkProvider = interface
interface IServerChannelSinkProvider
Public Interface IServerFormatterSinkProvider
Implements IServerChannelSinkProvider
- Derived
- Attributes
- Implements
Remarks
A IServerFormatterSinkProvider creates server formatter sinks for the server channel through which remoting messages flow.
To use a <formatter>
tag instead of a <provider>
tag within a configuration file, the server channel sink provider must implement the IClientFormatterSinkProvider interface instead of IClientChannelSinkProvider. For additional information about remoting configuration, see Channel and Formatter Configuration Properties and Remoting Settings Schema.
Some formatter sink implementations use run-time formatters (BinaryFormatter and SoapFormatter). Other implementations can use their own means to transform the channel message into the stream. On the return journey, the formatter sink will transform the message stream back into the channel message elements (return message).
Properties
Next |
Gets or sets the next sink provider in the channel sink provider chain. (Inherited from IServerChannelSinkProvider) |
Methods
CreateSink(IChannelReceiver) |
Creates a sink chain. (Inherited from IServerChannelSinkProvider) |
GetChannelData(IChannelDataStore) |
Returns the channel data for the channel that the current sink is associated with. (Inherited from IServerChannelSinkProvider) |