Click or drag to resize
IContext Interface
The interface for objects that describe an incoming request and the response that will be made for it.

Namespace: VirtualRadar.Interface.WebServer
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IContext

The IContext type exposes the following members.

Properties
  NameDescription
Public propertyBasicPassword
Gets the Basic authentication password as supplied by the browser.
Public propertyBasicUserName
Gets the Basic authentication username as supplied by the browser.
Public propertyRequest
Gets the request from the user.
Public propertyResponse
Gets the response to send back to the user.
Top
Remarks
The intention is that the implementation of IWebServerProvider creates these, they are wrappers around the underlying HTTP server mechanism's objects.
See Also