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

StopProfiling() public static method

Stops profiling in the current context.

Will not return an error if profiling has not started.

Requires an active script context.

public static StopProfiling ( int reason ) : void
reason int /// The reason for stopping profiling to pass to the profiler callback. ///
return void
        public static void StopProfiling(int reason)
        {
            Native.ThrowIfError(Native.JsStopProfiling(reason));
        }