2024-07-22 20:45:01 +00:00
|
|
|
using BotSharp.Abstraction.Browsing.Models;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Abstraction.Browsing;
|
|
|
|
|
|
|
|
|
|
public interface IWebPageResponseHook
|
|
|
|
|
{
|
|
|
|
|
void OnDataFetched(MessageInfo message, string url, string postData, string responsData);
|
2024-07-28 12:51:49 +00:00
|
|
|
T? GetResponse<T>(MessageInfo message, string url, string? queryParameter = null);
|
2024-07-22 20:45:01 +00:00
|
|
|
}
|