Interface IDataConversionContext
Contract interface for data conversion contexts.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
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 SourceDataConversionService
Gets the data conversion service.
Declaration
IDataConversionService DataConversionService { get; }
Property Value
Type | Description |
---|---|
IDataConversionService | The data conversion service. |
DataSpace
Gets the data space.
Declaration
IDataSpace DataSpace { get; }
Property Value
Type | Description |
---|---|
IDataSpace | The data space. |
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. |
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. |
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 |
|