TvInteractiveAppView.TvInteractiveAppCallback.OnRequestSigning Method
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.
This is called when
TvInteractiveAppService.Session#requestSigning(String, String, String, byte[])
is
called.
[Android.Runtime.Register("onRequestSigning", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[B)V", "GetOnRequestSigning_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_arrayBHandler", ApiSince=33)]
public virtual void OnRequestSigning (string iAppServiceId, string signingId, string algorithm, string alias, byte[] data);
[<Android.Runtime.Register("onRequestSigning", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[B)V", "GetOnRequestSigning_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_arrayBHandler", ApiSince=33)>]
abstract member OnRequestSigning : string * string * string * string * byte[] -> unit
override this.OnRequestSigning : string * string * string * string * byte[] -> unit
Parameters
- iAppServiceId
- String
The ID of the TV interactive app service bound to this view.
- signingId
- String
the ID to identify the request.
- algorithm
- String
the standard name of the signature algorithm requested, such as MD5withRSA, SHA256withDSA, etc.
- alias
- String
the alias of the corresponding java.security.KeyStore
.
- data
- Byte[]
the original bytes to be signed.
- Attributes
Remarks
This is called when TvInteractiveAppService.Session#requestSigning(String, String, String, byte[])
is called.
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.