mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 13:44:38 +00:00
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CookieFilter
|
|
{
|
|
/// <summary>
|
|
/// (optional) - Retrieves cookies which are associated with url.Empty implies retrieving cookies of all URLs.
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// (optional) - Filters cookies by name.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// (optional) - Retrieves cookies whose domains match or are subdomains of domains.
|
|
/// </summary>
|
|
public string Domain { get; set; }
|
|
|
|
/// <summary>
|
|
/// (optional) - Retrieves cookies whose path matches path.
|
|
/// </summary>
|
|
public string Path { get; set; }
|
|
|
|
/// <summary>
|
|
/// (optional) - Filters cookies by their Secure property.
|
|
/// </summary>
|
|
public bool Secure { get; set; }
|
|
|
|
/// <summary>
|
|
/// (optional) - Filters out session or persistent cookies.
|
|
/// </summary>
|
|
public bool Session { get; set; }
|
|
|
|
}
|
|
}
|