Addr

Overview

Location

  • Reference:
    • Go.dll  .NET, .NET Standard 2.0
    • Go.fx  Island
  • Namespace: go.golang.org.x.net.websocket
  • Platforms: .NET, .NET Standard 2.0, Island


 

constructor

 

constructor

 

Addr()

 

init()

 

Sub New()

constructor (Memory<URL>)

 

// .NET, .NET Standard 2.0
constructor(aURL: Memory<URL>)
// Island
constructor(aURL: Memory<URL>)

 

// .NET, .NET Standard 2.0
Addr(Memory<URL> aURL)
// Island
Addr(Memory<URL> aURL)

 

// .NET, .NET Standard 2.0
init(_ aURL: Memory<URL>)
// Island
init(_ aURL: Memory<URL>)

 

// .NET, .NET Standard 2.0
Sub New(aURL As Memory<URL>)
// Island
Sub New(aURL As Memory<URL>)

Parameters:

  • aURL:

constructor (Addr)

 

constructor(value: Addr)

 

Addr(Addr value)

 

init(_ value: Addr)

 

Sub New(value As Addr)

Parameters:

  • value:

EscapedPath

 

method EscapedPath: string

 

string EscapedPath()

 

func EscapedPath() -> string

 

func EscapedPath() string

 

Function EscapedPath() As string

ForceQuery

 

property ForceQuery: bool read write;

 

bool ForceQuery { get; set; }

 

var ForceQuery: bool { get{} set{} }

 

ForceQuery bool

 

Property ForceQuery() As bool

Fragment

 

property Fragment: string read write;

 

string Fragment { get; set; }

 

var Fragment: string { get{} set{} }

 

Fragment string

 

Property Fragment() As string

Host

 

property Host: string read write;

 

string Host { get; set; }

 

var Host: string { get{} set{} }

 

Host string

 

Property Host() As string

Hostname

 

method Hostname: string

 

string Hostname()

 

func Hostname() -> string

 

func Hostname() string

 

Function Hostname() As string

IsAbs

 

method IsAbs: bool

 

bool IsAbs()

 

func IsAbs() -> bool

 

func IsAbs() bool

 

Function IsAbs() As bool

MarshalBinary

 

method MarshalBinary: tuple of (text: Slice<Byte>, err: error)

 

(Slice<Byte>text, error err) MarshalBinary()

 

func MarshalBinary() -> (Slice<Byte>, error)

 

func MarshalBinary() tuple of (|name=text| Slice<Byte>, |name=err| error)

 

Function MarshalBinary() As Tuple (Of Slice<Byte>, error)

Network Island

 

method Network: string

 

string Network()

 

func Network() -> string

 

func Network() string

 

Function Network() As string

Opaque

 

property Opaque: string read write;

 

string Opaque { get; set; }

 

var Opaque: string { get{} set{} }

 

Opaque string

 

Property Opaque() As string

Parse

 

// .NET, .NET Standard 2.0
method Parse(ref: string): tuple of (Memory<URL>, error)
// Island
method Parse(ref: string): tuple of (Memory<URL>, error)

 

// .NET, .NET Standard 2.0
(Memory<URL>, error) Parse(string ref)
// Island
(Memory<URL>, error) Parse(string ref)

 

// .NET, .NET Standard 2.0
func Parse(_ ref: string) -> (Memory<URL>, error)
// Island
func Parse(_ ref: string) -> (Memory<URL>, error)

 

// .NET, .NET Standard 2.0
func Parse(ref string) tuple of (Memory<URL>, error)
// Island
func Parse(ref string) tuple of (Memory<URL>, error)

 

// .NET, .NET Standard 2.0
Function Parse(ref As string) As Tuple (Of Memory<URL>, error)
// Island
Function Parse(ref As string) As Tuple (Of Memory<URL>, error)

Parameters:

  • ref:

Path

 

property Path: string read write;

 

string Path { get; set; }

 

var Path: string { get{} set{} }

 

Path string

 

Property Path() As string

Port

 

method Port: string

 

string Port()

 

func Port() -> string

 

func Port() string

 

Function Port() As string

Query

 

method Query: Values

 

Values Query()

 

func Query() -> Values

 

func Query() Values

 

Function Query() As Values

RawPath

 

property RawPath: string read write;

 

string RawPath { get; set; }

 

var RawPath: string { get{} set{} }

 

RawPath string

 

Property RawPath() As string

RawQuery

 

property RawQuery: string read write;

 

string RawQuery { get; set; }

 

var RawQuery: string { get{} set{} }

 

RawQuery string

 

Property RawQuery() As string

RequestURI

 

method RequestURI: string

 

string RequestURI()

 

func RequestURI() -> string

 

func RequestURI() string

 

Function RequestURI() As string

ResolveReference

 

// .NET, .NET Standard 2.0
method ResolveReference(ref: Memory<URL>): Memory<URL>
// Island
method ResolveReference(ref: Memory<URL>): Memory<URL>

 

// .NET, .NET Standard 2.0
Memory<URL> ResolveReference(Memory<URL> ref)
// Island
Memory<URL> ResolveReference(Memory<URL> ref)

 

// .NET, .NET Standard 2.0
func ResolveReference(_ ref: Memory<URL>) -> Memory<URL>
// Island
func ResolveReference(_ ref: Memory<URL>) -> Memory<URL>

 

// .NET, .NET Standard 2.0
func ResolveReference(ref Memory<URL>) Memory<URL>
// Island
func ResolveReference(ref Memory<URL>) Memory<URL>

 

// .NET, .NET Standard 2.0
Function ResolveReference(ref As Memory<URL>) As Memory<URL>
// Island
Function ResolveReference(ref As Memory<URL>) As Memory<URL>

Parameters:

  • ref:

Scheme

 

property Scheme: string read write;

 

string Scheme { get; set; }

 

var Scheme: string { get{} set{} }

 

Scheme string

 

Property Scheme() As string

String

 

method String: string

 

string String()

 

func String() -> string

 

func String() string

 

Function String() As string

UnmarshalBinary

 

method UnmarshalBinary(text: Slice<Byte>): error

 

error UnmarshalBinary(Slice<Byte> text)

 

func UnmarshalBinary(_ text: Slice<Byte>) -> error

 

func UnmarshalBinary(text Slice<Byte>) error

 

Function UnmarshalBinary(text As Slice<Byte>) As error

Parameters:

  • text:

URL

 

// .NET, .NET Standard 2.0
var URL: Memory<URL>;
// Island
var URL: Memory<URL>;

 

// .NET, .NET Standard 2.0
Memory<URL> URL
// Island
Memory<URL> URL

 

// .NET, .NET Standard 2.0
var URL: Memory<URL>
// Island
var URL: Memory<URL>

 

// .NET, .NET Standard 2.0
URL Memory<URL>
// Island
URL Memory<URL>

 

// .NET, .NET Standard 2.0
FIELD URL() As Memory<URL>
// Island
FIELD URL() As Memory<URL>

User

 

// .NET, .NET Standard 2.0
property User: Memory<Userinfo> read write;
// Island
property User: Memory<Userinfo> read write;

 

// .NET, .NET Standard 2.0
Memory<Userinfo> User { get; set; }
// Island
Memory<Userinfo> User { get; set; }

 

// .NET, .NET Standard 2.0
var User: Memory<Userinfo> { get{} set{} }
// Island
var User: Memory<Userinfo> { get{} set{} }

 

// .NET, .NET Standard 2.0
User Memory<Userinfo>
// Island
User Memory<Userinfo>

 

// .NET, .NET Standard 2.0
Property User() As Memory<Userinfo>
// Island
Property User() As Memory<Userinfo>

 

URL

 

// .NET, .NET Standard 2.0
var URL: Memory<URL>;
// Island
var URL: Memory<URL>;

 

// .NET, .NET Standard 2.0
Memory<URL> URL
// Island
Memory<URL> URL

 

// .NET, .NET Standard 2.0
var URL: Memory<URL>
// Island
var URL: Memory<URL>

 

// .NET, .NET Standard 2.0
URL Memory<URL>
// Island
URL Memory<URL>

 

// .NET, .NET Standard 2.0
FIELD URL() As Memory<URL>
// Island
FIELD URL() As Memory<URL>

 

ForceQuery

 

property ForceQuery: bool read write;

 

bool ForceQuery { get; set; }

 

var ForceQuery: bool { get{} set{} }

 

ForceQuery bool

 

Property ForceQuery() As bool

Fragment

 

property Fragment: string read write;

 

string Fragment { get; set; }

 

var Fragment: string { get{} set{} }

 

Fragment string

 

Property Fragment() As string

Host

 

property Host: string read write;

 

string Host { get; set; }

 

var Host: string { get{} set{} }

 

Host string

 

Property Host() As string

Opaque

 

property Opaque: string read write;

 

string Opaque { get; set; }

 

var Opaque: string { get{} set{} }

 

Opaque string

 

Property Opaque() As string

Path

 

property Path: string read write;

 

string Path { get; set; }

 

var Path: string { get{} set{} }

 

Path string

 

Property Path() As string

RawPath

 

property RawPath: string read write;

 

string RawPath { get; set; }

 

var RawPath: string { get{} set{} }

 

RawPath string

 

Property RawPath() As string

RawQuery

 

property RawQuery: string read write;

 

string RawQuery { get; set; }

 

var RawQuery: string { get{} set{} }

 

RawQuery string

 

Property RawQuery() As string

Scheme

 

property Scheme: string read write;

 

string Scheme { get; set; }

 

var Scheme: string { get{} set{} }

 

Scheme string

 

Property Scheme() As string

User

 

// .NET, .NET Standard 2.0
property User: Memory<Userinfo> read write;
// Island
property User: Memory<Userinfo> read write;

 

// .NET, .NET Standard 2.0
Memory<Userinfo> User { get; set; }
// Island
Memory<Userinfo> User { get; set; }

 

// .NET, .NET Standard 2.0
var User: Memory<Userinfo> { get{} set{} }
// Island
var User: Memory<Userinfo> { get{} set{} }

 

// .NET, .NET Standard 2.0
User Memory<Userinfo>
// Island
User Memory<Userinfo>

 

// .NET, .NET Standard 2.0
Property User() As Memory<Userinfo>
// Island
Property User() As Memory<Userinfo>

 

constructor

 

constructor

 

Addr()

 

init()

 

Sub New()

constructor (Memory<URL>)

 

// .NET, .NET Standard 2.0
constructor(aURL: Memory<URL>)
// Island
constructor(aURL: Memory<URL>)

 

// .NET, .NET Standard 2.0
Addr(Memory<URL> aURL)
// Island
Addr(Memory<URL> aURL)

 

// .NET, .NET Standard 2.0
init(_ aURL: Memory<URL>)
// Island
init(_ aURL: Memory<URL>)

 

// .NET, .NET Standard 2.0
Sub New(aURL As Memory<URL>)
// Island
Sub New(aURL As Memory<URL>)

Parameters:

  • aURL:

constructor (Addr)

 

constructor(value: Addr)

 

Addr(Addr value)

 

init(_ value: Addr)

 

Sub New(value As Addr)

Parameters:

  • value:

EscapedPath

 

method EscapedPath: string

 

string EscapedPath()

 

func EscapedPath() -> string

 

func EscapedPath() string

 

Function EscapedPath() As string

Hostname

 

method Hostname: string

 

string Hostname()

 

func Hostname() -> string

 

func Hostname() string

 

Function Hostname() As string

IsAbs

 

method IsAbs: bool

 

bool IsAbs()

 

func IsAbs() -> bool

 

func IsAbs() bool

 

Function IsAbs() As bool

MarshalBinary

 

method MarshalBinary: tuple of (text: Slice<Byte>, err: error)

 

(Slice<Byte>text, error err) MarshalBinary()

 

func MarshalBinary() -> (Slice<Byte>, error)

 

func MarshalBinary() tuple of (|name=text| Slice<Byte>, |name=err| error)

 

Function MarshalBinary() As Tuple (Of Slice<Byte>, error)

Network Island

 

method Network: string

 

string Network()

 

func Network() -> string

 

func Network() string

 

Function Network() As string

Parse

 

// .NET, .NET Standard 2.0
method Parse(ref: string): tuple of (Memory<URL>, error)
// Island
method Parse(ref: string): tuple of (Memory<URL>, error)

 

// .NET, .NET Standard 2.0
(Memory<URL>, error) Parse(string ref)
// Island
(Memory<URL>, error) Parse(string ref)

 

// .NET, .NET Standard 2.0
func Parse(_ ref: string) -> (Memory<URL>, error)
// Island
func Parse(_ ref: string) -> (Memory<URL>, error)

 

// .NET, .NET Standard 2.0
func Parse(ref string) tuple of (Memory<URL>, error)
// Island
func Parse(ref string) tuple of (Memory<URL>, error)

 

// .NET, .NET Standard 2.0
Function Parse(ref As string) As Tuple (Of Memory<URL>, error)
// Island
Function Parse(ref As string) As Tuple (Of Memory<URL>, error)

Parameters:

  • ref:

Port

 

method Port: string

 

string Port()

 

func Port() -> string

 

func Port() string

 

Function Port() As string

Query

 

method Query: Values

 

Values Query()

 

func Query() -> Values

 

func Query() Values

 

Function Query() As Values

RequestURI

 

method RequestURI: string

 

string RequestURI()

 

func RequestURI() -> string

 

func RequestURI() string

 

Function RequestURI() As string

ResolveReference

 

// .NET, .NET Standard 2.0
method ResolveReference(ref: Memory<URL>): Memory<URL>
// Island
method ResolveReference(ref: Memory<URL>): Memory<URL>

 

// .NET, .NET Standard 2.0
Memory<URL> ResolveReference(Memory<URL> ref)
// Island
Memory<URL> ResolveReference(Memory<URL> ref)

 

// .NET, .NET Standard 2.0
func ResolveReference(_ ref: Memory<URL>) -> Memory<URL>
// Island
func ResolveReference(_ ref: Memory<URL>) -> Memory<URL>

 

// .NET, .NET Standard 2.0
func ResolveReference(ref Memory<URL>) Memory<URL>
// Island
func ResolveReference(ref Memory<URL>) Memory<URL>

 

// .NET, .NET Standard 2.0
Function ResolveReference(ref As Memory<URL>) As Memory<URL>
// Island
Function ResolveReference(ref As Memory<URL>) As Memory<URL>

Parameters:

  • ref:

String

 

method String: string

 

string String()

 

func String() -> string

 

func String() string

 

Function String() As string

UnmarshalBinary

 

method UnmarshalBinary(text: Slice<Byte>): error

 

error UnmarshalBinary(Slice<Byte> text)

 

func UnmarshalBinary(_ text: Slice<Byte>) -> error

 

func UnmarshalBinary(text Slice<Byte>) error

 

Function UnmarshalBinary(text As Slice<Byte>) As error

Parameters:

  • text: