Azavea.Open.DAO.CSV.CsvDescriptor.CsvDescriptor C# (CSharp) Method

CsvDescriptor() public method

Creates a descriptor for the given path. If the path may either be a file or a directory, see CsvConnectionType for descriptions of the behavior in either case. Allows you to specify the verbosity of quotes when we write the file.
public CsvDescriptor ( CsvConnectionType type, string path, CsvQuoteLevel quoteLevel ) : System
type CsvConnectionType Which type is it, a file or a directory.
path string Path to the CSV file or directory. Will be created if it does not exist.
quoteLevel CsvQuoteLevel How verbosely do we quote values we write.
return System
        public CsvDescriptor(CsvConnectionType type, string path, CsvQuoteLevel quoteLevel)
            : this(type, path, null, null, quoteLevel)
        {
        }

Same methods

CsvDescriptor::CsvDescriptor ( Config config, string component, ConnectionInfoDecryptionDelegate decryptionDelegate ) : System
CsvDescriptor::CsvDescriptor ( CsvConnectionType type, string path ) : System
CsvDescriptor::CsvDescriptor ( CsvConnectionType type, string path, TextWriter writer, StreamReader reader, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( StreamReader reader ) : System
CsvDescriptor::CsvDescriptor ( StreamReader reader, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( TextWriter writer ) : System
CsvDescriptor::CsvDescriptor ( TextWriter writer, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( string path ) : System
CsvDescriptor::CsvDescriptor ( string path, CsvQuoteLevel quoteLevel ) : System