IWebPageResponseHook.GetResponse

This commit is contained in:
Haiping Chen 2024-07-28 07:51:49 -05:00
parent ee6a1ddb80
commit 2b1b170baa

View file

@ -5,5 +5,5 @@ namespace BotSharp.Abstraction.Browsing;
public interface IWebPageResponseHook
{
void OnDataFetched(MessageInfo message, string url, string postData, string responsData);
T? GetResponse<T>(MessageInfo message, string url);
T? GetResponse<T>(MessageInfo message, string url, string? queryParameter = null);
}