Class MultipartFormCollection
Represents an class which hosts an multipart form data contents.
public sealed class MultipartFormCollection : IReadOnlyList<MultipartObject>, IReadOnlyCollection<MultipartObject>, IEnumerable<MultipartObject>, IReadOnlyDictionary<string, MultipartObject>, IReadOnlyCollection<KeyValuePair<string, MultipartObject>>, IEnumerable<KeyValuePair<string, MultipartObject>>, IEnumerable
- Inheritance
-
MultipartFormCollection
- Implements
- Inherited Members
Properties
Methods
- GetItem(string)
Gets the last form item by their name. The search is case-insensitive.
- GetItems(string)
Gets all form items that shares the specified name. The search is case-insensitive.
- GetStringValue(string)
Gets an StringValue object from the form item content string. This method reads the contents of the last matched last item with the request encoding.
- ToArray()
Creates an array with the MultipartObject in this collection.