зеркало из https://github.com/DeGsoft/maui-linux.git
12 строки
347 B
C#
12 строки
347 B
C#
namespace Xamarin.Forms
|
|
{
|
|
public class WebNavigatedEventArgs : WebNavigationEventArgs
|
|
{
|
|
public WebNavigatedEventArgs(WebNavigationEvent navigationEvent, WebViewSource source, string url, WebNavigationResult result) : base(navigationEvent, source, url)
|
|
{
|
|
Result = result;
|
|
}
|
|
|
|
public WebNavigationResult Result { get; private set; }
|
|
}
|
|
} |