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
파일 보기 프로젝트 열기: bazile/Training 1 사용 예제들

공개 메소드들

메소드 설명
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