C# 클래스 ModServer.HttpRequest

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

공개 프로퍼티들

프로퍼티 타입 설명
COOKIE_PROCESSING_REGEX System.Text.RegularExpressions.Regex
POST_PROCESSING_REGEX System.Text.RegularExpressions.Regex
cookies String>.Dictionary
getValues String>.Dictionary
headers String>.Dictionary
postValues String>.Dictionary

공개 메소드들

메소드 설명
HttpRequest ( String path ) : System
HttpRequest ( String method, String path, String UserAgent = "Mobicontroller/1.0 (mobicontroller.com)", String ConnectionType = "keep-alive", String Accept = "text/html", String ContentType = "text/html" ) : System
ToString ( ) : string

addHeader ( String field, String data ) : void

Will add a header to the collection of headers. !! Will overwrite headers with the same field

addPost ( String field, String data ) : void
getGuessFileType ( ) : string
getPostBodyData ( bool calculateContentLength ) : string
guessContentLength ( ) : void
requestMetaInfo ( String field ) : String

비공개 메소드들

메소드 설명
parseCookie ( String cookie ) : void

메소드 상세

HttpRequest() 공개 메소드

public HttpRequest ( String path ) : System
path String
리턴 System

HttpRequest() 공개 메소드

public HttpRequest ( String method, String path, String UserAgent = "Mobicontroller/1.0 (mobicontroller.com)", String ConnectionType = "keep-alive", String Accept = "text/html", String ContentType = "text/html" ) : System
method String
path String
UserAgent String
ConnectionType String
Accept String
ContentType String
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

addHeader() 공개 메소드

Will add a header to the collection of headers. !! Will overwrite headers with the same field
public addHeader ( String field, String data ) : void
field String
data String
리턴 void

addPost() 공개 메소드

public addPost ( String field, String data ) : void
field String
data String
리턴 void

getGuessFileType() 공개 메소드

public getGuessFileType ( ) : string
리턴 string

getPostBodyData() 공개 메소드

public getPostBodyData ( bool calculateContentLength ) : string
calculateContentLength bool
리턴 string

guessContentLength() 공개 메소드

public guessContentLength ( ) : void
리턴 void

requestMetaInfo() 공개 메소드

public requestMetaInfo ( String field ) : String
field String
리턴 String

프로퍼티 상세

COOKIE_PROCESSING_REGEX 공개적으로 정적으로 프로퍼티

public static Regex,System.Text.RegularExpressions COOKIE_PROCESSING_REGEX
리턴 System.Text.RegularExpressions.Regex

POST_PROCESSING_REGEX 공개적으로 정적으로 프로퍼티

public static Regex,System.Text.RegularExpressions POST_PROCESSING_REGEX
리턴 System.Text.RegularExpressions.Regex

cookies 공개적으로 프로퍼티

public Dictionary cookies
리턴 String>.Dictionary

getValues 공개적으로 프로퍼티

public Dictionary getValues
리턴 String>.Dictionary

headers 공개적으로 프로퍼티

public Dictionary headers
리턴 String>.Dictionary

postValues 공개적으로 프로퍼티

public Dictionary postValues
리턴 String>.Dictionary