1 write to m_ec
mscorlib (1)
system\threading\executioncontext.cs (1)
599
public Reader(ExecutionContext ec) {
m_ec
= ec; }
15 references to m_ec
mscorlib (15)
system\threading\executioncontext.cs (15)
601
public ExecutionContext DangerousGetRawExecutionContext() { return
m_ec
; }
603
public bool IsNull { get { return
m_ec
== null; } }
605
public bool IsDefaultFTContext(bool ignoreSyncCtx) { return
m_ec
.IsDefaultFTContext(ignoreSyncCtx); }
609
get { return IsNull ? false :
m_ec
.isFlowSuppressed; }
612
public bool IsSame(ExecutionContext.Reader other) { return
m_ec
== other.
m_ec
; }
614
public SynchronizationContext SynchronizationContext { get { return IsNull ? null :
m_ec
.SynchronizationContext; } }
615
public SynchronizationContext SynchronizationContextNoFlow { get { return IsNull ? null :
m_ec
.SynchronizationContextNoFlow; } }
622
get { return new SecurityContext.Reader(IsNull ? null :
m_ec
.SecurityContext); }
630
get { return new LogicalCallContext.Reader(IsNull ? null :
m_ec
.LogicalCallContext); }
636
get { return new IllogicalCallContext.Reader(IsNull ? null :
m_ec
.IllogicalCallContext); }
646
if (
m_ec
._localValues == null)
650
m_ec
._localValues.TryGetValue(local, out value);
657
var thisLocalValues = IsNull ? null :
m_ec
._localValues;
665
return !this.IsNull &&
m_ec
._localValues != null;