MsieJavaScriptEngine.JsRt.JavaScriptContext.StartProfiling C# (CSharp) Method

StartProfiling() public static method

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.
return void
        public static void StartProfiling(Native.IActiveScriptProfilerCallback callback, Native.ProfilerEventMask eventMask, int context)
        {
            Native.ThrowIfError(Native.JsStartProfiling(callback, eventMask, context));
        }