system\runtime\remoting\configuration.cs (7)
437RemotingServices.RegisterWellKnownChannels();
804String svrTypeName = RemotingServices.InternalGetTypeNameFromQualifiedTypeName(TypeName);
1586if (RemotingServices.IsClientProxy(obj))
1599RemotingServices.MarshalInternal(redirectedProxy, URI, serverType, updateChannelData: true, isInitializing: true);
1617RemotingServices.MarshalInternal(comRedirectedProxy, URI, serverType, updateChannelData: true, isInitializing: true);
1628String tempUri = RemotingServices.GetObjectUri(obj);
1639RemotingServices.MarshalInternal(obj, URI, serverType, updateChannelData: true, isInitializing: true);
system\runtime\remoting\remotingservices.cs (15)
823ObjRef or = RemotingServices.MarshalInternal(
1885Type t = RemotingServices.InternalGetTypeFromQualifiedTypeName(msg.TypeName);
1962mb = t.GetMethod(msg.MethodName, RemotingServices.LookupAll);
1964mb = rt.GetMethod(msg.MethodName, RemotingServices.LookupAll);
1971mb = t.GetMethod(msg.MethodName, RemotingServices.LookupAll, null, signature, null);
1973mb = rt.GetMethod(msg.MethodName, RemotingServices.LookupAll, null, CallingConventions.Any, signature, null);
1996s_FieldGetterMB = typeof(Object).GetMethod(FieldGetterName,RemotingServices.LookupAll);
1999s_FieldSetterMB = typeof(Object).GetMethod(FieldSetterName, RemotingServices.LookupAll);
2005IsInstanceOfTypeName, RemotingServices.LookupAll);
2012CanCastToXmlTypeName, RemotingServices.LookupAll);
2019InvokeMemberName, RemotingServices.LookupAll);
2377if (RemotingServices.IsTransparentProxy(o))
2379if (RemotingServices.GetRealProxy(o) is RemotingProxy)
2427if (crossRuntime && RemotingServices.IsTransparentProxy(o))
2431if (!(RemotingServices.GetRealProxy(o) is RemotingProxy))