Parameters
- host
Type: System.String
The host.
- path
Type: System.String
The path.
Return Value
Type: System.Collection.Generic.IEnumerable<String>
The cookie strings collection.
Type: System.String
The host.
Type: System.String
The path.
Type: System.String
The host.
Type: System.String
The path.
Type: System.Collection.Generic.IEnumerable<String>
The cookie strings collection.
// http request ZennoPoster.HTTP.Request(InterfacesLibrary.Enums.Http.HttpMethod.GET, "https://zennolab.com", cookieContainer: project.Profile.CookieContainer); // get cookie items var items = project.Profile.CookieContainer.GetPairs("zennolab.com", "/"); // output to log info of cookie item foreach(var item in items) { project.SendInfoToLog(item); }
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.