Global
Location
-
Reference:
- Go.dll .NET, .NET Standard 2.0
- Go.fx Island
- Namespace: go.golang.org.x.net.context.ctxhttp
- Platforms: .NET, .NET Standard 2.0, Island
Methods
Do
// .NET, .NET Standard 2.0
class method Do(ctx: Context; client: Memory<Client>; req: Memory<Request>): tuple of (Memory<Response>, error)
// Island
class method Do(ctx: Context; client: Memory<Client>; req: Memory<Request>): tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
static (Memory<Response>, error) Do(Context ctx, Memory<Client> client, Memory<Request> req)
// Island
static (Memory<Response>, error) Do(Context ctx, Memory<Client> client, Memory<Request> req)
// .NET, .NET Standard 2.0
static func Do(_ ctx: Context, _ client: Memory<Client>, _ req: Memory<Request>) -> (Memory<Response>, error)
// Island
static func Do(_ ctx: Context, _ client: Memory<Client>, _ req: Memory<Request>) -> (Memory<Response>, error)
Parameters:
- ctx:
- client:
- req:
Get
// .NET, .NET Standard 2.0
class method Get(ctx: Context; client: Memory<Client>; url: string): tuple of (Memory<Response>, error)
// Island
class method Get(ctx: Context; client: Memory<Client>; url: string): tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
static (Memory<Response>, error) Get(Context ctx, Memory<Client> client, string url)
// Island
static (Memory<Response>, error) Get(Context ctx, Memory<Client> client, string url)
// .NET, .NET Standard 2.0
static func Get(_ ctx: Context, _ client: Memory<Client>, _ url: string) -> (Memory<Response>, error)
// Island
static func Get(_ ctx: Context, _ client: Memory<Client>, _ url: string) -> (Memory<Response>, error)
Parameters:
- ctx:
- client:
- url:
Head
// .NET, .NET Standard 2.0
class method Head(ctx: Context; client: Memory<Client>; url: string): tuple of (Memory<Response>, error)
// Island
class method Head(ctx: Context; client: Memory<Client>; url: string): tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
static (Memory<Response>, error) Head(Context ctx, Memory<Client> client, string url)
// Island
static (Memory<Response>, error) Head(Context ctx, Memory<Client> client, string url)
// .NET, .NET Standard 2.0
static func Head(_ ctx: Context, _ client: Memory<Client>, _ url: string) -> (Memory<Response>, error)
// Island
static func Head(_ ctx: Context, _ client: Memory<Client>, _ url: string) -> (Memory<Response>, error)
Parameters:
- ctx:
- client:
- url:
Post
// .NET, .NET Standard 2.0
class method Post(ctx: Context; client: Memory<Client>; url: string; bodyType: string; body: Reader): tuple of (Memory<Response>, error)
// Island
class method Post(ctx: Context; client: Memory<Client>; url: string; bodyType: string; body: Reader): tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
static (Memory<Response>, error) Post(Context ctx, Memory<Client> client, string url, string bodyType, Reader body)
// Island
static (Memory<Response>, error) Post(Context ctx, Memory<Client> client, string url, string bodyType, Reader body)
// .NET, .NET Standard 2.0
static func Post(_ ctx: Context, _ client: Memory<Client>, _ url: string, _ bodyType: string, _ body: Reader) -> (Memory<Response>, error)
// Island
static func Post(_ ctx: Context, _ client: Memory<Client>, _ url: string, _ bodyType: string, _ body: Reader) -> (Memory<Response>, error)
// .NET, .NET Standard 2.0
func Post(ctx Context, client Memory<Client>, url string, bodyType string, body Reader) tuple of (Memory<Response>, error)
// Island
func Post(ctx Context, client Memory<Client>, url string, bodyType string, body Reader) tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
Shared Function Post(ctx As Context, client As Memory<Client>, url As string, bodyType As string, body As Reader) As Tuple (Of Memory<Response>, error)
// Island
Shared Function Post(ctx As Context, client As Memory<Client>, url As string, bodyType As string, body As Reader) As Tuple (Of Memory<Response>, error)
Parameters:
- ctx:
- client:
- url:
- bodyType:
- body:
PostForm
// .NET, .NET Standard 2.0
class method PostForm(ctx: Context; client: Memory<Client>; url: string; data: Values): tuple of (Memory<Response>, error)
// Island
class method PostForm(ctx: Context; client: Memory<Client>; url: string; data: Values): tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
static (Memory<Response>, error) PostForm(Context ctx, Memory<Client> client, string url, Values data)
// Island
static (Memory<Response>, error) PostForm(Context ctx, Memory<Client> client, string url, Values data)
// .NET, .NET Standard 2.0
static func PostForm(_ ctx: Context, _ client: Memory<Client>, _ url: string, _ data: Values) -> (Memory<Response>, error)
// Island
static func PostForm(_ ctx: Context, _ client: Memory<Client>, _ url: string, _ data: Values) -> (Memory<Response>, error)
// .NET, .NET Standard 2.0
func PostForm(ctx Context, client Memory<Client>, url string, data Values) tuple of (Memory<Response>, error)
// Island
func PostForm(ctx Context, client Memory<Client>, url string, data Values) tuple of (Memory<Response>, error)
// .NET, .NET Standard 2.0
Shared Function PostForm(ctx As Context, client As Memory<Client>, url As string, data As Values) As Tuple (Of Memory<Response>, error)
// Island
Shared Function PostForm(ctx As Context, client As Memory<Client>, url As string, data As Values) As Tuple (Of Memory<Response>, error)
Parameters:
- ctx:
- client:
- url:
- data: