7 writes to Principal
mscorlib (7)
system\runtime\remoting\callcontext.cs (2)
90GetMutableExecutionContext().LogicalCallContext.Principal = value; 636this.Principal = null;
system\runtime\remoting\crossappdomainchannel.cs (2)
401callCtx.Principal = null; 589lcc.Principal = currentPrincipal;
system\runtime\remoting\messagesmuggler.cs (1)
509lcc.Principal = null;
system\runtime\remoting\realproxy.cs (1)
966retCtx.Principal = principal;
system\runtime\remoting\stackbuildersink.cs (1)
490messageCallContext.Principal = currentPrincipal;
7 references to Principal
mscorlib (7)
system\runtime\remoting\callcontext.cs (2)
317public IPrincipal Principal { get { return IsNull ? null : m_ctx.Principal; } } 630IPrincipal currentPrincipal = this.Principal;
system\runtime\remoting\crossappdomainchannel.cs (1)
400if (callCtx.Principal != null)
system\runtime\remoting\messagesmuggler.cs (1)
508if (lcc.Principal != null)
system\runtime\remoting\realproxy.cs (1)
964IPrincipal principal = oldCtx.Principal;
system\runtime\remoting\stackbuildersink.cs (2)
485if (messageCallContext.Principal == null) 487IPrincipal currentPrincipal = threadCallContext.Principal;