Select Git revision
Pulsating.anim
DeleteCookieCommand.cs 572 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Network
{
/// <summary>
/// Deletes browser cookie with given name, domain and path.
/// </summary>
[Command(ProtocolName.Network.DeleteCookie)]
public class DeleteCookieCommand
{
/// <summary>
/// Gets or sets Name of the cookie to remove.
/// </summary>
public string CookieName { get; set; }
/// <summary>
/// Gets or sets URL to match cooke domain and path.
/// </summary>
public string Url { get; set; }
}
}