C# 클래스 P2PStateServer.HTTPMessage

Represents a HTTP message
파일 보기 프로젝트 열기: tenor/p2pStateServer

보호된 프로퍼티들

프로퍼티 타입 설명
body byte[]
headers System.Collections.Specialized.NameValueCollection
host string
isError bool
requestStatusLine string
socket ServiceSocket
verb HTTPMethod

공개 메소드들

메소드 설명
HTTPMessage ( HTTPPartialData HTTPData ) : System

Initializes a new instance of the HTTPMessage class

메소드 상세

HTTPMessage() 공개 메소드

Initializes a new instance of the HTTPMessage class
public HTTPMessage ( HTTPPartialData HTTPData ) : System
HTTPData HTTPPartialData
리턴 System

프로퍼티 상세

body 보호되어 있는 프로퍼티

The body of the HTTP message
protected byte[] body
리턴 byte[]

headers 보호되어 있는 프로퍼티

The headers collection of the message
protected NameValueCollection,System.Collections.Specialized headers
리턴 System.Collections.Specialized.NameValueCollection

host 보호되어 있는 프로퍼티

The host field of the message
protected string host
리턴 string

isError 보호되어 있는 프로퍼티

Indicates whether the message has an error
protected bool isError
리턴 bool

requestStatusLine 보호되어 있는 프로퍼티

The first line in a HTTP message
protected string requestStatusLine
리턴 string

socket 보호되어 있는 프로퍼티

The socket that sent the message
protected ServiceSocket,P2PStateServer socket
리턴 ServiceSocket

verb 보호되어 있는 프로퍼티

The parsed verb line of the HTTP message
protected HTTPMethod,P2PStateServer verb
리턴 HTTPMethod