C# Класс WebClientDemo.HttpServer

Базовый класс для создания веб-сервера
За основу был взят класс из блога Рика Страла (Rick Strahl) http://weblog.west-wind.com/posts/2005/Dec/04/Add-a-Web-Server-to-your-NET-20-app-with-a-few-lines-of-code
Наследование: IDisposable, INotifyPropertyChanged
Показать файл Открыть проект Примеры использования класса

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

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

Starts the Web Service

Stop ( ) : void

Shut down the Web Service

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

Метод Описание
IDisposable ( ) : void
OnPropertyChanged ( string propertyName ) : void
WebRequestCallback ( IAsyncResult asyncResult ) : void

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

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

Starts the Web Service
public Start ( string uriPrefix ) : void
uriPrefix string /// A Uri that acts as the base that the server is listening on. /// Format should be: http://127.0.0.1:8080/ or http://127.0.0.1:8080/somevirtual/ /// Note: the trailing backslash is required! For more info see the /// HttpListener.Prefixes property on MSDN. ///
Результат void

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

Shut down the Web Service
public Stop ( ) : void
Результат void