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.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

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