Skip to content
Snippets Groups Projects
Select Git revision
  • 510b4f23a9958a16cfd8c3b9ee8a6272d25ca5c3
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

Pulsating.anim

Blame
  • 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; }
    	}
    }