Interface INetwork
Defines an interface allowing the user to manage network communication by the browser.
public interface INetwork
Methods
AddAuthenticationHandler(NetworkAuthenticationHandler)
Adds a NetworkAuthenticationHandler to supply authentication credentials for network requests.
void AddAuthenticationHandler(NetworkAuthenticationHandler handler)
Parameters
handler
NetworkAuthenticationHandlerThe NetworkAuthenticationHandler to add.
AddRequestHandler(NetworkRequestHandler)
Adds a NetworkRequestHandler to examine incoming network requests, and optionally modify the request or provide a response.
void AddRequestHandler(NetworkRequestHandler handler)
Parameters
handler
NetworkRequestHandlerThe NetworkRequestHandler to add.
AddResponseHandler(NetworkResponseHandler)
Adds a NetworkResponseHandler to examine received network responses, and optionally modify the response.
void AddResponseHandler(NetworkResponseHandler handler)
Parameters
handler
NetworkResponseHandlerThe NetworkResponseHandler to add.
ClearAuthenticationHandlers()
Clears all added NetworkAuthenticationHandler instances.
void ClearAuthenticationHandlers()
ClearRequestHandlers()
Clears all added NetworkRequestHandler instances.
void ClearRequestHandlers()
ClearResponseHandlers()
Clears all added NetworkResponseHandler instances.
void ClearResponseHandlers()
StartMonitoring()
Asynchronously starts monitoring for network traffic.
Task StartMonitoring()
Returns
- Task
A task that represents the asynchronous operation.
StopMonitoring()
Asynchronously stops monitoring for network traffic.
Task StopMonitoring()
Returns
- Task
A task that represents the asynchronous operation.
Events
NetworkRequestSent
Occurs when a browser sends a network request.
event EventHandler<NetworkRequestSentEventArgs> NetworkRequestSent
Event Type
NetworkResponseReceived
Occurs when a browser receives a network response.
event EventHandler<NetworkResponseReceivedEventArgs> NetworkResponseReceived