TextLoaderSaverCatalog Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Collection of extension methods for the DataOperationsCatalog to read from delimited text
files such as csv and tsv.
In this article
public static class TextLoaderSaverCatalog
type TextLoaderSaverCatalog = class
Public Module TextLoaderSaverCatalog
Inheritance
Methods
CreateTextLoader(DataOperationsCatalog, TextLoader+Column[], Char, Boolean, IMultiStreamSource, Boolean, Boolean, Boolean)
Create a text loader TextLoader .
CreateTextLoader(DataOperationsCatalog, TextLoader+Options, IMultiStreamSource)
Create a text loader TextLoader .
CreateTextLoader<TInput>(DataOperationsCatalog, Char, Boolean, IMultiStreamSource, Boolean, Boolean, Boolean)
Create a text loader TextLoader by inferencing the dataset schema from a data model type.
CreateTextLoader<TInput>(DataOperationsCatalog, TextLoader+Options, IMultiStreamSource)
Create a text loader TextLoader by inferencing the dataset schema from a data model type.
LoadFromTextFile(DataOperationsCatalog, String, TextLoader+Column[], Char, Boolean, Boolean, Boolean, Boolean)
Load a IDataView from a text file using TextLoader .
Note that IDataView 's are lazy, so no actual loading happens here, just schema validation.
LoadFromTextFile(DataOperationsCatalog, String, TextLoader+Options)
Load a IDataView from a text file using TextLoader .
Note that IDataView 's are lazy, so no actual loading happens here, just schema validation.
LoadFromTextFile<TInput>(DataOperationsCatalog, String, Char, Boolean, Boolean, Boolean, Boolean)
Load a IDataView from a text file using TextLoader .
Note that IDataView 's are lazy, so no actual loading happens here, just schema validation.
LoadFromTextFile<TInput>(DataOperationsCatalog, String, TextLoader+Options)
Load a IDataView from a text file using TextLoader .
Note that IDataView 's are lazy, so no actual loading happens here, just schema validation.
SaveAsText(DataOperationsCatalog, IDataView, Stream, Char, Boolean, Boolean, Boolean, Boolean)
Save the IDataView as text.
Applies to