Beispiel #1
0
        public void SetVariable(string name, object value)
        {
            if (_depth == 0)
            {
                throw new MergeException("Invalid request - Scope chain has 0 links.");
            }

            _links.SetVariable(name, value);
        }