maui-linux/Xamarin.Forms.Core/IWebViewDelegate.cs

8 строки
142 B
C#

namespace Xamarin.Forms
{
public interface IWebViewDelegate
{
void LoadHtml(string html, string baseUrl);
void LoadUrl(string url);
}
}