本文整理汇总了C#中IExecutionContext.GetVariable方法的典型用法代码示例。如果您正苦于以下问题:C# IExecutionContext.GetVariable方法的具体用法?C# IExecutionContext.GetVariable怎么用?C# IExecutionContext.GetVariable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IExecutionContext
的用法示例。
在下文中一共展示了IExecutionContext.GetVariable方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Eval
public override object Eval(IExecutionContext context)
{
if(IsInitializer)
{
context.InitVariable(Name);
}
object result = context.GetVariable(Name);
if(result == SpecialValue.VariableNotSet)
throw new VariableNotInitialized(Name);
return result;
}
示例2: GetDictionary
private static Dictionary<IValue, IValue> GetDictionary(IExecutionContext ctx)
{
return ctx.GetVariable("+object", false).Value.GetValue<Dictionary<IValue, IValue>>();
}
示例3: Set
public static IValue Set(IExecutionContext ctx, IList<IArgument> arguments)
{
var args = CommandUtilities.ManageArguments(arguments)
.Exactly(2)
.CanConvert<string>(0)
.Results();
ctx.GetVariable(args[0].GetValue<string>()).Value = args[1];
return new GenericValue<bool>(true);
}
示例4: Execute
protected override IValue Execute(IExecutionContext ctx)
{
return ctx.GetVariable(this.Variable).Value;
}
示例5: Get
public static IValue Get(IExecutionContext ctx, IList<IArgument> arguments)
{
var args = CommandUtilities.ManageArguments(arguments)
.Exactly(1)
.CanConvert<string>(0)
.Results();
return ctx.GetVariable(args[0].GetValue<string>()).Value;
}