private void SetupIdentity()
 {
     if (this._identity == null)
     {
         this._identity = IdentityHolder.FindOrCreateServerIdentity(this._serverObject, null, 0);
         ((Identity)this._identity).RaceSetTransparentProxy(this.GetTransparentProxy());
     }
 }
Esempio n. 2
0
 private void SetupIdentity()
 {
     if (this._identity != null)
     {
         return;
     }
     this._identity = (object)IdentityHolder.FindOrCreateServerIdentity(this._serverObject, (string)null, 0);
     ((Identity)this._identity).RaceSetTransparentProxy(this.GetTransparentProxy());
 }
Esempio n. 3
0
 [System.Security.SecurityCritical]  // auto-generated
 private void SetupIdentity()
 {
     if (_identity == null)
     {
         _identity = IdentityHolder.FindOrCreateServerIdentity(
             (MarshalByRefObject)_serverObject,
             null,
             IdOps.None);
         // Set the reference to the proxy in the identity object
         ((Identity)_identity).RaceSetTransparentProxy(GetTransparentProxy());
     }
 }