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


C# ScriptingContext.GetRuntimeInvokeFlags方法代码示例

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


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

示例1: GetProperty

        protected TargetObject GetProperty(ScriptingContext context,
						    TargetPropertyInfo prop)
        {
            RuntimeInvokeFlags flags = context.GetRuntimeInvokeFlags ();

            RuntimeInvokeResult result = context.RuntimeInvoke (
                context.CurrentThread, prop.Getter, InstanceObject,
                new TargetObject [0], flags);

            if (result.ExceptionMessage != null)
                throw new ScriptingException (
                    "Invocation of `{0}' raised an exception: {1}",
                    Name, result.ExceptionMessage);

            return result.ReturnObject;
        }
开发者ID:baulig,项目名称:debugger,代码行数:16,代码来源:Expression.cs

示例2: SetProperty

        protected void SetProperty(ScriptingContext context, TargetPropertyInfo prop,
					    TargetObject obj)
        {
            ResolveClass (context.CurrentThread);
            if (prop.Setter == null)
                throw new ScriptingException ("Property `{0}' has no setter.", Name);

            RuntimeInvokeFlags flags = context.GetRuntimeInvokeFlags ();

            RuntimeInvokeResult result = context.RuntimeInvoke (
                context.CurrentThread, prop.Setter, InstanceObject,
                new TargetObject [] { obj }, flags);

            if (result.ExceptionMessage != null)
                throw new ScriptingException (
                    "Invocation of `{0}' raised an exception: {1}",
                    Name, result.ExceptionMessage);
        }
开发者ID:baulig,项目名称:debugger,代码行数:18,代码来源:Expression.cs

示例3: DoInvoke

        protected TargetObject DoInvoke(ScriptingContext context, bool debug)
        {
            TargetObject[] args = new TargetObject [arguments.Length];

            for (int i = 0; i < arguments.Length; i++)
                args [i] = arguments [i].EvaluateObject (context);

            TargetMethodSignature sig = method.GetSignature (context.CurrentThread);

            TargetObject[] objs = new TargetObject [args.Length];
            for (int i = 0; i < args.Length; i++) {
                objs [i] = Convert.ImplicitConversionRequired (
                    context, args [i], sig.ParameterTypes [i]);
            }

            TargetStructObject instance = method_expr.InstanceObject;

            if (!method.IsStatic && !method.IsConstructor && (instance == null))
                throw new ScriptingException (
                    "Cannot invoke instance method `{0}' with a type reference.",
                    method.FullName);

            try {
                Thread thread = context.CurrentThread;
                RuntimeInvokeResult result;

                RuntimeInvokeFlags flags = context.GetRuntimeInvokeFlags ();
                if (debug)
                    flags |= RuntimeInvokeFlags.BreakOnEntry | RuntimeInvokeFlags.SendEventOnCompletion |
                        RuntimeInvokeFlags.NestedBreakStates;

                result = context.RuntimeInvoke (thread, method, instance, objs, flags);

                if (result == null)
                    throw new ScriptingException (
                        "Invocation of `{0}' aborted abnormally.", Name);

                if (result.ExceptionMessage != null)
                    throw new InvocationException (Name, result.ExceptionMessage, result.ReturnObject);

                return result.ReturnObject;
            } catch (TargetException ex) {
                throw new ScriptingException (
                    "Invocation of `{0}' raised an exception: {1}", Name, ex.Message);
            } catch (EvaluationTimeoutException ex) {
                throw new ScriptingException ("Invocation of `{0}' timed out.", Name);
            }
        }
开发者ID:baulig,项目名称:debugger,代码行数:48,代码来源:Expression.cs


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