AIT.Tools.VisualStudioTextTransform.LogicalCallContextChange.LogicalCallContextChange C# (CSharp) Метод

LogicalCallContextChange() публичный Метод

/
public LogicalCallContextChange ( string name, object newValue ) : System
name string
newValue object
Результат System
        public LogicalCallContextChange(string name, object newValue)
        {
            _name = name;
            _prevHint = CallContext.LogicalGetData(name);
            CallContext.LogicalSetData(name, newValue);
        }
LogicalCallContextChange