3 instantiations of ObjRef
mscorlib (3)
system\marshalbyrefobject.cs (1)
193return new ObjRef(this, requestedType);
system\runtime\remoting\objref.cs (1)
593return new ObjRef(this);
system\runtime\remoting\realproxy.cs (1)
403return new ObjRef((MarshalByRefObject)GetTransparentProxy(), requestedType);
67 references to ObjRef
mscorlib (61)
system\appdomain.cs (1)
4244internal static extern ObjRef nCreateInstance(String friendlyName,
system\applicationactivator.cs (1)
172ObjRef or = AppDomain.nCreateInstance(adSetup.ActivationArguments.ApplicationIdentity.FullName,
system\marshalbyrefobject.cs (1)
186public virtual ObjRef CreateObjRef(Type requestedType)
system\runtime\remoting\identity.cs (6)
277((ObjRef)_objRef).URI = null; 368internal ObjRef ObjectRef 373return (ObjRef) _objRef; 381internal ObjRef RaceSetObjRef(ObjRef objRefGiven) 387return (ObjRef) _objRef;
system\runtime\remoting\identityholder.cs (1)
400String objURI, String URL, ObjRef objectRef)
system\runtime\remoting\messagesmuggler.cs (5)
82ObjRef objRef = RemotingServices.MarshalInternal(mbo, null, null); 92ObjRef smugObjRef = objRef.CreateSmuggleableCopy(); 241ObjRef _objRef; 244public SmuggledObjRef(ObjRef objRef) 249public ObjRef ObjRef
system\runtime\remoting\objref.cs (8)
430private static Type orType = typeof(ObjRef); 435private ObjRef(ObjRef o) 437BCLDebug.Assert(o.GetType() == typeof(ObjRef), "this should be just an ObjRef"); 550if ((this.GetType() != typeof(ObjRef)) || IsObjRefLite()) 589internal ObjRef CreateSmuggleableCopy() 748bool fRefine = !(GetType() == typeof(ObjRef)); 873ObjRef.IsWellFormed(this), 1078internal static bool IsWellFormed(ObjRef objectRef)
system\runtime\remoting\proxyattribute.cs (1)
72public virtual RealProxy CreateProxy(ObjRef objRef,
system\runtime\remoting\realproxy.cs (2)
395public virtual ObjRef CreateObjRef(Type requestedType) 889(ObjRef)ctorRetMsg.ReturnValue,
system\runtime\remoting\remotingproxy.cs (1)
662ObjRef oRef = IdentityObject.ObjectRef;
system\runtime\remoting\remotingservices.cs (25)
158ObjRef objRef = id.ObjectRef; 463public static ObjRef Marshal(MarshalByRefObject Obj) 470public static ObjRef Marshal(MarshalByRefObject Obj, String URI) 477public static ObjRef Marshal(MarshalByRefObject Obj, String ObjURI, Type RequestedType) 484internal static ObjRef MarshalInternal(MarshalByRefObject Obj, String ObjURI, Type RequestedType) 490internal static ObjRef MarshalInternal(MarshalByRefObject Obj, String ObjURI, Type RequestedType, bool updateChannelData) 497internal static ObjRef MarshalInternal(MarshalByRefObject Obj, String ObjURI, Type RequestedType, bool updateChannelData, bool isInitializing) 504ObjRef objectRef = null; 823ObjRef or = RemotingServices.MarshalInternal( 832public static Object Unmarshal(ObjRef objectRef) 838public static Object Unmarshal(ObjRef objectRef, bool fRefine) 938public static ObjRef GetObjRefForProxy(MarshalByRefObject obj) 940ObjRef objRef = null; 1169ObjRef objectRef, 1182if (!ObjRef.IsWellFormed(objectRef)) 1342BCLDebug.Assert(ObjRef.IsWellFormed(idObj.ObjectRef), 1553ObjRef objectRef, 1764ObjRef objRef = id.ObjectRef; 1823ObjRef objRef = CreateDataForDomain(appDomainId, defCtxID); 1838ObjRef objref = MarshalInternal( 1852internal static ObjRef CreateDataForDomain(int appDomainId, IntPtr defCtxID) 1865return (ObjRef) Thread.CurrentThread.InternalCrossContextCallback(null, defCtxID, appDomainId, xctxDel, null); 2202ObjRef objRef = null; 2231ObjRef objRef; 2247Object tp, out ObjRef objRef, out bool bSameDomain, out int domainId)
system\runtime\remoting\remotingsurrogateselector.cs (2)
36private static Type s_ObjRefType = typeof(ObjRef); 196((ObjRef)obj).GetObjectData(info, context);
system\runtime\remoting\trackingservices.cs (4)
29void MarshaledObject(Object obj, ObjRef or); 33void UnmarshaledObject(Object obj, ObjRef or); 152internal static void MarshaledObject(Object obj, ObjRef or) 166internal static void UnmarshaledObject(Object obj, ObjRef or)
system\runtime\serialization\formatterservices.cs (1)
208typeof(System.Runtime.Remoting.ObjRef),
system\runtime\serialization\objectclonehelper.cs (2)
50if (serObj is ObjRef) 61ObjRef objRef = RemotingServices.MarshalInternal((MarshalByRefObject)serObj, null, null);
PresentationFramework (1)
src\Framework\MS\Internal\Navigation\BindStream.cs (1)
230public override ObjRef CreateObjRef(
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlDependency.cs (3)
497ObjRef objRef = GetObjRef(_processDispatcher); 535private static ObjRef GetObjRef(SqlDependencyProcessDispatcher _processDispatcher) { 540private static void GetSerializedObject(ObjRef objRef, BinaryFormatter formatter, MemoryStream stream) {
System.Web (1)
Configuration\RemoteWebConfigurationHostStream.cs (1)
165public override System.Runtime.Remoting.ObjRef CreateObjRef(Type requestedType)
System.Workflow.Runtime (1)
DebugEngine\DebugController.cs (1)
350ObjRef o = RemotingServices.Marshal(this, this.programId.ToString());