Class PerformanceMeasure
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
PerformanceMeasure is an abstract interface for PerformanceEntry objects with an EntryType of "measure". Entries of this type are created by calling Measure(string, Union158, string) to add a named Number (the measure) between two marks to the browser's performance timeline.
[Value("PerformanceMeasure")]
public class PerformanceMeasure : PerformanceEntry
- Inheritance
-
PerformanceMeasure
- Inherited Members
Remarks
Constructors
PerformanceMeasure()
public PerformanceMeasure()
Properties
Detail
The read-only detail property returns arbitrary metadata that was included in the mark upon construction (when using Measure(string, Union158, string).
[Value("detail")]
public dynamic Detail { get; }
Property Value
- dynamic
Returns the value it was set to (from
markOptionsof Measure(string, Union158, string)).