C# Class dk.nita.saml20.protocol.Saml20MetadataHandler

The handler that exposes a metadata endpoint to the other parties of the federation. The handler accepts the following GET parameters : - encoding : Delivers the Metadata document in the specified encoding. Example: encoding=iso-8859-1 . If the parameter is omitted, the encoding utf-8 is used. - sign : A boolean parameter specifying whether to sign the metadata document. Example: sign=false. If the parameter is omitted, the document is signed.
Inheritance: dk.nita.saml20.protocol.AbstractEndpointHandler
显示文件 Open project: symplified/Symplified.Auth

Public Methods

Method Description
ProcessRequest ( HttpContext context ) : void

Enables processing of HTTP Web requests by a custom HttpHandler that implements the T:System.Web.IHttpHandler interface.

Private Methods

Method Description
CreateMetadataDocument ( HttpContext context, bool sign ) : void

Method Details

ProcessRequest() public method

Enables processing of HTTP Web requests by a custom HttpHandler that implements the T:System.Web.IHttpHandler interface.
public ProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext An object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
return void