HttpClientChannel Class
Assembly: System.Runtime.Remoting (in system.runtime.remoting.dll)
'Declaration Public Class HttpClientChannel Inherits BaseChannelWithProperties Implements IChannelSender, IChannel, ISecurableChannel 'Usage Dim instance As HttpClientChannel
public class HttpClientChannel extends BaseChannelWithProperties implements IChannelSender, IChannel, ISecurableChannel
public class HttpClientChannel extends BaseChannelWithProperties implements IChannelSender, IChannel, ISecurableChannel
Channels transport messages across remoting boundaries (for example, between computers or application domains). The HttpClientChannel class transports messages using the HTTP protocol.
Channels are used by the .NET Framework remoting infrastructure to transport remote calls. When a client makes a call to a remote object, the call is serialized into a message that is sent by a client channel and received by a server channel. It is then deserialized and processed. Any returned values are transmitted by the server channel and received by the client channel.
To perform additional processing of messages on the client-side, you can specify an implementation of the IClientChannelSinkProvider through which all messages processed by the HttpClientChannel are passed.
By default, the HttpServerChannel uses a SOAP formatter to serialize all messages.
A HttpClientChannel object has associated configuration properties that can be set at run time either in a configuration file (by invoking the static RemotingConfiguration.Configure method) or programmatically (by passing a IDictionary collection to the HttpClientChannel constructor). For a list of these configuration properties, see Channel and Formatter Configuration Properties.
The following code example shows how to use a HttpClientChannel to set up a remoting server and its client. The example contains three parts:
-
A server
-
A client
-
A remote object used by the server and the client
The following code example shows a server.
The following code example shows a client for this server.
The following code example shows the remote object used by the server and the client.
System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties
System.Runtime.Remoting.Channels.BaseChannelWithProperties
System.Runtime.Remoting.Channels.Http.HttpClientChannel
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.