Skip to main content
.NET 6.0+

CustomCheckCompatibilityEventArgs(Boolean, IObjectSpaceProvider, IList<ModuleBase>, String) Constructor

Initializes a new instance of the CustomCheckCompatibilityEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public CustomCheckCompatibilityEventArgs(
    bool isCompatibilityChecked,
    IObjectSpaceProvider objectSpaceProvider,
    IList<ModuleBase> modules,
    string applicationName
)

Parameters

Name Type Description
isCompatibilityChecked Boolean

A Boolean value which indicates whether a compatibility check has already been performed. This parameter’s value is assigned to the CustomCheckCompatibilityEventArgs.IsCompatibilityChecked property.

objectSpaceProvider IObjectSpaceProvider

An IObjectSpaceProvider object representing the Object Space Provider to be used for compatibility checking purposes. This parameter’s value is assigned to the CustomCheckCompatibilityEventArgs.ObjectSpaceProvider property.

modules IList<ModuleBase>

A ModuleList collection that contains all modules used in the current application. This parameter’s value is assigned to the CustomCheckCompatibilityEventArgs.Modules property.

applicationName String

A string value that represents the application’s name. This parameter’s value is assigned to the CustomCheckCompatibilityEventArgs.ApplicationName property.

See Also