C# Класс Webserver.Request

Contains information about a request
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
_getArguments System.Collections.Hashtable
_headers System.Collections.Hashtable
_method string
_url string

Открытые методы

Метод Описание
Dispose ( ) : void
Request ( char header, Socket client ) : System

Creates request

Приватные методы

Метод Описание
ProcessGETParameters ( string parameters ) : void

Generated Key-Value-Hashtable for GET-Parameters

ProcessHeader ( char data ) : void

Fills the Request with the header values

Описание методов

Dispose() публичный Метод

public Dispose ( ) : void
Результат void

Request() публичный Метод

Creates request
public Request ( char header, Socket client ) : System
header char
client Socket Socket that sent the request
Результат System

Описание свойств

_getArguments защищенное свойство

protected Hashtable,System.Collections _getArguments
Результат System.Collections.Hashtable

_headers защищенное свойство

protected Hashtable,System.Collections _headers
Результат System.Collections.Hashtable

_method защищенное свойство

protected string _method
Результат string

_url защищенное свойство

protected string _url
Результат string