Global
Location
-
Reference:
- Go.dll .NET, .NET Standard 2.0
- Go.fx Island
- Namespace: go.net.http.httputil
- Platforms: .NET, .NET Standard 2.0, Island
DumpRequest
// .NET, .NET Standard 2.0
class method DumpRequest(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// Island
class method DumpRequest(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// .NET, .NET Standard 2.0
static (Slice<Byte>, error) DumpRequest(Memory<Request> req, bool body)
// Island
static (Slice<Byte>, error) DumpRequest(Memory<Request> req, bool body)
// .NET, .NET Standard 2.0
static func DumpRequest(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
// Island
static func DumpRequest(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
Parameters:
- req:
- body:
DumpRequestOut
// .NET, .NET Standard 2.0
class method DumpRequestOut(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// Island
class method DumpRequestOut(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// .NET, .NET Standard 2.0
static (Slice<Byte>, error) DumpRequestOut(Memory<Request> req, bool body)
// Island
static (Slice<Byte>, error) DumpRequestOut(Memory<Request> req, bool body)
// .NET, .NET Standard 2.0
static func DumpRequestOut(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
// Island
static func DumpRequestOut(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
Parameters:
- req:
- body:
DumpResponse
// .NET, .NET Standard 2.0
class method DumpResponse(resp: Memory<Response>; body: bool): tuple of (Slice<Byte>, error)
// Island
class method DumpResponse(resp: Memory<Response>; body: bool): tuple of (Slice<Byte>, error)
// .NET, .NET Standard 2.0
static (Slice<Byte>, error) DumpResponse(Memory<Response> resp, bool body)
// Island
static (Slice<Byte>, error) DumpResponse(Memory<Response> resp, bool body)
// .NET, .NET Standard 2.0
static func DumpResponse(_ resp: Memory<Response>, _ body: bool) -> (Slice<Byte>, error)
// Island
static func DumpResponse(_ resp: Memory<Response>, _ body: bool) -> (Slice<Byte>, error)
Parameters:
- resp:
- body:
ErrClosed
// .NET, .NET Standard 2.0
class var ErrClosed: Memory<ProtocolError>;
// Island
class var ErrClosed: Memory<ProtocolError>;
// .NET, .NET Standard 2.0
static Memory<ProtocolError> ErrClosed
// Island
static Memory<ProtocolError> ErrClosed
// .NET, .NET Standard 2.0
static var ErrClosed: Memory<ProtocolError>
// Island
static var ErrClosed: Memory<ProtocolError>
// .NET, .NET Standard 2.0
ErrClosed Memory<ProtocolError>
// Island
ErrClosed Memory<ProtocolError>
// .NET, .NET Standard 2.0
Shared FIELD ErrClosed() As Memory<ProtocolError>
// Island
Shared FIELD ErrClosed() As Memory<ProtocolError>
ErrLineTooLong
class var ErrLineTooLong: error;
static error ErrLineTooLong
static var ErrLineTooLong: error
ErrLineTooLong error
Shared FIELD ErrLineTooLong() As error
ErrPersistEOF
// .NET, .NET Standard 2.0
class var ErrPersistEOF: Memory<ProtocolError>;
// Island
class var ErrPersistEOF: Memory<ProtocolError>;
// .NET, .NET Standard 2.0
static Memory<ProtocolError> ErrPersistEOF
// Island
static Memory<ProtocolError> ErrPersistEOF
// .NET, .NET Standard 2.0
static var ErrPersistEOF: Memory<ProtocolError>
// Island
static var ErrPersistEOF: Memory<ProtocolError>
// .NET, .NET Standard 2.0
ErrPersistEOF Memory<ProtocolError>
// Island
ErrPersistEOF Memory<ProtocolError>
// .NET, .NET Standard 2.0
Shared FIELD ErrPersistEOF() As Memory<ProtocolError>
// Island
Shared FIELD ErrPersistEOF() As Memory<ProtocolError>
ErrPipeline
// .NET, .NET Standard 2.0
class var ErrPipeline: Memory<ProtocolError>;
// Island
class var ErrPipeline: Memory<ProtocolError>;
// .NET, .NET Standard 2.0
static Memory<ProtocolError> ErrPipeline
// Island
static Memory<ProtocolError> ErrPipeline
// .NET, .NET Standard 2.0
static var ErrPipeline: Memory<ProtocolError>
// Island
static var ErrPipeline: Memory<ProtocolError>
// .NET, .NET Standard 2.0
ErrPipeline Memory<ProtocolError>
// Island
ErrPipeline Memory<ProtocolError>
// .NET, .NET Standard 2.0
Shared FIELD ErrPipeline() As Memory<ProtocolError>
// Island
Shared FIELD ErrPipeline() As Memory<ProtocolError>
NewChunkedReader
Parameters:
- r:
NewChunkedWriter
class method NewChunkedWriter(w: Writer): WriteCloser
static WriteCloser NewChunkedWriter(Writer w)
static func NewChunkedWriter(_ w: Writer) -> WriteCloser
func NewChunkedWriter(w Writer) WriteCloser
Shared Function NewChunkedWriter(w As Writer) As WriteCloser
Parameters:
- w:
NewClientConn
// .NET, .NET Standard 2.0
class method NewClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// Island
class method NewClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// .NET, .NET Standard 2.0
static Memory<ClientConn> NewClientConn(Conn c, Memory<Reader> r)
// Island
static Memory<ClientConn> NewClientConn(Conn c, Memory<Reader> r)
// .NET, .NET Standard 2.0
static func NewClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// Island
static func NewClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// .NET, .NET Standard 2.0
func NewClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// Island
func NewClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// .NET, .NET Standard 2.0
Shared Function NewClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
// Island
Shared Function NewClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
Parameters:
- c:
- r:
NewProxyClientConn
// .NET, .NET Standard 2.0
class method NewProxyClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// Island
class method NewProxyClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// .NET, .NET Standard 2.0
static Memory<ClientConn> NewProxyClientConn(Conn c, Memory<Reader> r)
// Island
static Memory<ClientConn> NewProxyClientConn(Conn c, Memory<Reader> r)
// .NET, .NET Standard 2.0
static func NewProxyClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// Island
static func NewProxyClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// .NET, .NET Standard 2.0
func NewProxyClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// Island
func NewProxyClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// .NET, .NET Standard 2.0
Shared Function NewProxyClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
// Island
Shared Function NewProxyClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
Parameters:
- c:
- r:
NewServerConn
// .NET, .NET Standard 2.0
class method NewServerConn(c: Conn; r: Memory<Reader>): Memory<ServerConn>
// Island
class method NewServerConn(c: Conn; r: Memory<Reader>): Memory<ServerConn>
// .NET, .NET Standard 2.0
static Memory<ServerConn> NewServerConn(Conn c, Memory<Reader> r)
// Island
static Memory<ServerConn> NewServerConn(Conn c, Memory<Reader> r)
// .NET, .NET Standard 2.0
static func NewServerConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ServerConn>
// Island
static func NewServerConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ServerConn>
// .NET, .NET Standard 2.0
func NewServerConn(c Conn, r Memory<Reader>) Memory<ServerConn>
// Island
func NewServerConn(c Conn, r Memory<Reader>) Memory<ServerConn>
// .NET, .NET Standard 2.0
Shared Function NewServerConn(c As Conn, r As Memory<Reader>) As Memory<ServerConn>
// Island
Shared Function NewServerConn(c As Conn, r As Memory<Reader>) As Memory<ServerConn>
Parameters:
- c:
- r:
NewSingleHostReverseProxy
// .NET, .NET Standard 2.0
class method NewSingleHostReverseProxy(target: Memory<URL>): Memory<ReverseProxy>
// Island
class method NewSingleHostReverseProxy(target: Memory<URL>): Memory<ReverseProxy>
// .NET, .NET Standard 2.0
static Memory<ReverseProxy> NewSingleHostReverseProxy(Memory<URL> target)
// Island
static Memory<ReverseProxy> NewSingleHostReverseProxy(Memory<URL> target)
// .NET, .NET Standard 2.0
static func NewSingleHostReverseProxy(_ target: Memory<URL>) -> Memory<ReverseProxy>
// Island
static func NewSingleHostReverseProxy(_ target: Memory<URL>) -> Memory<ReverseProxy>
// .NET, .NET Standard 2.0
func NewSingleHostReverseProxy(target Memory<URL>) Memory<ReverseProxy>
// Island
func NewSingleHostReverseProxy(target Memory<URL>) Memory<ReverseProxy>
// .NET, .NET Standard 2.0
Shared Function NewSingleHostReverseProxy(target As Memory<URL>) As Memory<ReverseProxy>
// Island
Shared Function NewSingleHostReverseProxy(target As Memory<URL>) As Memory<ReverseProxy>
Parameters:
- target:
ErrClosed
// .NET, .NET Standard 2.0
class var ErrClosed: Memory<ProtocolError>;
// Island
class var ErrClosed: Memory<ProtocolError>;
// .NET, .NET Standard 2.0
static Memory<ProtocolError> ErrClosed
// Island
static Memory<ProtocolError> ErrClosed
// .NET, .NET Standard 2.0
static var ErrClosed: Memory<ProtocolError>
// Island
static var ErrClosed: Memory<ProtocolError>
// .NET, .NET Standard 2.0
ErrClosed Memory<ProtocolError>
// Island
ErrClosed Memory<ProtocolError>
// .NET, .NET Standard 2.0
Shared FIELD ErrClosed() As Memory<ProtocolError>
// Island
Shared FIELD ErrClosed() As Memory<ProtocolError>
ErrLineTooLong
class var ErrLineTooLong: error;
static error ErrLineTooLong
static var ErrLineTooLong: error
ErrLineTooLong error
Shared FIELD ErrLineTooLong() As error
ErrPersistEOF
// .NET, .NET Standard 2.0
class var ErrPersistEOF: Memory<ProtocolError>;
// Island
class var ErrPersistEOF: Memory<ProtocolError>;
// .NET, .NET Standard 2.0
static Memory<ProtocolError> ErrPersistEOF
// Island
static Memory<ProtocolError> ErrPersistEOF
// .NET, .NET Standard 2.0
static var ErrPersistEOF: Memory<ProtocolError>
// Island
static var ErrPersistEOF: Memory<ProtocolError>
// .NET, .NET Standard 2.0
ErrPersistEOF Memory<ProtocolError>
// Island
ErrPersistEOF Memory<ProtocolError>
// .NET, .NET Standard 2.0
Shared FIELD ErrPersistEOF() As Memory<ProtocolError>
// Island
Shared FIELD ErrPersistEOF() As Memory<ProtocolError>
ErrPipeline
// .NET, .NET Standard 2.0
class var ErrPipeline: Memory<ProtocolError>;
// Island
class var ErrPipeline: Memory<ProtocolError>;
// .NET, .NET Standard 2.0
static Memory<ProtocolError> ErrPipeline
// Island
static Memory<ProtocolError> ErrPipeline
// .NET, .NET Standard 2.0
static var ErrPipeline: Memory<ProtocolError>
// Island
static var ErrPipeline: Memory<ProtocolError>
// .NET, .NET Standard 2.0
ErrPipeline Memory<ProtocolError>
// Island
ErrPipeline Memory<ProtocolError>
// .NET, .NET Standard 2.0
Shared FIELD ErrPipeline() As Memory<ProtocolError>
// Island
Shared FIELD ErrPipeline() As Memory<ProtocolError>
DumpRequest
// .NET, .NET Standard 2.0
class method DumpRequest(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// Island
class method DumpRequest(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// .NET, .NET Standard 2.0
static (Slice<Byte>, error) DumpRequest(Memory<Request> req, bool body)
// Island
static (Slice<Byte>, error) DumpRequest(Memory<Request> req, bool body)
// .NET, .NET Standard 2.0
static func DumpRequest(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
// Island
static func DumpRequest(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
Parameters:
- req:
- body:
DumpRequestOut
// .NET, .NET Standard 2.0
class method DumpRequestOut(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// Island
class method DumpRequestOut(req: Memory<Request>; body: bool): tuple of (Slice<Byte>, error)
// .NET, .NET Standard 2.0
static (Slice<Byte>, error) DumpRequestOut(Memory<Request> req, bool body)
// Island
static (Slice<Byte>, error) DumpRequestOut(Memory<Request> req, bool body)
// .NET, .NET Standard 2.0
static func DumpRequestOut(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
// Island
static func DumpRequestOut(_ req: Memory<Request>, _ body: bool) -> (Slice<Byte>, error)
Parameters:
- req:
- body:
DumpResponse
// .NET, .NET Standard 2.0
class method DumpResponse(resp: Memory<Response>; body: bool): tuple of (Slice<Byte>, error)
// Island
class method DumpResponse(resp: Memory<Response>; body: bool): tuple of (Slice<Byte>, error)
// .NET, .NET Standard 2.0
static (Slice<Byte>, error) DumpResponse(Memory<Response> resp, bool body)
// Island
static (Slice<Byte>, error) DumpResponse(Memory<Response> resp, bool body)
// .NET, .NET Standard 2.0
static func DumpResponse(_ resp: Memory<Response>, _ body: bool) -> (Slice<Byte>, error)
// Island
static func DumpResponse(_ resp: Memory<Response>, _ body: bool) -> (Slice<Byte>, error)
Parameters:
- resp:
- body:
NewChunkedReader
Parameters:
- r:
NewChunkedWriter
class method NewChunkedWriter(w: Writer): WriteCloser
static WriteCloser NewChunkedWriter(Writer w)
static func NewChunkedWriter(_ w: Writer) -> WriteCloser
func NewChunkedWriter(w Writer) WriteCloser
Shared Function NewChunkedWriter(w As Writer) As WriteCloser
Parameters:
- w:
NewClientConn
// .NET, .NET Standard 2.0
class method NewClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// Island
class method NewClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// .NET, .NET Standard 2.0
static Memory<ClientConn> NewClientConn(Conn c, Memory<Reader> r)
// Island
static Memory<ClientConn> NewClientConn(Conn c, Memory<Reader> r)
// .NET, .NET Standard 2.0
static func NewClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// Island
static func NewClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// .NET, .NET Standard 2.0
func NewClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// Island
func NewClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// .NET, .NET Standard 2.0
Shared Function NewClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
// Island
Shared Function NewClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
Parameters:
- c:
- r:
NewProxyClientConn
// .NET, .NET Standard 2.0
class method NewProxyClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// Island
class method NewProxyClientConn(c: Conn; r: Memory<Reader>): Memory<ClientConn>
// .NET, .NET Standard 2.0
static Memory<ClientConn> NewProxyClientConn(Conn c, Memory<Reader> r)
// Island
static Memory<ClientConn> NewProxyClientConn(Conn c, Memory<Reader> r)
// .NET, .NET Standard 2.0
static func NewProxyClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// Island
static func NewProxyClientConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ClientConn>
// .NET, .NET Standard 2.0
func NewProxyClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// Island
func NewProxyClientConn(c Conn, r Memory<Reader>) Memory<ClientConn>
// .NET, .NET Standard 2.0
Shared Function NewProxyClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
// Island
Shared Function NewProxyClientConn(c As Conn, r As Memory<Reader>) As Memory<ClientConn>
Parameters:
- c:
- r:
NewServerConn
// .NET, .NET Standard 2.0
class method NewServerConn(c: Conn; r: Memory<Reader>): Memory<ServerConn>
// Island
class method NewServerConn(c: Conn; r: Memory<Reader>): Memory<ServerConn>
// .NET, .NET Standard 2.0
static Memory<ServerConn> NewServerConn(Conn c, Memory<Reader> r)
// Island
static Memory<ServerConn> NewServerConn(Conn c, Memory<Reader> r)
// .NET, .NET Standard 2.0
static func NewServerConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ServerConn>
// Island
static func NewServerConn(_ c: Conn, _ r: Memory<Reader>) -> Memory<ServerConn>
// .NET, .NET Standard 2.0
func NewServerConn(c Conn, r Memory<Reader>) Memory<ServerConn>
// Island
func NewServerConn(c Conn, r Memory<Reader>) Memory<ServerConn>
// .NET, .NET Standard 2.0
Shared Function NewServerConn(c As Conn, r As Memory<Reader>) As Memory<ServerConn>
// Island
Shared Function NewServerConn(c As Conn, r As Memory<Reader>) As Memory<ServerConn>
Parameters:
- c:
- r:
NewSingleHostReverseProxy
// .NET, .NET Standard 2.0
class method NewSingleHostReverseProxy(target: Memory<URL>): Memory<ReverseProxy>
// Island
class method NewSingleHostReverseProxy(target: Memory<URL>): Memory<ReverseProxy>
// .NET, .NET Standard 2.0
static Memory<ReverseProxy> NewSingleHostReverseProxy(Memory<URL> target)
// Island
static Memory<ReverseProxy> NewSingleHostReverseProxy(Memory<URL> target)
// .NET, .NET Standard 2.0
static func NewSingleHostReverseProxy(_ target: Memory<URL>) -> Memory<ReverseProxy>
// Island
static func NewSingleHostReverseProxy(_ target: Memory<URL>) -> Memory<ReverseProxy>
// .NET, .NET Standard 2.0
func NewSingleHostReverseProxy(target Memory<URL>) Memory<ReverseProxy>
// Island
func NewSingleHostReverseProxy(target Memory<URL>) Memory<ReverseProxy>
// .NET, .NET Standard 2.0
Shared Function NewSingleHostReverseProxy(target As Memory<URL>) As Memory<ReverseProxy>
// Island
Shared Function NewSingleHostReverseProxy(target As Memory<URL>) As Memory<ReverseProxy>
Parameters:
- target: