C# 클래스 OpenQA.Selenium.Cookie

파일 보기 프로젝트 열기: epall/selenium 1 사용 예제들

공개 메소드들

메소드 설명
Cookie ( string name, string value, string path, System.DateTime expiry ) : System

Initializes a new instance of the Cookie class with a specific name, value, path and expiration date.

Cookie ( string name, string value, string domain, string path, System.DateTime expiry ) : System

Initializes a new instance of the Cookie class with a specific name, value, domain, path and expiration date.

메소드 상세

Cookie() 공개 메소드

Initializes a new instance of the Cookie class with a specific name, value, path and expiration date.
If the name is or an empty string, /// or if it contains a semi-colon. If the value is .
public Cookie ( string name, string value, string path, System.DateTime expiry ) : System
name string The name of the cookie.
value string The value of the cookie.
path string The path of the cookie.
expiry System.DateTime The expiration date of the cookie.
리턴 System

Cookie() 공개 메소드

Initializes a new instance of the Cookie class with a specific name, value, domain, path and expiration date.
If the name is or an empty string, /// or if it contains a semi-colon. If the value is .
public Cookie ( string name, string value, string domain, string path, System.DateTime expiry ) : System
name string The name of the cookie.
value string The value of the cookie.
domain string The domain of the cookie.
path string The path of the cookie.
expiry System.DateTime The expiration date of the cookie.
리턴 System