예제 #1
0
 public abstract bool BeginCpuProfile(string name, V8CpuProfileFlags flags);
예제 #2
0
 /// <summary>
 /// Begins collecting a new CPU profile with the specified options.
 /// </summary>
 /// <param name="name">A name for the profile.</param>
 /// <param name="flags">Options for creating the profile.</param>
 /// <returns><c>True</c> if the profile was created successfully, <c>false</c> otherwise.</returns>
 /// <remarks>
 /// A V8 runtime can collect multiple CPU profiles simultaneously.
 /// </remarks>
 public bool BeginCpuProfile(string name, V8CpuProfileFlags flags)
 {
     VerifyNotDisposed();
     return(proxy.BeginCpuProfile(name, flags));
 }