AsyncPreloadModeFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the mode for asynchronous requests.
This enumeration supports a bitwise combination of its member values.
public enum class AsyncPreloadModeFlags
[System.Flags]
public enum AsyncPreloadModeFlags
[<System.Flags>]
type AsyncPreloadModeFlags =
Public Enum AsyncPreloadModeFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No asynchronous upload of the request entity body will occur. |
Form | 1 | Asynchronous uploads of the request entity body will occur only for form posts. This flag enables asynchronous preloading for MIME types that are specifically set to |
FormMultiPart | 2 | Asynchronous uploads of the request entity body will occur only for multi-part form data. This flag enables asynchronous preloading for MIME types that are specifically set to |
AllFormTypes | 3 | Asynchronous uploads of the request entity body will occur only for form posts. |
NonForm | 4 | Asynchronous uploads of the request entity body will occur only for non-form posts. |
All | 7 | Asynchronous uploads of the request entity body will occur for all posts. |