HostString Struct

Definition

Represents the host portion of a Uri can be used to construct Uri's properly formatted and encoded for use in HTTP headers.

public struct HostString : IEquatable<Microsoft.Owin.HostString>
type HostString = struct
Public Structure HostString
Implements IEquatable(Of HostString)
Inheritance
HostString
Implements

Constructors

HostString(String)

Creates a new HostString without modification. The value should be Unicode rather than punycode, and may have a port. IPv4 and IPv6 addresses are also allowed, and also may have ports.

Properties

Value

Returns the original value from the constructor.

Methods

Equals(HostString)

Compares the equality of the Value property, ignoring case.

Equals(Object)

Compares against the given object only if it is a HostString.

FromUriComponent(String)

Creates a new HostString from the given uri component. Any punycode will be converted to Unicode.

FromUriComponent(Uri)

Creates a new HostString from the host and port of the give Uri instance. Punycode will be converted to Unicode.

GetHashCode()

Gets a hash code for the value.

ToString()

Returns the value as normalized by ToUriComponent().

ToUriComponent()

Returns the value properly formatted and encoded for use in a URI in a HTTP header. Any Unicode is converted to punycode. IPv6 addresses will have brackets added if they are missing.

Operators

Equality(HostString, HostString)

Compares the two instances for equality.

Inequality(HostString, HostString)

Compares the two instances for inequality.

Applies to