Show / Hide Table of Contents

Interface IDataConversionContext

Contract interface for data conversion 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.Data.Conversion
Assembly: Kephas.Data.dll
Syntax
public interface IDataConversionContext : IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable

Properties

| Improve this Doc View Source

DataConversionService

Gets the data conversion service.

Declaration
IDataConversionService DataConversionService { get; }
Property Value
Type Description
IDataConversionService

The data conversion service.

| Improve this Doc View Source

DataSpace

Gets the data space.

Declaration
IDataSpace DataSpace { get; }
Property Value
Type Description
IDataSpace

The data space.

| Improve this Doc View Source

RootSourceType

Gets or sets the type of the root source.

Declaration
Type RootSourceType { get; set; }
Property Value
Type Description
System.Type

The type of the root source.

| Improve this Doc View Source

RootTargetType

Gets or sets the type of the root target.

Declaration
Type RootTargetType { get; set; }
Property Value
Type Description
System.Type

The type of the root target.

| Improve this Doc View Source

ThrowOnError

Gets or sets a value indicating whether to throw an exception when an error occurs.

Declaration
bool ThrowOnError { get; set; }
Property Value
Type Description
System.Boolean

true to throw an error on exceptions, false if not.

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)
DataConversionContextExtensions.GetDataContext(IDataConversionContext, Type)
DataConversionContextExtensions.GetDataContext(IDataConversionContext, Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX