<serverProviders> Element (Template)

Contains channel sink templates that can be inserted into a server channel call chain.

<configuration>
   <system.runtime.remoting>
      <channelSinkProviders>
         <serverProviders>

<serverProviders>
   <formatter>
   <provider>
</serverProviders>

Child Elements

Element Description
<formatter> Contains a formatter sink provider template. Can occur one or more times in the <serverProviders> template element.
<provider> Contains a sink provider template. Can occur one or more times in the <serverProviders> template element.

Example

The following configuration file declares an Internet Protocol Security (IPSsec) formatter provider that can be used by an application.

<configuration>
   <system.runtime.remoting>
      <channelSinkProviders>
         <serverProviders>
            <formatter 
               id="IPSec"
               type = "Custom.IPSec, IPSecAssembly"
            />
         </serverProviders>
      </channelSinkProviders>
   </system.runtime.remoting>
</configuration>

Requirements

Configuration Files: Application configuration file, machine configuration file (Machine.config)

See Also

Remoting Settings Schema | Sinks and Sink Chains