TvInteractiveAppService.Session.OnCertificate 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.
Receives the requested Certificate
[Android.Runtime.Register("onCertificate", "(Ljava/lang/String;ILandroid/net/http/SslCertificate;)V", "GetOnCertificate_Ljava_lang_String_ILandroid_net_http_SslCertificate_Handler", ApiSince=36)]
public virtual void OnCertificate(string host, int port, Android.Net.Http.SslCertificate cert);
[<Android.Runtime.Register("onCertificate", "(Ljava/lang/String;ILandroid/net/http/SslCertificate;)V", "GetOnCertificate_Ljava_lang_String_ILandroid_net_http_SslCertificate_Handler", ApiSince=36)>]
abstract member OnCertificate : string * int * Android.Net.Http.SslCertificate -> unit
override this.OnCertificate : string * int * Android.Net.Http.SslCertificate -> unit
Parameters
- host
- String
the host name of the SSL authentication server.
- port
- Int32
the port of the SSL authentication server. E.g., 443
- cert
- SslCertificate
the SSL certificate received.
- Attributes
Remarks
Receives the requested Certificate
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.