Show / Hide Table of Contents

Interface IModelConstructionContext

Contract for model construction contexts.

Inherited Members
IContext.CompositionContext
IContext.AmbientServices
IContext.Identity
IExpando.HasDynamicMember(String)
IExpando.ToDictionary(Func<String, String>, Func<Object, Object>)
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
IIndexable.Item[String]
ILoggable.Logger
System.IDisposable.Dispose()
Namespace: Kephas.Model.Construction
Assembly: Kephas.Model.dll
Syntax
public interface IModelConstructionContext : IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable

Properties

| Improve this Doc View Source

ConstructedClassifiers

Gets or sets the constructed classifiers.

Declaration
IEnumerable<IClassifier> ConstructedClassifiers { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<IClassifier>

The constructed classifiers.

Remarks

This is not intended to be modified outside the framework.

| Improve this Doc View Source

ElementInfos

Gets the element infos.

Declaration
IEnumerable<IElementInfo> ElementInfos { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<IElementInfo>

The element infos.

| Improve this Doc View Source

ModelSpace

Gets the model space.

Declaration
IModelSpace ModelSpace { get; }
Property Value
Type Description
IModelSpace

The model space.

| Improve this Doc View Source

RuntimeModelElementFactory

Gets or sets the model element factory.

Declaration
IRuntimeModelElementFactory RuntimeModelElementFactory { get; set; }
Property Value
Type Description
IRuntimeModelElementFactory

The model element factory.

| Improve this Doc View Source

TryGetModelElementInfo

Gets or sets a function to try to get a model element based on a native element information.

Declaration
Func<IElementInfo, IElementInfo> TryGetModelElementInfo { get; set; }
Property Value
Type Description
System.Func<IElementInfo, IElementInfo>

A function for getting a model element.

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)
MessageBrokerExtensions.CreateBrokeredMessageBuilder(IContext)
ContextExtensions.InitialData(IContext)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<(Object entity, ChangeState changeState)>)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<Object>)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<IChangeStateTrackableEntityEntry>)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX