You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="browser">represent the source browser of the request</param>
/// <param name="frame">represent the source frame of the request</param>
/// <param name="request">represents the request contents and cannot be modified in this callback</param>
/// <param name="isNavigation">will be true if the resource request is a navigation</param>
/// <param name="isDownload">will be true if the resource request is a download</param>
/// <param name="requestInitiator">is the origin (scheme + domain) of the page that initiated the request</param>
/// <param name="disableDefaultHandling">to true to disable default handling of the request, in which case it will need to be handled via <see cref="IResourceRequestHandler.GetResourceHandler"/> or it will be canceled</param>
/// <returns>To allow the resource load to proceed with default handling return null. To specify a handler for the resource return a <see cref="IResourceRequestHandler"/> object. If this callback returns null the same method will be called on the associated <see cref="IRequestContextHandler"/>, if any</returns>