Class LinesSource
A ITextSource implementation that uses lines as input
Implements
Inherited Members
Namespace: FluentMigrator.Runner.BatchParser.Sources
Assembly: FluentMigrator.Runner.Core.dll
Syntax
public class LinesSource : ITextSource
Constructors
LinesSource(IEnumerable<string>)
Initializes a new instance of the LinesSource class.
Declaration
public LinesSource(IEnumerable<string> batchSource)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<string> | batchSource | The collection of lines to be used as source |
Methods
CreateReader()
Creates a reader
Declaration
public ILineReader CreateReader()
Returns
Type | Description |
---|---|
ILineReader |
|