Source File
parameters.go
Belonging Package
github.com/masterzen/winrm
package winrmimport// Parameters struct defines// metadata information and http transport configtype Parameters struct {Timeout stringLocale stringEnvelopeSize intTransportDecorator func() TransporterDial func(network, addr string) (net.Conn, error)}// DefaultParameters return constant config// of type Parametersvar DefaultParameters = NewParameters("PT60S", "en-US", 153600)// NewParameters return new struct of type Parameters// this struct makes the configuration for the request, size message, etc.func (, string, int) *Parameters {return &Parameters{Timeout: ,Locale: ,EnvelopeSize: ,}}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |