Show / Hide Table of Contents

Class ValueType

Classifier definition for a value type.

Inheritance
System.Object
System.Dynamic.DynamicObject
ExpandoBase
Expando
NamedElementBase<IValueType>
ModelElementBase<IValueType>
ClassifierBase<IValueType>
ValueType
Implements
IValueType
IClassifier
IModelElement
INamedElement
IAggregatedElementInfo
ITypeInfo
IElementInfo
IExpando
System.Dynamic.IDynamicMetaObjectProvider
IIndexable
IAttributeProvider
Inherited Members
ClassifierBase<IValueType>.Projection
ClassifierBase<IValueType>.Properties
ClassifierBase<IValueType>.Methods
ClassifierBase<IValueType>.ITypeInfo.Members
ClassifierBase<IValueType>.IsMixin
ClassifierBase<IValueType>.BaseClassifier
ClassifierBase<IValueType>.BaseMixins
ClassifierBase<IValueType>.IsAspect
ClassifierBase<IValueType>.Namespace
ClassifierBase<IValueType>.ITypeInfo.BaseTypes
ClassifierBase<IValueType>.GenericTypeParameters
ClassifierBase<IValueType>.GenericTypeArguments
ClassifierBase<IValueType>.GenericTypeDefinition
ClassifierBase<IValueType>.ITypeInfo.Properties
ClassifierBase<IValueType>.IsAspectOf(IClassifier)
ClassifierBase<IValueType>.ITypeInfo.GetMember(String, Boolean)
ClassifierBase<IValueType>.CreateInstance(IEnumerable<Object>)
ClassifierBase<IValueType>.MakeGenericType(IEnumerable<ITypeInfo>, IContext)
ClassifierBase<IValueType>.ComputeIsMixin()
ClassifierBase<IValueType>.ComputeIsAspect()
ClassifierBase<IValueType>.ComputeIsAspectOf()
ClassifierBase<IValueType>.OnCompleteConstruction(IModelConstructionContext)
ClassifierBase<IValueType>.ComputeBaseTypes(IModelConstructionContext, IList<ITypeInfo>)
ClassifierBase<IValueType>.ComputeBaseClassifier(IModelConstructionContext, IEnumerable<ITypeInfo>)
ClassifierBase<IValueType>.ComputeBaseMixins(IModelConstructionContext, IEnumerable<ITypeInfo>)
ModelElementBase<IValueType>.Members
ModelElementBase<IValueType>.Annotations
ModelElementBase<IValueType>.GetMember(String, Boolean)
ModelElementBase<IValueType>.AddMember(INamedElement)
NamedElementBase<IValueType>.Logger
NamedElementBase<IValueType>.Name
NamedElementBase<IValueType>.IElementInfo.DeclaringContainer
NamedElementBase<IValueType>.IElementInfo.Annotations
NamedElementBase<IValueType>.IAggregatedElementInfo.Parts
NamedElementBase<IValueType>.QualifiedFullName
NamedElementBase<IValueType>.FullName
NamedElementBase<IValueType>.DeclaringContainer
NamedElementBase<IValueType>.ModelSpace
NamedElementBase<IValueType>.IsInherited
NamedElementBase<IValueType>.ConstructionMonitor
NamedElementBase<IValueType>.Parts
NamedElementBase<IValueType>.ToString()
NamedElementBase<IValueType>.GetAttributes<TAttribute>()
NamedElementBase<IValueType>.AddPart(Object)
ExpandoBase.Item[String]
ExpandoBase.GetDynamicMemberNames()
ExpandoBase.HasDynamicMember(String)
ExpandoBase.TryGetMember(GetMemberBinder, Object)
ExpandoBase.TrySetMember(SetMemberBinder, Object)
ExpandoBase.TryInvokeMember(InvokeMemberBinder, Object[], Object)
ExpandoBase.ToDictionary(Func<String, String>, Func<Object, Object>)
ExpandoBase.GetInnerObjectTypeInfo()
ExpandoBase.GetThisTypeInfo()
ExpandoBase.TryGetValue(String, Object)
ExpandoBase.TrySetValue(String, Object)
System.Dynamic.DynamicObject.GetMetaObject(System.Linq.Expressions.Expression)
System.Dynamic.DynamicObject.TryBinaryOperation(System.Dynamic.BinaryOperationBinder, System.Object, System.Object)
System.Dynamic.DynamicObject.TryConvert(System.Dynamic.ConvertBinder, System.Object)
System.Dynamic.DynamicObject.TryCreateInstance(System.Dynamic.CreateInstanceBinder, System.Object[], System.Object)
System.Dynamic.DynamicObject.TryDeleteIndex(System.Dynamic.DeleteIndexBinder, System.Object[])
System.Dynamic.DynamicObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)
System.Dynamic.DynamicObject.TryGetIndex(System.Dynamic.GetIndexBinder, System.Object[], System.Object)
System.Dynamic.DynamicObject.TryInvoke(System.Dynamic.InvokeBinder, System.Object[], System.Object)
System.Dynamic.DynamicObject.TrySetIndex(System.Dynamic.SetIndexBinder, System.Object[], System.Object)
System.Dynamic.DynamicObject.TryUnaryOperation(System.Dynamic.UnaryOperationBinder, System.Object)
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)
Namespace: Kephas.Model.Elements
Assembly: Kephas.Model.dll
Syntax
public class ValueType : ClassifierBase<IValueType>, IConstructibleElement, IValueType, IClassifier, IModelElement, INamedElement, IAggregatedElementInfo, ITypeInfo, IElementInfo, IExpando, IDynamicMetaObjectProvider, IIndexable, IAttributeProvider

Constructors

| Improve this Doc View Source

ValueType(IModelConstructionContext, String)

Initializes a new instance of the ValueType class.

Declaration
public ValueType(IModelConstructionContext constructionContext, string name)
Parameters
Type Name Description
IModelConstructionContext constructionContext

Context for the construction.

System.String name

The name.

Properties

| Improve this Doc View Source

IsComplex

Gets a value indicating whether the value type representing a complex value, like a structure consisting of multiple properties.

Declaration
public bool IsComplex { get; }
Property Value
Type Description
System.Boolean
Remarks

If a value type is not a simple type, then it is a complex type.

| Improve this Doc View Source

IsPrimitive

Gets a value indicating whether the value type represents a primitive value, like an integer or a string.

Declaration
public bool IsPrimitive { get; }
Property Value
Type Description
System.Boolean

Implements

IValueType
IClassifier
IModelElement
INamedElement
IAggregatedElementInfo
ITypeInfo
IElementInfo
IExpando
System.Dynamic.IDynamicMetaObjectProvider
IIndexable
IAttributeProvider

Extension Methods

DynamicObjectExtensions.SetPropertyValue(Object, String, Object)
DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)
DynamicObjectExtensions.GetPropertyValue(Object, String)
DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)
DynamicObjectExtensions.GetRuntimeTypeInfo(Object)
DynamicObjectExtensions.ToDynamic(Object)
DynamicObjectExtensions.ToExpando(Object)
BehaviorValue.ToBehaviorValue<TValue>(TValue)
CollectionExtensions.AddRange<T, TItem>(T, IEnumerable<TItem>)
LoggingExtensions.GetLogger(Object, IContext)
TypeExtensions.GetAbstractType(Object)
TypeExtensions.GetAbstractTypeInfo(Object)
ReflectionHelper.GetTypeInfo(Object)
ModelElementExtensions.GetDeclaredMembers(IModelElement)
RuntimeTypeInfoExtensions.IsExcludedFromModel(IAttributeProvider)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX