WebSettings.MixedContentAlwaysAllow Field

Definition

Caution

This constant will be removed in the future version. Use Android.Webkit.MixedContentHandling enum directly instead of this field.

In this mode, the WebView will allow a secure origin to load content from any other origin, even if that origin is insecure.

[Android.Runtime.Register("MIXED_CONTENT_ALWAYS_ALLOW")]
[System.Obsolete("This constant will be removed in the future version. Use Android.Webkit.MixedContentHandling enum directly instead of this field.", true)]
public const Android.Webkit.MixedContentHandling MixedContentAlwaysAllow = 0;
[<Android.Runtime.Register("MIXED_CONTENT_ALWAYS_ALLOW")>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Webkit.MixedContentHandling enum directly instead of this field.", true)>]
val mutable MixedContentAlwaysAllow : Android.Webkit.MixedContentHandling

Field Value

Value = 0
Attributes

Remarks

In this mode, the WebView will allow a secure origin to load content from any other origin, even if that origin is insecure. This is the least secure mode of operation for the WebView, and where possible apps should not set this mode.

Java documentation for android.webkit.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to