Namespace: OpenEdge.Net.HTTP
Class 
Cookie
Parent classes:
Progress.Lang.Object

Inherits: Progress.Lang.Object

Copyright (c) 2014, 2015 by Progress Software Corporation. All rights reserved.
File:Cookie
Purpose:HTTP Cookie class
Author(s):pjudge
Created:Thu May 22 13:17:03 EDT 2014
Notes:* W3C spec at https://tools.ietf.org/html/rfc6265




Method Summary
Options Name Purpose
# LOGICAL Equals (Object)
# OpenEdge.Net.HTTP.Cookie Parse (character) /** Creates a Cookie object from the string representation of a cookie. @param character The cookie in string form, typically from a HTTP response header. @return Cookie The Cookie object corresponding to that string. */
# CHARACTER ToString ()

Constructor Summary
Options Name Purpose
# Cookie (character, character, character, character)
# Cookie (character, character, character, character, integer, datetime-tz, logical, logical, decimal)

Property Summary
Options Name Purpose
# CHARACTER Domain
# DATETIME-TZ ExpiresAt
# LOGICAL HttpOnly
# INTEGER MaxAge
# CHARACTER Name
# CHARACTER Path
# LOGICAL Secure
# CHARACTER Value
# DECIMAL Version


Method Detail
Top

PROTECTED LOGICAL Equals (Object)

Parameters:
p0 Progress.Lang.Object
Returns LOGICAL
Top

PROTECTED OpenEdge.Net.HTTP.Cookie Parse (character)

Purpose: Creates a Cookie object from the string representation of a cookie.
response header.
Parameters:
pcCookie CHARACTER
Returns OpenEdge.Net.HTTP.Cookie
Cookie The Cookie object corresponding to that string.
Top

PROTECTED CHARACTER ToString ()

Returns CHARACTER


Constructor Detail
Top

PROTECTED Cookie (character, character, character, character)

Parameters:
pcCookieName CHARACTER
pcDomain CHARACTER
pcPath CHARACTER
pcCookieValue CHARACTER
Top

PROTECTED Cookie (character, character, character, character, integer, datetime-tz, logical, logical, decimal)

Parameters:
pcCookieName CHARACTER
pcDomain CHARACTER
pcPath CHARACTER
pcCookieValue CHARACTER
piMaxAge INTEGER
ptExpiresAt DATETIME-TZ
plSecureOnly LOGICAL
plHttpOnly LOGICAL
pdVersion DECIMAL


Property Detail
Top

PROTECTED CHARACTER Domain

Returns CHARACTER
Top

PROTECTED DATETIME-TZ ExpiresAt

Returns DATETIME-TZ
Top

PROTECTED LOGICAL HttpOnly

Returns LOGICAL
Top

PROTECTED INTEGER MaxAge

Returns INTEGER
Top

PROTECTED CHARACTER Name

Returns CHARACTER
Top

PROTECTED CHARACTER Path

Returns CHARACTER
Top

PROTECTED LOGICAL Secure

Returns LOGICAL
Top

PROTECTED CHARACTER Value

Returns CHARACTER
Top

PROTECTED DECIMAL Version

Returns DECIMAL


10.27.2015 12:36:35