mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
13 lines
278 B
C#
13 lines
278 B
C#
namespace Robust.Client.WebView
|
|
{
|
|
public interface IBeforeBrowseContext
|
|
{
|
|
string Url { get; }
|
|
string Method { get; }
|
|
bool IsRedirect { get; }
|
|
bool UserGesture { get; }
|
|
bool IsCancelled { get; }
|
|
void DoCancel();
|
|
}
|
|
}
|