Class AdministrativeInformation
Administrative meta-information for an element like version
information.
Inheritance
System.Object
AdministrativeInformation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: AasCore.Aas3_0.dll
public class AdministrativeInformation : IAdministrativeInformation, IHasDataSpecification, IClass
Constructors
|
Improve this Doc
View Source
Declaration
public AdministrativeInformation(List<IEmbeddedDataSpecification> embeddedDataSpecifications = null, string version = null, string revision = null, IReference creator = null, string templateId = null)
Parameters
Type |
Name |
Description |
System.Collections.Generic.List<IEmbeddedDataSpecification> |
embeddedDataSpecifications |
|
System.String |
version |
|
System.String |
revision |
|
IReference |
creator |
|
System.String |
templateId |
|
Properties
|
Improve this Doc
View Source
The subject ID of the subject responsible for making the element.
Declaration
public IReference Creator { get; set; }
Property Value
|
Improve this Doc
View Source
Embedded data specification.
Declaration
public List<IEmbeddedDataSpecification> EmbeddedDataSpecifications { get; set; }
Property Value
|
Improve this Doc
View Source
Declaration
public string Revision { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Identifier of the template that guided the creation of the element.
Declaration
public string TemplateId { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Declaration
public string Version { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
Accept the visitor
to visit this instance
for double dispatch.
Declaration
public void Accept(Visitation.IVisitor visitor)
Parameters
|
Improve this Doc
View Source
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 Parameters
Name |
Description |
TContext |
|
|
Improve this Doc
View Source
Iterate recursively over all the class instances referenced from this instance.
Declaration
public IEnumerable<IClass> Descend()
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<IClass> |
|
|
Improve this Doc
View Source
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> |
|
|
Improve this Doc
View Source
Iterate over EmbeddedDataSpecifications, if set, and otherwise return an empty enumerable.
Declaration
public IEnumerable<IEmbeddedDataSpecification> OverEmbeddedDataSpecificationsOrEmpty()
Returns
|
Improve this Doc
View Source
Accept the transformer
to transform this instance
for double dispatch.
Declaration
public T Transform<T>(Visitation.ITransformer<T> transformer)
Parameters
Returns
Type Parameters
|
Improve this Doc
View Source
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
Returns
Type Parameters
Name |
Description |
TContext |
|
T |
|
Implements