NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IHttpHandlerFactory.GetHandler

Returns an instance of an IHttpHandler class.

[Visual Basic]
Function GetHandler( _
   ByVal context As HttpContext, _
   ByVal requestType As String, _
   ByVal url As String, _
   ByVal pathTranslated As String _
) As IHttpHandler
[C#]
IHttpHandler GetHandler(
   HttpContext context,
   string requestType,
   string url,
   string pathTranslated
);
[C++]
IHttpHandler* GetHandler(
   HttpContext* context,
   String* requestType,
   String* url,
   String* pathTranslated
) = 0;
[JScript]
function GetHandler(
   context : HttpContext,
   requestType : String,
   url : String,
   pathTranslated : String
) : IHttpHandler;

Parameters

context
[To be supplied.]
requestType
[To be supplied.]
url
[To be supplied.]
pathTranslated
[To be supplied.]

See Also

IHttpHandlerFactory Interface | IHttpHandlerFactory Members | System.Web Namespace