5.11 Remoting
Remoting is the cornerstone of
a
distributed application, and the FCL provides excellent support for
making and receiving remote method calls. Calls may be synchronous or
asynchronous, support request/response or one-way modes, delivered
over multiple transports (TCP, HTTP, and SMTP), and serialized in
multiple formats (SOAP and binary). The remoting infrastructure
supports multiple activation models, lease-based object lifetimes,
distributed object identity, object marshaling by reference and by
value, and message interception. These types can be extended with
user-defined channels, serializers, proxies, and call context.
For more information, see the following namespaces:
System.Runtime.Remoting
System.Runtime.Remoting.Activation
System.Runtime.Remoting.Channels
System.Runtime.Remoting.Channels.Http
System.Runtime.Remoting.Channels.Tcp
System.Runtime.Remoting.Contexts
System.Runtime.Remoting.Lifetime
System.Runtime.Remoting.Messaging
System.Runtime.Remoting.Metadata
System.Runtime.Remoting.MetadataServices
System.Runtime.Remoting.Proxies
System.Runtime.Remoting.Services
Important related types in other namespaces include:
System.AppDomain
System.ContextBoundObject
System.ContextStaticAttribute
System.MarshalByRefObject
|