Source File
parameters.go
Belonging Package
github.com/masterzen/winrm
package winrm
import
// Parameters struct defines
// metadata information and http transport config
type Parameters struct {
Timeout string
Locale string
EnvelopeSize int
TransportDecorator func() Transporter
Dial func(network, addr string) (net.Conn, error)
}
// DefaultParameters return constant config
// of type Parameters
var 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. |