当传递正确的参数时,以下任何方法都可以被客户端或服务器用于建立远程通信:
客户端/服务器:
System.Runtime.Remoting.RemotingConfiguration.Configure()
客户端:
System.Activator.GetObject()
客户端:
System.Runtime.Remoting.RemotingConfiguration.RegisterActivatedClientType()
System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownClientType()
System.Runtime.Remoting.RemotingServices.Connect()
服务器:
System.Runtime.Remoting.RemotingConfiguration.RegisterActivatedServiceType()
System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownServiceType()
System.Runtime.Remoting.RemotingServices.Marshal()
.NET Remoting框架中的哪些其他方法可用于建立 - 而不仅仅是配置 - 通信?