Class DataCategoryAttribute
This class provides a custom attribute used to annotated fields of Business Objects with a data category.
Inheritance
System.Object
DataCategoryAttribute
Namespace: BO4E.meta
Assembly: BO4Enet.dll
Syntax
public class DataCategoryAttribute : Attribute
Examples
public class Ansprechpartner : BusinessObject
{
...
[DataCategory(DataCategory.NAME)]
public string nachname;
...
[DataCategory(DataCategory.ADDRESS)]
public string eMailAdresse;
...
}
Constructors
| Improve this Doc View SourceDataCategoryAttribute(Object[])
Declaration
public DataCategoryAttribute(params object[] enums)
Parameters
Type | Name | Description |
---|---|---|
System.Object[] | enums |
Properties
| Improve this Doc View SourceMapping
contains those DataCategories (DataCategory) annotated to the field.
Declaration
public HashSet<Enum> Mapping { get; set; }
Property Value
Type | Description |
---|---|
HashSet<Enum> |