type mime/multipart.Reader
14 uses
mime/multipart (current package)
formdata.go#L32: func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
formdata.go#L41: func (r *Reader) readForm(maxMemory int64) (_ *Form, err error) {
multipart.go#L58: mr *Reader
multipart.go#L119: func NewReader(r io.Reader, boundary string) *Reader {
multipart.go#L121: return &Reader{
multipart.go#L148: func newPart(mr *Reader, rawPart bool, maxMIMEHeaderSize, maxMIMEHeaders int64) (*Part, error) {
multipart.go#L333: type Reader struct {
multipart.go#L371: func (r *Reader) NextPart() (*Part, error) {
multipart.go#L380: func (r *Reader) NextRawPart() (*Part, error) {
multipart.go#L384: func (r *Reader) nextPart(rawPart bool, maxMIMEHeaderSize, maxMIMEHeaders int64) (*Part, error) {
multipart.go#L447: func (r *Reader) isFinalBoundary(line []byte) bool {
multipart.go#L456: func (r *Reader) isBoundaryDelimiterLine(line []byte) (ret bool) {
net/http
request.go#L475: func (r *Request) MultipartReader() (*multipart.Reader, error) {
request.go#L486: func (r *Request) multipartReader(allowMixed bool) (*multipart.Reader, error) {
|
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. |