MsieJavaScriptEngine.JsRt.JavaScriptContext.StartProfiling C# (CSharp) 메소드

StartProfiling() 공개 정적인 메소드

Starts profiling in the current context.
Requires an active script context.
public static StartProfiling ( Native callback, Native eventMask, int context ) : void
callback Native The profiling callback to use.
eventMask Native The profiling events to callback with.
context int A context to pass to the profiling callback.
리턴 void
        public static void StartProfiling(Native.IActiveScriptProfilerCallback callback, Native.ProfilerEventMask eventMask, int context)
        {
            Native.ThrowIfError(Native.JsStartProfiling(callback, eventMask, context));
        }