Skip to content
Snippets Groups Projects
GetCookiesCommandResponse.cs 539 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.Page
    {
    	/// <summary>
    	/// Returns all browser cookies. Depending on the backend support, will return detailed cookie information in the <code>cookies</code> field.
    	/// </summary>
    	[CommandResponse(ProtocolName.Page.GetCookies)]
    	public class GetCookiesCommandResponse
    	{
    		/// <summary>
    		/// Gets or sets Array of cookie objects.
    		/// </summary>
    		public Network.Cookie[] Cookies { get; set; }
    	}
    }