How to: Configure a Channel Programmatically
.NET Framework 2.0
This code example shows how to configure a channel programmatically for a server application domain. In this case, the server is specifying that the remoting system should use a HttpChannel object for transportation, but use a BinaryFormatter object for serialization and deserialization.
Example
Dim props = New Hashtable() As IDictionary props("name") = "ChannelName1" Dim channel As New HttpChannel( _ props, _ Nothing, _ New BinaryServerFormatterSinkProvider() _ ) ChannelServices.RegisterChannel(channel) IDictionary props = new Hashtable(); props["name"] = "MyHttpChannel"; HttpChannel channel = new HttpChannel( props, null, new BinaryServerFormatterSinkProvider() ); ChannelServices.RegisterChannel(channel);