Global

Location

  • Reference:
    • Go.dll  .NET, .NET Standard 2.0
    • Go.fx  Island
  • Namespace: go.net.http.cgi
  • Platforms: .NET, .NET Standard 2.0, Island

Methods


Request

 

// .NET, .NET Standard 2.0
class method Request: tuple of (Memory<Request>, error)
// Island
class method Request: tuple of (Memory<Request>, error)

 

// .NET, .NET Standard 2.0
static (Memory<Request>, error) Request()
// Island
static (Memory<Request>, error) Request()

 

// .NET, .NET Standard 2.0
static func Request() -> (Memory<Request>, error)
// Island
static func Request() -> (Memory<Request>, error)

 

// .NET, .NET Standard 2.0
func Request() tuple of (Memory<Request>, error)
// Island
func Request() tuple of (Memory<Request>, error)

 

// .NET, .NET Standard 2.0
Shared Function Request() As Tuple (Of Memory<Request>, error)
// Island
Shared Function Request() As Tuple (Of Memory<Request>, error)

RequestFromMap

 

// .NET, .NET Standard 2.0
class method RequestFromMap(params: Map<string, string>): tuple of (Memory<Request>, error)
// Island
class method RequestFromMap(params: Map<string, string>): tuple of (Memory<Request>, error)

 

// .NET, .NET Standard 2.0
static (Memory<Request>, error) RequestFromMap(Map<string, string> params)
// Island
static (Memory<Request>, error) RequestFromMap(Map<string, string> params)

 

// .NET, .NET Standard 2.0
static func RequestFromMap(_ params: Map<string, string>) -> (Memory<Request>, error)
// Island
static func RequestFromMap(_ params: Map<string, string>) -> (Memory<Request>, error)

 

// .NET, .NET Standard 2.0
func RequestFromMap(params Map<string, string>) tuple of (Memory<Request>, error)
// Island
func RequestFromMap(params Map<string, string>) tuple of (Memory<Request>, error)

 

// .NET, .NET Standard 2.0
Shared Function RequestFromMap(params As Map<string, string>) As Tuple (Of Memory<Request>, error)
// Island
Shared Function RequestFromMap(params As Map<string, string>) As Tuple (Of Memory<Request>, error)

Parameters:

  • params:

Serve

 

class method Serve(handler: Handler): error

 

static error Serve(Handler handler)

 

static func Serve(_ handler: Handler) -> error

 

func Serve(handler Handler) error

 

Shared Function Serve(handler As Handler) As error

Parameters:

  • handler: