当前位置: 首页>>代码示例>>C#>>正文


C# IContext.GetValue方法代码示例

本文整理汇总了C#中IContext.GetValue方法的典型用法代码示例。如果您正苦于以下问题:C# IContext.GetValue方法的具体用法?C# IContext.GetValue怎么用?C# IContext.GetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IContext的用法示例。


在下文中一共展示了IContext.GetValue方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ArrayFunction

        public ArrayFunction(IContext context)
            : base(null, null, context)
        {
            var prototype = new DynamicObject();

            if (context != null)
            {
                var obj = context.GetValue("Object");

                if (obj != null && obj is DynamicObject)
                {
                    var superproto = ((DynamicObject)obj).GetValue("prototype");
                    if (superproto != null && superproto is DynamicObject)
                        prototype.SetValue("prototype", superproto);
                }
            }

            this.SetValue("isArray", isArrayFunction);
            this.SetValue("prototype", prototype);
            prototype.SetValue("push", pushFunction);
            prototype.SetValue("pop", popFunction);
            prototype.SetValue("unshift", unshiftFunction);
            prototype.SetValue("shift", shiftFunction);
            prototype.SetValue("join", joinFunction);
            prototype.SetValue("slice", sliceFunction);
        }
开发者ID:ajlopez,项目名称:AjScript,代码行数:26,代码来源:ArrayFunction.cs

示例2: Evaluate

        public object Evaluate(IContext context)
        {
            object value = context.GetValue(this.name);

            Type type = null;

            if (!(value is IFunction))
                type = TypeUtilities.GetType(context, this.name);

            object[] parameters = null;

            if (this.arguments != null && this.arguments.Count > 0)
            {
                List<object> values = new List<object>();

                foreach (IExpression argument in this.arguments)
                    values.Add(argument.Evaluate(context));

                parameters = values.ToArray();
            }

            if (value is IFunction)
                return ((IFunction)value).NewInstance(parameters);

            return Activator.CreateInstance(type, parameters);
        }
开发者ID:tario,项目名称:AjScript-migrated,代码行数:26,代码来源:NewExpression.cs

示例3: GetType

        public static Type GetType(IContext context, string name)
        {
            object obj = context.GetValue(name);

            if (obj != null && obj is Type)
                return (Type)obj;

            return GetType(name);
        }
开发者ID:ajlopez,项目名称:AjScript,代码行数:9,代码来源:TypeUtilities.cs

示例4: Evaluate

        public object Evaluate(IContext context)
        {
            object value = context.GetValue(this.name);

            if (value != null)
                return value;

            if (context.HasValue(this.name))
                return value;

            throw new NameError(string.Format("name '{0}' is not defined", this.name));
        }
开发者ID:jose2190,项目名称:PythonSharp,代码行数:12,代码来源:NameExpression.cs

示例5: ResolveToDictionary

        private static IDictionary ResolveToDictionary(VariableExpression expression, IContext context)
        {
            string name = expression.Name;

            object obj = context.GetValue(name);

            if (obj == null || obj == Undefined.Instance)
            {
                obj = new Hashtable();

                // TODO Review if Local or not
                context.SetValue(name, obj);
            }

            return (IDictionary)obj;
        }
开发者ID:ajlopez,项目名称:AjScript,代码行数:16,代码来源:ExpressionUtilities.cs

示例6: Evaluate

 public object Evaluate(IContext context)
 {
     return context.GetValue(this.name);
 }
开发者ID:ajlopez,项目名称:AjScript,代码行数:4,代码来源:VariableExpression.cs

示例7: ResolveToObject

        private static object ResolveToObject(VariableExpression expression, IContext context)
        {
            string name = expression.Name;

            object obj = context.GetValue(name);

            if (obj == null || obj == Undefined.Instance)
            {
                obj = new DynamicObject();

                // TODO Review if Local or not
                context.SetValue(name, obj);
            }

            return obj;
        }
开发者ID:ajlopez,项目名称:AjScript,代码行数:16,代码来源:ExpressionUtilities.cs


注:本文中的IContext.GetValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。