SSLParameters.WantClientAuth 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 whether client authentication should be requested. -or- Sets whether client authentication should be requested.
public virtual bool WantClientAuth { [Android.Runtime.Register("getWantClientAuth", "()Z", "GetGetWantClientAuthHandler")] get; [Android.Runtime.Register("setWantClientAuth", "(Z)V", "GetSetWantClientAuth_ZHandler")] set; }
[<get: Android.Runtime.Register("getWantClientAuth", "()Z", "GetGetWantClientAuthHandler")>]
[<set: Android.Runtime.Register("setWantClientAuth", "(Z)V", "GetSetWantClientAuth_ZHandler")>]
member this.WantClientAuth : bool with get, set
Property Value
whether client authentication should be requested.
- Attributes
Remarks
Property getter documentation:
Returns whether client authentication should be requested.
Java documentation for javax.net.ssl.SSLParameters.getWantClientAuth()
.
Property setter documentation:
Sets whether client authentication should be requested. Calling this method clears the needClientAuth
flag.
Java documentation for javax.net.ssl.SSLParameters.setWantClientAuth(boolean)
.
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.