Skip to main content
A newer version of this page is available. .

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.v19.2.dll

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.

data-access-object-binding-highlighted-assembly-attribute

In Visual Basic projects, add this attribute to the AssemblyInfo.vb file located in the My Project directory.

data-access-object-binding-highlighted-assembly-attribute-visual-basic

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]
// ...

Inheritance

Object
Attribute
HighlightedAssemblyAttribute
See Also