FontRequest Constructors
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.
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
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.
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
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.