SSLEngineResult.HandshakeStatus.ValueOf(String) 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.
Returns the enum constant with the specified name. The name must exactly match a declared enum constant identifier; whitespace is not permitted.
[Android.Runtime.Register("valueOf", "(Ljava/lang/String;)Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;", "")]
public static Javax.Net.Ssl.SSLEngineResult.HandshakeStatus? ValueOf(string? name);
[<Android.Runtime.Register("valueOf", "(Ljava/lang/String;)Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;", "")>]
static member ValueOf : string -> Javax.Net.Ssl.SSLEngineResult.HandshakeStatus
Parameters
- name
- String
The enum constant name to return. It must exactly match a declared enum constant identifier; whitespace is not permitted.
Returns
The enum constant with the specified name.
- Attributes
Exceptions
Thrown if this enum class has no constant with the specified name.
Thrown if name is null.
Remarks
Java documentation for javax.net.ssl.SSLEngineResult.HandshakeStatus.valueOf(java.lang.String).
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.