Skip to main content
All docs
V24.2

AsyncDownloadPolicy.SuppressAll() Method

In This Article

Suppresses all downloads.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v24.2.dll

NuGet Package: DevExpress.Data

#Declaration

public static void SuppressAll()

#Remarks

Call the SuppressAll method at application startup to apply a restrictive policy:

static void Main() {
    DevExpress.Data.AsyncDownloadPolicy.SuppressAll();  
    Application.Run(new Form1());  
}

Read the following topic for detailed information and examples: Suppress Control Requests to Download Data from External URLs.

See Also