Provider.Service Constructors

Definition

Overloads

Provider.Service(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

Provider.Service(Provider, String, String, String, IList<String>, IDictionary<String,String>)

Construct a new service.

Provider.Service(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected Service (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Provider.Service : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Provider.Service

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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

Provider.Service(Provider, String, String, String, IList<String>, IDictionary<String,String>)

Construct a new service.

[Android.Runtime.Register(".ctor", "(Ljava/security/Provider;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V", "")]
public Service (Java.Security.Provider provider, string type, string algorithm, string className, System.Collections.Generic.IList<string>? aliases, System.Collections.Generic.IDictionary<string,string>? attributes);
[<Android.Runtime.Register(".ctor", "(Ljava/security/Provider;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V", "")>]
new Java.Security.Provider.Service : Java.Security.Provider * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IDictionary<string, string> -> Java.Security.Provider.Service

Parameters

provider
Provider

the provider that offers this service

type
String

the type of this service

algorithm
String

the algorithm name

className
String

the name of the class implementing this service

aliases
IList<String>

List of aliases or null if algorithm has no aliases

attributes
IDictionary<String,String>

Map of attributes or null if this implementation has no attributes

Attributes

Remarks

Construct a new service.

Java documentation for java.security.Provider.Service.Provider$Service(java.security.Provider, java.lang.String, java.lang.String, java.lang.String, java.util.List<java.lang.String>, java.util.Map<java.lang.String, 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.

Applies to