Share via


FontRequest Constructors

Definition

Overloads

FontRequest(String, String, String)
FontRequest(String, String, String, IList<IList<Byte[]>>)

FontRequest(String, String, String)

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "", ApiSince=26)]
public FontRequest (string providerAuthority, string providerPackage, string query);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "", ApiSince=26)>]
new Android.Provider.FontRequest : string * string * string -> Android.Provider.FontRequest

Parameters

providerAuthority
String

The authority of the Font Provider to be used for the request. This should be a system installed app.

providerPackage
String

The package for the Font Provider to be used for the request. This is used to verify the identity of the provider.

query
String

The query to be sent over to the provider. Refer to your font provider's documentation on the format of this string.

Attributes

Remarks

Java documentation for android.provider.FontRequest.FontRequest(java.lang.String, 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

FontRequest(String, String, String, IList<IList<Byte[]>>)

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;)V", "", ApiSince=26)]
public FontRequest (string providerAuthority, string providerPackage, string query, System.Collections.Generic.IList<System.Collections.Generic.IList<byte[]>> certificates);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;)V", "", ApiSince=26)>]
new Android.Provider.FontRequest : string * string * string * System.Collections.Generic.IList<System.Collections.Generic.IList<byte[]>> -> Android.Provider.FontRequest

Parameters

providerAuthority
String

The authority of the Font Provider to be used for the request.

providerPackage
String

The package for the Font Provider to be used for the request. This is used to verify the identity of the provider.

query
String

The query to be sent over to the provider. Refer to your font provider's documentation on the format of this string.

certificates
IList<IList<Byte[]>>

The list of sets of hashes for the certificates the provider should be signed with. This is used to verify the identity of the provider. Each set in the list represents one collection of signature hashes. Refer to your font provider's documentation for these values.

Attributes

Remarks

Java documentation for android.provider.FontRequest.FontRequest(java.lang.String, java.lang.String, java.lang.String, java.util.List<java.util.List<byte[]>>).

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