type mime/multipart.Writer
12 uses
mime/multipart (current package)
writer.go#L19: type Writer struct {
writer.go#L27: func NewWriter(w io.Writer) *Writer {
writer.go#L28: return &Writer{
writer.go#L35: func (w *Writer) Boundary() string {
writer.go#L45: func (w *Writer) SetBoundary(boundary string) error {
writer.go#L74: func (w *Writer) FormDataContentType() string {
writer.go#L97: func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {
writer.go#L140: func (w *Writer) CreateFormFile(fieldname, filename string) (io.Writer, error) {
writer.go#L151: func (w *Writer) CreateFormField(fieldname string) (io.Writer, error) {
writer.go#L159: func (w *Writer) WriteField(fieldname, value string) error {
writer.go#L170: func (w *Writer) Close() error {
writer.go#L182: mw *Writer
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. |