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 Description
IBoundConfiguration<TRow>
Type Parameters
Name Description
TRow

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 Description
IBoundConfiguration<TRow>
Type Parameters
Name Description
TRow

ForDynamic()

Create a new IBoundConfiguration(T) with Options.DynamicDefault, for use with dynamic types.

Declaration
public static IBoundConfiguration<dynamic> ForDynamic()
Returns
Type Description
IBoundConfiguration<System.Object>

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
Type Description
IBoundConfiguration<System.Object>
In This Article
Back to top Generated by DocFX