HttpContextBase.AllowAsyncDuringSyncStages Property

Definition

When implemented in a derived class, 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 virtual bool AllowAsyncDuringSyncStages { get; set; }
member this.AllowAsyncDuringSyncStages : bool with get, set
Public Overridable 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.

Applies to