multipart

package
v1.3.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 27, 2026 License: Apache-2.0 Imports: 12 Imported by: 6

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Encoder

type Encoder struct {
	// contains filtered or unexported fields
}

Encoder is a multipart encoder object

func NewFormEncoder added in v0.0.4

func NewFormEncoder(w io.Writer) *Encoder

NewFormEncoder creates a new encoder object, which writes application/x-www-form-urlencoded to the io.Writer

func NewMultipartEncoder added in v0.0.4

func NewMultipartEncoder(w io.Writer) *Encoder

NewMultipartEncoder creates a new encoder object, which writes multipart/form-data to the io.Writer

func (*Encoder) Close

func (enc *Encoder) Close() error

Close the writer after writing all the data

func (*Encoder) ContentType

func (enc *Encoder) ContentType() string

Return the MIME content type of the data

func (*Encoder) Encode

func (enc *Encoder) Encode(v any) error

Encode writes the struct to the multipart writer, including any File objects which are added as form data and excluding any fields with a tag of json:"-"

type File

type File struct {
	Path        string
	Body        io.Reader
	ContentType string               // optional MIME type
	Header      textproto.MIMEHeader // all part-level MIME headers
}

File is a file object, which is used to encode a file in a multipart request. ContentType is optional; when set it is used as the part Content-Type instead of the default application/octet-stream. Header holds all part-level MIME headers (e.g. Content-Disposition, Content-Type, and any custom headers); it is populated when decoding and merged during encoding.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL