AsyncPreloadModeFlags Enum

Definition

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
AsyncPreloadModeFlags
Attributes

Fields

All 7

Asynchronous uploads of the request entity body will occur for all posts.

AllFormTypes 3

Asynchronous uploads of the request entity body will occur only for form posts.

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 application/x-www-form-urlencoded.

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 multipart/form-data.

None 0

No asynchronous upload of the request entity body will occur.

NonForm 4

Asynchronous uploads of the request entity body will occur only for non-form posts.

Applies to