Class SharedStorageWorkletOperationExecutionFinishedEventArgs
A shared storage run or selectURL operation finished its execution. The following parameters are included in all events.
public sealed class SharedStorageWorkletOperationExecutionFinishedEventArgs : EventArgs
- Inheritance
-
SharedStorageWorkletOperationExecutionFinishedEventArgs
- Inherited Members
Properties
ExecutionTime
Time, in microseconds, from start of shared storage JS API call until end of operation execution in the worklet.
[JsonPropertyName("executionTime")]
public long ExecutionTime { get; set; }
Property Value
FinishedTime
Time that the operation finished.
[JsonPropertyName("finishedTime")]
public double FinishedTime { get; set; }
Property Value
MainFrameId
DevTools Frame Token for the primary frame tree's root.
[JsonPropertyName("mainFrameId")]
public string MainFrameId { get; set; }
Property Value
Method
Enum value indicating the Shared Storage API method invoked.
[JsonPropertyName("method")]
public SharedStorageAccessMethod Method { get; set; }
Property Value
OperationId
ID of the operation call.
[JsonPropertyName("operationId")]
public string OperationId { get; set; }
Property Value
OwnerOrigin
Serialization of the origin owning the Shared Storage data.
[JsonPropertyName("ownerOrigin")]
public string OwnerOrigin { get; set; }
Property Value
WorkletTargetId
Hex representation of the DevTools token used as the TargetID for the associated shared storage worklet.
[JsonPropertyName("workletTargetId")]
public string WorkletTargetId { get; set; }