C# Class Summer.Batch.Data.Parameter.PlaceholderGetter

Default implementation of IPlaceholderGetter.
Inheritance: IPlaceholderGetter
Mostrar archivo Open project: SummerBatch/SummerBatch

Public Methods

Method Description
GetPlaceholder ( string name ) : string

Gets the correct placeholder for a query parameter.

PlaceholderGetter ( string>.Func placeholderGetter, bool named ) : System

Constructs a new PlaceholderGetter.

Method Details

GetPlaceholder() public method

Gets the correct placeholder for a query parameter.
public GetPlaceholder ( string name ) : string
name string the name of the parameter
return string

PlaceholderGetter() public method

Constructs a new PlaceholderGetter.
public PlaceholderGetter ( string>.Func placeholderGetter, bool named ) : System
placeholderGetter string>.Func a function that takes a parameter name and return its placeholder
named bool whether the new is named
return System