C# 클래스 P2PStateServer.HTTPMethod

Represents a parser for the first line of a HTTP request or response.
The HTTPMethod class parses the first line of a HTTP request or response and provides properties for the parsed components.
파일 보기 프로젝트 열기: tenor/p2pStateServer 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
RequestMethod RequestMethods
Resource string
ResponseCode int
Type HTTPMessageType

공개 메소드들

메소드 설명
HTTPMethod ( string Line ) : System

Initializes a new instance of the HTTPMethod class

메소드 상세

HTTPMethod() 공개 메소드

Initializes a new instance of the HTTPMethod class
public HTTPMethod ( string Line ) : System
Line string the line to parse
리턴 System

프로퍼티 상세

RequestMethod 공개적으로 프로퍼티

The message request method if the message is a request
public RequestMethods RequestMethod
리턴 RequestMethods

Resource 공개적으로 프로퍼티

The resource URI of the message
public string Resource
리턴 string

ResponseCode 공개적으로 프로퍼티

The message response code if the message is a response
public int ResponseCode
리턴 int

Type 공개적으로 프로퍼티

The determined Type of the message
public HTTPMessageType Type
리턴 HTTPMessageType