blob: 4b4c9cff8fdd3ce6beaae3d12e83507f9d9dde8c [file] [log] [blame] [edit]
// <copyright file="NetworkRequestSentEventArgs.cs" company="Selenium Committers">
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
// </copyright>
using System;
using System.Collections.Generic;
namespace OpenQA.Selenium;
/// <summary>
/// Provides data for the NetworkRequestSent event of an object implementing the <see cref="INetwork"/> interface.
/// </summary>
public class NetworkRequestSentEventArgs : EventArgs
{
private readonly Dictionary<string, string> requestHeaders = new Dictionary<string, string>();
/// <summary>
/// Initializes a new instance of the <see cref="NetworkRequestSentEventArgs"/> class.
/// </summary>
/// <param name="requestData">The <see cref="HttpRequestData"/> that describes the network request.</param>
public NetworkRequestSentEventArgs(HttpRequestData requestData)
{
this.RequestId = requestData.RequestId;
this.RequestUrl = requestData.Url;
this.RequestMethod = requestData.Method;
this.RequestPostData = requestData.PostData;
if (requestData.Headers != null)
{
foreach (KeyValuePair<string, string> header in requestData.Headers)
{
this.requestHeaders[header.Key] = header.Value;
}
}
}
/// <summary>
/// Gets the internal request ID of the network request.
/// </summary>
public string? RequestId { get; }
/// <summary>
/// Gets the URL of the network request.
/// </summary>
public string? RequestUrl { get; }
/// <summary>
/// Gets the HTTP method of the network request.
/// </summary>
public string? RequestMethod { get; }
/// <summary>
/// Gets the post data of the network request, if any.
/// </summary>
public string? RequestPostData { get; }
/// <summary>
/// Gets the collection of headers associated with the network request.
/// </summary>
public IReadOnlyDictionary<string, string> RequestHeaders => requestHeaders;
}