diff options
Diffstat (limited to 'Xamarin.Forms.Core/WebNavigationResult.cs')
-rw-r--r-- | Xamarin.Forms.Core/WebNavigationResult.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/WebNavigationResult.cs b/Xamarin.Forms.Core/WebNavigationResult.cs new file mode 100644 index 00000000..eb0f6e73 --- /dev/null +++ b/Xamarin.Forms.Core/WebNavigationResult.cs @@ -0,0 +1,10 @@ +namespace Xamarin.Forms +{ + public enum WebNavigationResult + { + Success = 1, + Cancel = 2, + Timeout = 3, + Failure = 4 + } +}
\ No newline at end of file |