C# Класс P2PStateServer.HTTPMessage

Represents a HTTP message
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
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