System.MarshalByRefObject.GetIdentity C# (CSharp) Method

GetIdentity() static private method

static private GetIdentity ( MarshalByRefObject obj ) : Identity
obj MarshalByRefObject
return System.Runtime.Remoting.Identity
        internal static Identity GetIdentity(MarshalByRefObject obj)
        {
            BCLDebug.Assert(!RemotingServices.IsTransparentProxy(obj), "Use this method for server objects only");

            bool fServer;            
            return GetIdentity(obj, out fServer);
        }

Same methods

MarshalByRefObject::GetIdentity ( MarshalByRefObject obj, bool &fServer ) : Identity

Usage Example

        // Token: 0x06000FF4 RID: 4084 RVA: 0x000309B4 File Offset: 0x0002EBB4
        internal static Identity GetIdentity(MarshalByRefObject obj)
        {
            bool flag;

            return(MarshalByRefObject.GetIdentity(obj, out flag));
        }
All Usage Examples Of System.MarshalByRefObject::GetIdentity