From 2b1b170baade5ef175c14d3086d0c1bd309f60c5 Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Sun, 28 Jul 2024 07:51:49 -0500 Subject: [PATCH] IWebPageResponseHook.GetResponse --- .../BotSharp.Abstraction/Browsing/IWebPageResponseHook.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infrastructure/BotSharp.Abstraction/Browsing/IWebPageResponseHook.cs b/src/Infrastructure/BotSharp.Abstraction/Browsing/IWebPageResponseHook.cs index e8ec7494..a7e33b22 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Browsing/IWebPageResponseHook.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Browsing/IWebPageResponseHook.cs @@ -5,5 +5,5 @@ namespace BotSharp.Abstraction.Browsing; public interface IWebPageResponseHook { void OnDataFetched(MessageInfo message, string url, string postData, string responsData); - T? GetResponse(MessageInfo message, string url); + T? GetResponse(MessageInfo message, string url, string? queryParameter = null); }