在.NET Remoting中可以使用哪些方法建立远程通信?

时间:2012-09-24 18:10:21

标签: .net methods remoting

当传递正确的参数时,以下任何方法都可以被客户端或服务器用于建立远程通信:

客户端/服务器:

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框架中的哪些其他方法可用于建立 - 而不仅仅是配置 - 通信?

0 个答案:

没有答案