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