Beispiel #1
0
        public bool TryGetValue(string key, out object value)
        {
            var instance = ExtensionContainer.Get(key, this.context);

            if (instance == null)
            {
                value = null;
                return(false);
            }
            else
            {
                value = instance;
                return(true);
            }
        }
Beispiel #2
0
 public object this[string key] {
     get { return(ExtensionContainer.Get(key, context)); } set { ExtensionContainer.Set(value); }
 }
Beispiel #3
0
 public IkScript this[string key] {
     get { return(ExtensionContainer.Get(key, this.RenderContext)); } set { ExtensionContainer.Set(value); }
 }