Class Configuration
Used to combine a type and an Options into an IBoundConfiguration(T),
which can create readers and writers.
Inheritance
System.Object
Configuration
Namespace: Cesil
Assembly: Cesil.dll
Syntax
public static class Configuration : Object
Methods
For<TRow>()
Create a new IBoundConfiguration(TRow) with Options.Default, for
use with the given type.
Declaration
public static IBoundConfiguration<TRow> For<TRow>()
Returns
Type Parameters
For<TRow>(Options)
Create a new IBoundConfiguration(T) with the given Options, for
use with the given type.
Declaration
public static IBoundConfiguration<TRow> For<TRow>(Options options)
Parameters
Type |
Name |
Description |
Options |
options |
|
Returns
Type Parameters
ForDynamic()
Create a new IBoundConfiguration(T) with Options.DynamicDefault, for use
with dynamic types.
Declaration
public static IBoundConfiguration<dynamic> ForDynamic()
Returns
ForDynamic(Options)
Create a new IBoundConfiguration(T) with given Options, for use
with dynamic types.
Declaration
public static IBoundConfiguration<dynamic> ForDynamic(Options options)
Parameters
Type |
Name |
Description |
Options |
options |
|
Returns