Class AssetAdministrationShell
An asset administration shell.
Inheritance
Implements
Inherited Members
Namespace: AasCore.Aas3_0_RC02
Assembly: AasCore.Aas3_0_RC02.dll
Syntax
public class AssetAdministrationShell : IAssetAdministrationShell, IIdentifiable, IReferable, IHasExtensions, IHasDataSpecification, IClass
Constructors
| Improve this Doc View SourceAssetAdministrationShell(String, IAssetInformation, List<IExtension>, String, String, List<ILangString>, List<ILangString>, String, IAdministrativeInformation, List<IEmbeddedDataSpecification>, IReference, List<IReference>)
Declaration
public AssetAdministrationShell(string id, IAssetInformation assetInformation, List<IExtension> extensions = null, string category = null, string idShort = null, List<ILangString> displayName = null, List<ILangString> description = null, string checksum = null, IAdministrativeInformation administration = null, List<IEmbeddedDataSpecification> embeddedDataSpecifications = null, IReference derivedFrom = null, List<IReference> submodels = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | id | |
| IAssetInformation | assetInformation | |
| System.Collections.Generic.List<IExtension> | extensions | |
| System.String | category | |
| System.String | idShort | |
| System.Collections.Generic.List<ILangString> | displayName | |
| System.Collections.Generic.List<ILangString> | description | |
| System.String | checksum | |
| IAdministrativeInformation | administration | |
| System.Collections.Generic.List<IEmbeddedDataSpecification> | embeddedDataSpecifications | |
| IReference | derivedFrom | |
| System.Collections.Generic.List<IReference> | submodels |
Properties
| Improve this Doc View SourceAdministration
Administrative information of an identifiable element.
Declaration
public IAdministrativeInformation Administration { get; set; }
Property Value
| Type | Description |
|---|---|
| IAdministrativeInformation |
Remarks
Some of the administrative information like the version number might need to be part of the identification.
AssetInformation
Meta-information about the asset the AAS is representing.
Declaration
public IAssetInformation AssetInformation { get; set; }
Property Value
| Type | Description |
|---|---|
| IAssetInformation |
Category
The category is a value that gives further meta information w.r.t. to the class of the element. It affects the expected existence of attributes and the applicability of constraints.
Declaration
public string Category { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Remarks
The category is not identical to the semantic definition (IHasSemantics) of an element. The category e.g. could denote that the element is a measurement value whereas the semantic definition of the element would denote that it is the measured temperature.
Checksum
Checksum to be used to determine if an Referable (including its aggregated child elements) has changed.
Declaration
public string Checksum { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Remarks
The checksum is calculated by the user's tool environment. The checksum has no semantic meaning for an asset administration shell model and there is no requirement for asset administration shell tools to manage the checksum
DerivedFrom
The reference to the AAS the AAS was derived from.
Declaration
public IReference DerivedFrom { get; set; }
Property Value
| Type | Description |
|---|---|
| IReference |
Description
Description or comments on the element.
Declaration
public List<ILangString> Description { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<ILangString> |
Remarks
The description can be provided in several languages.
If no description is defined, then the definition of the concept description that defines the semantics of the element is used.
Additional information can be provided, e.g., if the element is qualified and which qualifier types can be expected in which context or which additional data specification templates are provided.
DisplayName
Display name. Can be provided in several languages.
Declaration
public List<ILangString> DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<ILangString> |
Remarks
If no display name is defined in the language requested by the application, then the display name is selected in the following order if available:
- the preferred name in the requested language of the concept description defining the semantics of the element
- If there is a default language list defined in the application, then the corresponding preferred name in the language is chosen according to this order.
- the English preferred name of the concept description defining the semantics of the element
- the short name of the concept description
- the IdShort of the element
EmbeddedDataSpecifications
Embedded data specification.
Declaration
public List<IEmbeddedDataSpecification> EmbeddedDataSpecifications { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<IEmbeddedDataSpecification> |
Extensions
An extension of the element.
Declaration
public List<IExtension> Extensions { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<IExtension> |
Id
The globally unique identification of the element.
Declaration
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
IdShort
In case of identifiables this attribute is a short name of the element. In case of referable this ID is an identifying string of the element within its name space.
Declaration
public string IdShort { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Remarks
In case the element is a property and the property has a semantic definition (SemanticId) conformant to IEC61360 the IdShort is typically identical to the short name in English.
Submodels
References to submodels of the AAS.
Declaration
public List<IReference> Submodels { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<IReference> |
Remarks
A submodel is a description of an aspect of the asset the AAS is representing.
The asset of an AAS is typically described by one or more submodels.
Temporarily no submodel might be assigned to the AAS.
Methods
| Improve this Doc View SourceAccept(Visitation.IVisitor)
Accept the visitor to visit this instance
for double dispatch.
Declaration
public void Accept(Visitation.IVisitor visitor)
Parameters
| Type | Name | Description |
|---|---|---|
| Visitation.IVisitor | visitor |
Accept<TContext>(Visitation.IVisitorWithContext<TContext>, TContext)
Accept the visitor to visit this instance for double dispatch
with the context.
Declaration
public void Accept<TContext>(Visitation.IVisitorWithContext<TContext> visitor, TContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| Visitation.IVisitorWithContext<TContext> | visitor | |
| TContext | context |
Type Parameters
| Name | Description |
|---|---|
| TContext |
Descend()
Iterate recursively over all the class instances referenced from this instance.
Declaration
public IEnumerable<IClass> Descend()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<IClass> |
DescendOnce()
Iterate over all the class instances referenced from this instance without further recursion.
Declaration
public IEnumerable<IClass> DescendOnce()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<IClass> |
OverDescriptionOrEmpty()
Iterate over Description, if set, and otherwise return an empty enumerable.
Declaration
public IEnumerable<ILangString> OverDescriptionOrEmpty()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<ILangString> |
OverDisplayNameOrEmpty()
Iterate over DisplayName, if set, and otherwise return an empty enumerable.
Declaration
public IEnumerable<ILangString> OverDisplayNameOrEmpty()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<ILangString> |
OverEmbeddedDataSpecificationsOrEmpty()
Iterate over EmbeddedDataSpecifications, if set, and otherwise return an empty enumerable.
Declaration
public IEnumerable<IEmbeddedDataSpecification> OverEmbeddedDataSpecificationsOrEmpty()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<IEmbeddedDataSpecification> |
OverExtensionsOrEmpty()
Iterate over Extensions, if set, and otherwise return an empty enumerable.
Declaration
public IEnumerable<IExtension> OverExtensionsOrEmpty()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<IExtension> |
OverSubmodelsOrEmpty()
Iterate over Submodels, if set, and otherwise return an empty enumerable.
Declaration
public IEnumerable<IReference> OverSubmodelsOrEmpty()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<IReference> |
Transform<T>(Visitation.ITransformer<T>)
Accept the transformer to transform this instance
for double dispatch.
Declaration
public T Transform<T>(Visitation.ITransformer<T> transformer)
Parameters
| Type | Name | Description |
|---|---|---|
| Visitation.ITransformer<T> | transformer |
Returns
| Type | Description |
|---|---|
| T |
Type Parameters
| Name | Description |
|---|---|
| T |
Transform<TContext, T>(Visitation.ITransformerWithContext<TContext, T>, TContext)
Accept the transformer to visit this instance
for double dispatch with the context.
Declaration
public T Transform<TContext, T>(Visitation.ITransformerWithContext<TContext, T> transformer, TContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| Visitation.ITransformerWithContext<TContext, T> | transformer | |
| TContext | context |
Returns
| Type | Description |
|---|---|
| T |
Type Parameters
| Name | Description |
|---|---|
| TContext | |
| T |