HttpContextWrapper.AllowAsyncDuringSyncStages Property
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.
Gets or sets a value that indicates whether asynchronous operations are allowed during parts of ASP.NET request processing when they are not expected.
public:
virtual property bool AllowAsyncDuringSyncStages { bool get(); void set(bool value); };
public override bool AllowAsyncDuringSyncStages { get; set; }
member this.AllowAsyncDuringSyncStages : bool with get, set
Public Overrides Property AllowAsyncDuringSyncStages As Boolean
Property Value
false
if ASP.NET will throw an exception when the asynchronous API is used at a time when it is not expected; otherwise, true
. The default value is false
.
Remarks
For more information, see HttpContext.AllowAsyncDuringSyncStages.