Exemple #1
0
        public static IValue GetGlobalContext(IExecutionContext ctx, IList<IArgument> arguments)
        {
            var args = CommandUtilities.ManageArguments(arguments)
                .Exactly(0)
                .Results();

            return new GenericValue<IExecutionContext>(ctx.GetGlobalContext());
        }