SSLContext.ServerSessionContext Property

Definition

Returns the server session context, which represents the set of SSL sessions available for use during the handshake phase of server-side SSL sockets.

public Javax.Net.Ssl.ISSLSessionContext? ServerSessionContext { [Android.Runtime.Register("getServerSessionContext", "()Ljavax/net/ssl/SSLSessionContext;", "")] get; }
[<get: Android.Runtime.Register("getServerSessionContext", "()Ljavax/net/ssl/SSLSessionContext;", "")>]
member this.ServerSessionContext : Javax.Net.Ssl.ISSLSessionContext

Property Value

server session context bound to this SSL context

Attributes

Remarks

Returns the server session context, which represents the set of SSL sessions available for use during the handshake phase of server-side SSL sockets.

This context may be unavailable in some environments, in which case this method returns null. For example, when the underlying SSL provider does not provide an implementation of SSLSessionContext interface, this method returns null. A non-null session context is returned otherwise.

Java documentation for javax.net.ssl.SSLContext.getServerSessionContext().

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