Skip to content
Snippets Groups Projects
Select Git revision
  • 379098f0e172c4aa9a373ac6e249b7e63a6aac52
  • master default
  • dependabot/nuget/source/Sample/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/MasterDevs.ChromeDevTools.Tests/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ProtocolGenerator/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/System.Net.Http-4.3.4
  • revert-29-revert-24-protocol_62
  • revert-24-protocol_62
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0.40915
13 results

DisableCommandResponse.cs

Blame
  • CPUProfileNode.cs 1.67 KiB
    using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.Profiler
    {
    	/// <summary>
    	/// CPU Profile node. Holds callsite information, execution statistics and child nodes.
    	/// </summary>
    	public class CPUProfileNode
    	{
    		/// <summary>
    		/// Gets or sets Function name.
    		/// </summary>
    		public string FunctionName { get; set; }
    		/// <summary>
    		/// Gets or sets Script identifier.
    		/// </summary>
    		public string ScriptId { get; set; }
    		/// <summary>
    		/// Gets or sets URL.
    		/// </summary>
    		public string Url { get; set; }
    		/// <summary>
    		/// Gets or sets 1-based line number of the function start position.
    		/// </summary>
    		public long LineNumber { get; set; }
    		/// <summary>
    		/// Gets or sets 1-based column number of the function start position.
    		/// </summary>
    		public long ColumnNumber { get; set; }
    		/// <summary>
    		/// Gets or sets Number of samples where this node was on top of the call stack.
    		/// </summary>
    		public long HitCount { get; set; }
    		/// <summary>
    		/// Gets or sets Call UID.
    		/// </summary>
    		public double CallUID { get; set; }
    		/// <summary>
    		/// Gets or sets Child nodes.
    		/// </summary>
    		public CPUProfileNode[] Children { get; set; }
    		/// <summary>
    		/// Gets or sets The reason of being not optimized. The function may be deoptimized or marked as don't optimize.
    		/// </summary>
    		public string DeoptReason { get; set; }
    		/// <summary>
    		/// Gets or sets Unique id of the node.
    		/// </summary>
    		public long Id { get; set; }
    		/// <summary>
    		/// Gets or sets An array of source position ticks.
    		/// </summary>
    		public PositionTickInfo[] PositionTicks { get; set; }
    	}
    }