Skip to content
Snippets Groups Projects
Select Git revision
  • 4e72ac665d3c7a94da88cdcfc185aa81ff894536
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

CheckServer.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; }
    	}
    }