HighlightedAssemblyAttribute Class
When applied to an assembly, includes the corresponding item in the list of highlighted assemblies in the Data Source Wizard.
Namespace: DevExpress.DataAccess.ObjectBinding
Assembly: DevExpress.DataAccess.v24.1.dll
NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap
Declaration
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
public sealed class HighlightedAssemblyAttribute :
Attribute
Example
To apply the HighlightedAssemblyAttribute
, add it to the AssemblyInfo.cs file located in the project’s Properties directory.
In Visual Basic projects, add this attribute to the AssemblyInfo.vb file located in the My Project directory.
Adding this attribute requires referencing the DevExpress.DataAccess.ObjectBinding namespace that resides within the DevExpress.DataAccess assembly, as follows:
using DevExpress.DataAccess.ObjectBinding;
// ...
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: HighlightedAssembly]
// ...