WebSettings.PluginsPath Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
deprecated
Gets the directory that contains the plugin libraries. -or- Sets a custom path to plugins used by the WebView.
[System.Obsolete("deprecated")]
public virtual string? PluginsPath { [Android.Runtime.Register("getPluginsPath", "()Ljava/lang/String;", "GetGetPluginsPathHandler")] get; [Android.Runtime.Register("setPluginsPath", "(Ljava/lang/String;)V", "GetSetPluginsPath_Ljava_lang_String_Handler")] set; }
[<System.Obsolete("deprecated")>]
[<get: Android.Runtime.Register("getPluginsPath", "()Ljava/lang/String;", "GetGetPluginsPathHandler")>]
[<set: Android.Runtime.Register("setPluginsPath", "(Ljava/lang/String;)V", "GetSetPluginsPath_Ljava_lang_String_Handler")>]
member this.PluginsPath : string with get, set
Property Value
an empty string
- Attributes
Remarks
Property getter documentation:
Gets the directory that contains the plugin libraries. This method is obsolete since each plugin is now loaded from its own package.
This member is deprecated. This method is no longer used as plugins are loaded from their own APK via the system's package manager.
Java documentation for android.webkit.WebSettings.getPluginsPath()
.
Property setter documentation:
Sets a custom path to plugins used by the WebView. This method is obsolete since each plugin is now loaded from its own package.
This member is deprecated. This method is no longer used as plugins are loaded from their own APK via the system's package manager.
Java documentation for android.webkit.WebSettings.setPluginsPath(java.lang.String)
.
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.