Abstract
Static
Readonly
[provide]Magic string by which this class is provided.
Abstract
handleThe handle method of linked classes extending the Proxy base
class is called whenever an Http.Request is fired. The extending
class can either pass the request
to the next handler
, with or without
modifying it, or an interceptor can chose to completely handle a request
by itself through returning an Observable Http.Response.
The Http.Request to be handled.
The next Http.Handler to handle the request
.
An Observable of the handled Http.Response.
Generated using TypeDoc
Abstract Proxy base class to implement Http.Request interceptors, on the client side. By extending this abstract base class and providing the extending class to the Linker, e.g., by Targeting it, the class's handle method will be called with the Http.Request details (which could have been modified by a previous Proxy) and the next Http.Handler, whenever a request is fired through the Http class.
Decorator
Provide
Example
Simple Proxy intercepting
file:
requests:See
Http