Back to Devexpress

HighlightedAssemblyAttribute Class

corelibraries-devexpress-dot-dataaccess-dot-objectbinding-b11b5772.md

latest2.9 KB
Original Source

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

NuGet Package : DevExpress.DataAccess

Declaration

csharp
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
public sealed class HighlightedAssemblyAttribute :
    Attribute
vb
<AttributeUsage(AttributeTargets.Assembly, AllowMultiple:=False, Inherited:=False)>
Public NotInheritable Class HighlightedAssemblyAttribute
    Inherits 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:

csharp
using DevExpress.DataAccess.ObjectBinding;
// ...
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: HighlightedAssembly]
// ...
vb
Imports DevExpress.DataAccess.ObjectBinding
' ...
<Assembly: AssemblyTrademark("")> 
<Assembly: ComVisible(False)>
<Assembly: HighlightedAssembly> 
' ...

Inheritance

Object Attribute HighlightedAssemblyAttribute

See Also

HighlightedAssemblyAttribute Members

HighlightedClassAttribute

HighlightedMemberAttribute

DevExpress.DataAccess.ObjectBinding Namespace