Skip to main content
All docs
V24.2

RegistryAccessPolicy.SuppressReadOperations() Method

Suppresses read operations from the system registry.

Namespace: DevExpress.Data.Utils

Assembly: DevExpress.Data.Desktop.v24.2.dll

Declaration

public static void SuppressReadOperations()

Remarks

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

static void Main() {
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    DevExpress.Data.Utils.RegistryAccessPolicy.SuppressReadOperations();
    Application.Run(new Form1());
}

Read the following topic for additional information: Registry Access Policy.

See Also