1 write to m_ctx
mscorlib (1)
system\runtime\remoting\callcontext.cs (1)
194public Reader(IllogicalCallContext ctx) { m_ctx = ctx; }
3 references to m_ctx
mscorlib (3)
system\runtime\remoting\callcontext.cs (3)
196public bool IsNull { get { return m_ctx == null; } } 199public Object GetData(String name) { return IsNull ? null : m_ctx.GetData(name); } 201public Object HostContext { get { return IsNull ? null : m_ctx.HostContext; } }