Language

SSLPermission Constructors

Definition

Overloads

Name Description
SSLPermission(String)

Initializes an Android SSL permission stub.

SSLPermission(String, String)

Initializes an Android SSL permission stub.

SSLPermission(String)

Initializes an Android SSL permission stub.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public SSLPermission(string? name);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Javax.Net.Ssl.SSLPermission : string -> Javax.Net.Ssl.SSLPermission

Parameters

name
String

Ignored.

Attributes

Remarks

On Android, this constructor ignores name and initializes the underlying permission with an empty name.

Android source for javax.net.ssl.SSLPermission.

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

SSLPermission(String, String)

Initializes an Android SSL permission stub.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "")]
public SSLPermission(string? name, string? actions);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "")>]
new Javax.Net.Ssl.SSLPermission : string * string -> Javax.Net.Ssl.SSLPermission

Parameters

name
String

Ignored.

actions
String

Ignored.

Attributes

Remarks

On Android, this constructor ignores name and actions and initializes the underlying permission with empty name and actions strings.

Android source for javax.net.ssl.SSLPermission.

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