AIT.Tools.VisualStudioTextTransform.LogicalCallContextChange.LogicalCallContextChange C# (CSharp) Méthode

LogicalCallContextChange() public méthode

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