1 write to m_sc
mscorlib (1)
system\security\securitycontext.cs (1)
191
public Reader(SecurityContext sc) {
m_sc
= sc; }
9 references to m_sc
mscorlib (9)
system\security\securitycontext.cs (9)
193
public SecurityContext DangerousGetRawSecurityContext() { return
m_sc
; }
195
public bool IsNull { get { return
m_sc
== null; } }
196
public bool IsSame(SecurityContext sc) { return
m_sc
== sc; }
197
public bool IsSame(SecurityContext.Reader sc) { return
m_sc
== sc.
m_sc
; }
202
return (
m_sc
== null) ? false : ((
m_sc
._disableFlow & flags) == flags);
205
public CompressedStack CompressedStack { get { return IsNull ? null :
m_sc
.CompressedStack; } }
210
get { return IsNull ? null :
m_sc
.WindowsIdentity; }