Skip to main content
All docs
V25.1
  • SqlDataSource.BeforeLoadProviderCustomAssemblyGlobal Event

    Occurs on an attempt to load a provider custom assembly (the FireBirdConnectionParameters.ClientLibrary property value) by the Firebird data provider for SQL data sources.

    Namespace: DevExpress.DataAccess.Sql

    Assembly: DevExpress.DataAccess.v25.1.dll

    NuGet Package: DevExpress.DataAccess

    Declaration

    public static event BeforeLoadProviderCustomAssemblyEventHandler BeforeLoadProviderCustomAssemblyGlobal

    Event Data

    The BeforeLoadProviderCustomAssemblyGlobal event's data class is BeforeLoadProviderCustomAssemblyEventArgs. The following properties provide information specific to this event:

    Property Description
    AllowLoading Specifies whether loading a Firebird provider custom assembly is allowed.
    AssemblyPath Specifies the path to the requested Firebird provider assembly.

    Remarks

    Handle the BeforeLoadProviderCustomAssemblyGlobal event to validate all Firebird connection strings created in your applications.

    BeforeLoadProviderCustomAssemblyGlobal is raised before the SqlDataSource.BeforeLoadProviderCustomAssembly event.

    See Also