SoapServerFormatterSinkProvider Class
Provides the implementation for a server formatter channel sink provider that uses the SoapFormatter.
Assembly: System.Runtime.Remoting (in System.Runtime.Remoting.dll)
The SoapServerFormatterSinkProvider type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() | CreateSink | Creates a sink chain. |
![]() | 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.) |
![]() | GetChannelData | Returns the channel data for the channel that the current sink is associated with. |
![]() | GetHashCode | Serves as a hash function for a particular type. (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.) |
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. |
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.
