Skip to main content
All docs
V18.2

CustomAssemblyLoadingEventArgs.Path Property

Specifies the path to a custom assembly.

Namespace: DevExpress.DataAccess

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public string Path { get; }

Property Value

Type Description
String

A String value, specifying the path to a custom assembly.

Remarks

Because the CustomAssemblyLoadingEventArgs class has become obsolete, the Path property should no longer be used.

To permit loading a specific assembly, handle the EFDataSource.BeforeLoadCustomAssembly event (or static EFDataSource.BeforeLoadCustomAssemblyGlobal event) and specify the properties of the BeforeLoadCustomAssemblyEventArgs object.

An unauthorized attempt to load a custom assembly will result in throwing a CustomAssemblyLoadingProhibitedException.

See Also