7 references to MixedContentHandling
Microsoft.Maui.Controls (7)
PlatformConfiguration\AndroidSpecific\WebView.cs (7)
22
public static readonly BindableProperty MixedContentModeProperty = BindableProperty.Create("MixedContentMode", typeof(
MixedContentHandling
), typeof(WebView),
MixedContentHandling
.NeverAllow);
25
public static
MixedContentHandling
GetMixedContentMode(BindableObject element)
27
return (
MixedContentHandling
)element.GetValue(MixedContentModeProperty);
31
public static void SetMixedContentMode(BindableObject element,
MixedContentHandling
value)
37
public static
MixedContentHandling
MixedContentMode(this IPlatformElementConfiguration<Android, FormsElement> config)
43
public static IPlatformElementConfiguration<Android, FormsElement> SetMixedContentMode(this IPlatformElementConfiguration<Android, FormsElement> config,
MixedContentHandling
value)