Compartir a través de


SNIHostName Class

Definition

Instances of this class represent a server name of type StandardConstants#SNI_HOST_NAME host_name in a Server Name Indication (SNI) extension.

[Android.Runtime.Register("javax/net/ssl/SNIHostName", ApiSince=24, DoNotGenerateAcw=true)]
public sealed class SNIHostName : Javax.Net.Ssl.SNIServerName
[<Android.Runtime.Register("javax/net/ssl/SNIHostName", ApiSince=24, DoNotGenerateAcw=true)>]
type SNIHostName = class
    inherit SNIServerName
Inheritance
Attributes

Remarks

Instances of this class represent a server name of type StandardConstants#SNI_HOST_NAME host_name in a Server Name Indication (SNI) extension.

As described in section 3, "Server Name Indication", of TLS Extensions (RFC 6066), "HostName" contains the fully qualified DNS hostname of the server, as understood by the client. The encoded server name value of a hostname is represented as a byte string using ASCII encoding without a trailing dot. This allows the support of Internationalized Domain Names (IDN) through the use of A-labels (the ASCII-Compatible Encoding (ACE) form of a valid string of Internationalized Domain Names for Applications (IDNA)) defined in RFC 5890.

Note that SNIHostName objects are immutable.

Added in 1.8.

Java documentation for javax.net.ssl.SNIHostName.

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.

Constructors

SNIHostName(Byte[])

Creates an SNIHostName using the specified encoded value.

SNIHostName(String)

Creates an SNIHostName using the specified hostname.

Properties

AsciiName

Returns the StandardCharsets#US_ASCII-compliant hostname of this SNIHostName object.

Class

Returns the runtime class of this Object.

(Inherited from Object)
Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PeerReference (Inherited from Object)
ThresholdClass (Inherited from SNIServerName)
ThresholdType (Inherited from SNIServerName)
Type

Returns the name type of this server name.

(Inherited from SNIServerName)

Methods

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
CreateSNIMatcher(String)

Creates an SNIMatcher object for SNIHostNames.

Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetEncoded()

Returns a copy of the encoded server name value of this server name.

(Inherited from SNIServerName)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to