10 lines
279 B
C#
10 lines
279 B
C#
using BotSharp.Abstraction.Browsing.Models;
|
|
|
|
namespace BotSharp.Abstraction.Browsing;
|
|
|
|
public interface IWebPageResponseHook
|
|
{
|
|
void OnDataFetched(MessageInfo message, string url, string postData, string responsData);
|
|
T? GetResponse<T>(MessageInfo message, string url);
|
|
}
|