corelibraries-devexpress-dot-dataaccess-dot-objectbinding-b11b5772.md
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
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
public sealed class HighlightedAssemblyAttribute :
Attribute
<AttributeUsage(AttributeTargets.Assembly, AllowMultiple:=False, Inherited:=False)>
Public NotInheritable Class HighlightedAssemblyAttribute
Inherits Attribute
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]
// ...
Imports DevExpress.DataAccess.ObjectBinding
' ...
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
<Assembly: HighlightedAssembly>
' ...
Object Attribute HighlightedAssemblyAttribute
See Also