SoapServerFormatterSinkProvider Class

Definition

Provides the implementation for a server formatter channel sink provider that uses the SoapFormatter.

public ref class SoapServerFormatterSinkProvider : System::Runtime::Remoting::Channels::IServerFormatterSinkProvider
public class SoapServerFormatterSinkProvider : System.Runtime.Remoting.Channels.IServerFormatterSinkProvider
type SoapServerFormatterSinkProvider = class
    interface IServerFormatterSinkProvider
    interface IServerChannelSinkProvider
Public Class SoapServerFormatterSinkProvider
Implements IServerFormatterSinkProvider
Inheritance
SoapServerFormatterSinkProvider
Implements

Remarks

Channel sinks are connected to a server channel through implementations of the IServerChannelSinkProvider interface. All the remoting server channels provide constructors that take a IServerChannelSinkProvider as a parameter.

Channel sink providers are stored in a chain, and the user is responsible for chaining all channel sink providers together before passing the outer one to the channel constructor. IServerChannelSinkProvider provides a property called Next for this purpose.

When multiple channel sink providers are specified in a configuration file, the remoting infrastructure will chain them together in the order they are found in the configuration file. The channel sink providers and the channels are created during the RemotingConfiguration.Configure call.

Formatter sinks use sink configuration properties to configure the channel at run time. Sink properties can be specified in a configuration file, or programmatically, inside of a IDictionary. In a configuration file all values are represented by strings, but when building a property IDictionary programmatically, value types can be specified with their native values or with strings.

The following table shows the sink configuration properties that can be specified for the current sink.

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

SoapServerFormatterSinkProvider()

Initializes a new instance of the SoapServerFormatterSinkProvider class with default values.

SoapServerFormatterSinkProvider(IDictionary, ICollection)

Initializes a new instance of the SoapServerFormatterSinkProvider class with the provided properties and provider data.

Properties

Next

Gets or sets the next IServerChannelSinkProvider in the sink provider chain.

TypeFilterLevel

Gets or sets the TypeFilterLevel value of automatic deserialization the SoapServerFormatterSink performs.

Methods

CreateSink(IChannelReceiver)

Creates a sink chain.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetChannelData(IChannelDataStore)

Returns the channel data for the channel that the current sink is associated with.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also