Files
2026-02-21 16:45:37 +08:00

22 lines
353 B
C#

namespace rail
{
public interface IRailBrowser : IRailComponent
{
bool GetCurrentUrl(out string url);
bool ReloadWithUrl(string new_url);
bool ReloadWithUrl();
void StopLoad();
bool AddJavascriptEventListener(string event_name);
bool RemoveAllJavascriptEventListener();
void AllowNavigateNewPage(bool allow);
void Close();
}
}