OnBeforeSendHeadersDetails constructor

OnBeforeSendHeadersDetails({
  1. required String requestId,
  2. required String url,
  3. required String method,
  4. required int frameId,
  5. required int parentFrameId,
  6. required String documentId,
  7. String? parentDocumentId,
  8. required DocumentLifecycle documentLifecycle,
  9. required FrameType frameType,
  10. required int tabId,
  11. String? initiator,
  12. required ResourceType type,
  13. required double timeStamp,
  14. List<HttpHeadersItems>? requestHeaders,
})

Implementation

OnBeforeSendHeadersDetails({
  /// The ID of the request. Request IDs are unique within a browser session.
  /// As a result, they could be used to relate different events of the same
  /// request.
  required String requestId,
  required String url,

  /// Standard HTTP method.
  required String method,

  /// The value 0 indicates that the request happens in the main frame; a
  /// positive value indicates the ID of a subframe in which the request
  /// happens. If the document of a (sub-)frame is loaded (`type` is
  /// `main_frame` or `sub_frame`), `frameId` indicates the ID of this frame,
  /// not the ID of the outer frame. Frame IDs are unique within a tab.
  required int frameId,

  /// ID of frame that wraps the frame which sent the request. Set to -1 if no
  /// parent frame exists.
  required int parentFrameId,

  /// The UUID of the document making the request.
  required String documentId,

  /// The UUID of the parent document owning this frame. This is not set if
  /// there is no parent.
  String? parentDocumentId,

  /// The lifecycle the document is in.
  required DocumentLifecycle documentLifecycle,

  /// The type of frame the request occurred in.
  required FrameType frameType,

  /// The ID of the tab in which the request takes place. Set to -1 if the
  /// request isn't related to a tab.
  required int tabId,

  /// The origin where the request was initiated. This does not change through
  /// redirects. If this is an opaque origin, the string 'null' will be used.
  String? initiator,

  /// How the requested resource will be used.
  required ResourceType type,

  /// The time when this signal is triggered, in milliseconds since the epoch.
  required double timeStamp,

  /// The HTTP request headers that are going to be sent out with this
  /// request.
  List<HttpHeadersItems>? requestHeaders,
}) : _wrapped = $js.OnBeforeSendHeadersDetails(
        requestId: requestId,
        url: url,
        method: method,
        frameId: frameId,
        parentFrameId: parentFrameId,
        documentId: documentId,
        parentDocumentId: parentDocumentId,
        documentLifecycle: documentLifecycle.toJS,
        frameType: frameType.toJS,
        tabId: tabId,
        initiator: initiator,
        type: type.toJS,
        timeStamp: timeStamp,
        requestHeaders: requestHeaders?.toJSArray((e) => e.toJS),
      );