From 20aba5cb7dc6f1d9932b2462e35ba6017348d733 Mon Sep 17 00:00:00 2001 From: Alex Maitland Date: Mon, 14 Feb 2022 13:56:34 +1000 Subject: [PATCH] IResourceRequestHandlerFactory - Clarify HasHandlers documentation Follow up to #3998 --- CefSharp/IResourceRequestHandlerFactory.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/CefSharp/IResourceRequestHandlerFactory.cs b/CefSharp/IResourceRequestHandlerFactory.cs index 80885c3b4f..581a45fdf8 100644 --- a/CefSharp/IResourceRequestHandlerFactory.cs +++ b/CefSharp/IResourceRequestHandlerFactory.cs @@ -14,14 +14,12 @@ namespace CefSharp public interface IResourceRequestHandlerFactory { /// - /// Are there any 's registered? + /// Return to have + /// called for every resource request. Otherwise return . /// /// - /// - /// Implementors must return from this method if the factory is to be used. - /// The method will not be executed if this property returns - /// , presumably as an optimisation. - /// + /// If you return then + /// will not be called. /// bool HasHandlers { get; }