C# 클래스 Stumps.HttpPipelineHandler

A class implementing the T:Stumps.Http.IHttpHandler interface that executes multiple child T:Stumps.Http.IHttpHandler instances.
상속: IHttpHandler
파일 보기 프로젝트 열기: Cayan-LLC/stumps 1 사용 예제들

공개 메소드들

메소드 설명
Add ( IHttpHandler handler ) : void

Adds the specified child T:Stumps.Http.IHttpHandler to the end of the pipeline.

HttpPipelineHandler ( ) : System

Initializes a new instance of the T:Stumps.HttpPipelineHandler class.

ProcessRequest ( IStumpsHttpContext context ) : Task

Processes an incoming HTTP request.

this ( int index ) : IHttpHandler

Gets the T:Stumps.Http.IHttpHandler at the specified index.

메소드 상세

Add() 공개 메소드

Adds the specified child T:Stumps.Http.IHttpHandler to the end of the pipeline.
public Add ( IHttpHandler handler ) : void
handler IHttpHandler The child to add.
리턴 void

HttpPipelineHandler() 공개 메소드

Initializes a new instance of the T:Stumps.HttpPipelineHandler class.
public HttpPipelineHandler ( ) : System
리턴 System

ProcessRequest() 공개 메소드

Processes an incoming HTTP request.
is null.
public ProcessRequest ( IStumpsHttpContext context ) : Task
context IStumpsHttpContext The representing both the incoming request and the response.
리턴 Task

this() 공개 메소드

Gets the T:Stumps.Http.IHttpHandler at the specified index.
public this ( int index ) : IHttpHandler
index int The index.
리턴 IHttpHandler