type mime/multipart.Reader
14 uses
mime/multipart (current package)
formdata.go#L30: func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
formdata.go#L34: func (r *Reader) readForm(maxMemory int64) (_ *Form, err error) {
multipart.go#L40: mr *Reader
multipart.go#L94: func NewReader(r io.Reader, boundary string) *Reader {
multipart.go#L96: return &Reader{
multipart.go#L123: func newPart(mr *Reader, rawPart bool) (*Part, error) {
multipart.go#L287: type Reader struct {
multipart.go#L305: func (r *Reader) NextPart() (*Part, error) {
multipart.go#L314: func (r *Reader) NextRawPart() (*Part, error) {
multipart.go#L318: func (r *Reader) nextPart(rawPart bool) (*Part, error) {
multipart.go#L381: func (mr *Reader) isFinalBoundary(line []byte) bool {
multipart.go#L390: func (mr *Reader) isBoundaryDelimiterLine(line []byte) (ret bool) {
net/http
request.go#L466: func (r *Request) MultipartReader() (*multipart.Reader, error) {
request.go#L477: func (r *Request) multipartReader(allowMixed bool) (*multipart.Reader, error) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |