SSLContext.ClientSessionContext Property
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.
Returns the client session context, which represents the set of SSL sessions available for use during the handshake phase of client-side SSL sockets.
public Javax.Net.Ssl.ISSLSessionContext? ClientSessionContext { [Android.Runtime.Register("getClientSessionContext", "()Ljavax/net/ssl/SSLSessionContext;", "")] get; }
[<get: Android.Runtime.Register("getClientSessionContext", "()Ljavax/net/ssl/SSLSessionContext;", "")>]
member this.ClientSessionContext : Javax.Net.Ssl.ISSLSessionContext
Property Value
client session context bound to this SSL context
- Attributes
Remarks
Returns the client session context, which represents the set of SSL sessions available for use during the handshake phase of client-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.getClientSessionContext()
.
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.