AsyncPreloadModeFlags 枚举
定义
对于异步请求指定该模式。Specifies the mode for asynchronous requests.
此枚举有一个 FlagsAttribute 属性,允许按位组合成员值。
public enum class AsyncPreloadModeFlags
[System.Flags]
public enum AsyncPreloadModeFlags
type AsyncPreloadModeFlags =
Public Enum AsyncPreloadModeFlags
- 继承
- 属性
字段
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. 标志可使指定设置为 application/x-www-form-urlencoded |
FormMultiPart | 2 | 仅多部分窗体数据会进行请求实体正文的异步上传。Asynchronous uploads of the request entity body will occur only for multi-part form data. 此标志可使指定设置为 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. |