using System; using System.Collections.Generic; using System.Text; namespace ElectronNET.API.Entities { /// /// /// public class CookieFilter { /// /// (optional) - Retrieves cookies which are associated with url.Empty implies retrieving cookies of all URLs. /// public string Url { get; set; } /// /// (optional) - Filters cookies by name. /// public string Name { get; set; } /// /// (optional) - Retrieves cookies whose domains match or are subdomains of domains. /// public string Domain { get; set; } /// /// (optional) - Retrieves cookies whose path matches path. /// public string Path { get; set; } /// /// (optional) - Filters cookies by their Secure property. /// public bool Secure { get; set; } /// /// (optional) - Filters out session or persistent cookies. /// public bool Session { get; set; } } }