C# Класс Subtext.BlogML.BlogMLHttpHandler

Наследование: Subtext.Extensibility.Web.BaseHttpHandler
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
HandleRequest ( HttpContext context ) : void

Http handler used to export BlogML.

This method should result in a call to one (or more) of the following methods:

context.Response.BinaryWrite();

context.Response.Write();

context.Response.WriteFile();

someStream.Save(context.Response.OutputStream);

etc...

If you want a download box to show up with a pre-populated filename, add this call here (supplying a real filename).

Response.AddHeader("Content-Disposition" , "attachment; filename=\"" + Filename + "\"");

ValidateParameters ( HttpContext context ) : bool

Validates the parameters. Inheriting classes must implement this and return true if the parameters are valid, otherwise false.

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

Метод Описание
WriteBlogML ( Stream outStream ) : void

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

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

Http handler used to export BlogML.

This method should result in a call to one (or more) of the following methods:

context.Response.BinaryWrite();

context.Response.Write();

context.Response.WriteFile();

someStream.Save(context.Response.OutputStream);

etc...

If you want a download box to show up with a pre-populated filename, add this call here (supplying a real filename).

Response.AddHeader("Content-Disposition" , "attachment; filename=\"" + Filename + "\"");

public HandleRequest ( HttpContext context ) : void
context System.Web.HttpContext Context.
Результат void

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

Validates the parameters. Inheriting classes must implement this and return true if the parameters are valid, otherwise false.
public ValidateParameters ( HttpContext context ) : bool
context System.Web.HttpContext Context.
Результат bool