FetchClientEnableAsync Method  | 
Version 94.4.20 
            Enables issuing of requestPaused events. A request will be paused until client
            calls one of failRequest, fulfillRequest or continueRequest/continueWithAuth.
            
 
    Namespace: 
   CefSharp.DevTools.Fetch
    Assembly:
   CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntaxpublic Task<DevToolsMethodResponse> EnableAsync(
	IList<RequestPattern> patterns = null,
	bool? handleAuthRequests = null
)
public:
Task<DevToolsMethodResponse^>^ EnableAsync(
	IList<RequestPattern^>^ patterns = nullptr, 
	Nullable<bool> handleAuthRequests = nullptr
)
Parameters
- patterns (Optional)
 - Type: System.Collections.GenericIListRequestPattern
If specified, only requests matching any of these patterns will producefetchRequested event and will be paused until clients response. If not set,all requests will be affected. - handleAuthRequests (Optional)
 - Type: SystemNullableBoolean
If true, authRequired events will be issued and requests will be pausedexpecting a call to continueWithAuth. 
Return Value
Type: 
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also