AIT.Tools.VisualStudioTextTransform.LogicalCallContextChange.LogicalCallContextChange C# (CSharp) Method

LogicalCallContextChange() public method

/
public LogicalCallContextChange ( string name, object newValue ) : System
name string
newValue object
return System
        public LogicalCallContextChange(string name, object newValue)
        {
            _name = name;
            _prevHint = CallContext.LogicalGetData(name);
            CallContext.LogicalSetData(name, newValue);
        }
LogicalCallContextChange