d@2: d@2: d@2: d@2: CsvHelper d@2: d@2: d@2: d@2: d@2: Represents errors that occur due to bad data. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Creates CsvHelper classes. d@2: d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv parser. d@2: The configuration to use for the csv parser. d@2: The created parser. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv parser. d@2: The created parser. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv reader. d@2: The configuration to use for the reader. d@2: The created reader. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv reader. d@2: The created reader. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The parser used to create the reader. d@2: The created reader. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text writer to use for the csv writer. d@2: The configuration to use for the writer. d@2: The created writer. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text writer to use for the csv writer. d@2: The created writer. d@2: d@2: d@2: d@2: Represents errors that occur in CsvHelper. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Represents an error caused because a field is missing d@2: in the header while reading a CSV file. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Parses a CSV file. d@2: d@2: d@2: d@2: d@2: Gets the configuration. d@2: d@2: d@2: d@2: d@2: Gets the field count. d@2: d@2: d@2: d@2: d@2: Gets the character position that the parser is currently on. d@2: d@2: d@2: d@2: d@2: Gets the byte position that the parser is currently on. d@2: d@2: d@2: d@2: d@2: Gets the row of the CSV file that the parser is currently on. d@2: This is the logical CSV row. d@2: d@2: d@2: d@2: d@2: Gets the row of the CSV file that the parser is currently on. d@2: This is the actual file row. d@2: d@2: d@2: d@2: d@2: Gets the raw row for the current record that was parsed. d@2: d@2: d@2: d@2: d@2: Creates a new parser using the given . d@2: d@2: The with the CSV file data. d@2: d@2: d@2: d@2: Creates a new parser using the given d@2: and . d@2: d@2: The with the CSV file data. d@2: The configuration. d@2: d@2: d@2: d@2: Reads a record from the CSV file. d@2: d@2: A of fields for the record read. d@2: If there are no more records, null is returned. d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: 2 d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: True if the instance needs to be disposed of. d@2: d@2: d@2: d@2: Checks if the instance has been disposed of. d@2: d@2: d@2: d@2: d@2: d@2: Adds the field to the current record. d@2: d@2: The record position to add the field to. d@2: The field to add. d@2: d@2: d@2: d@2: Appends the current buffer data to the field. d@2: d@2: The field to append the current buffer to. d@2: The start position in the buffer that the . d@2: The length. d@2: d@2: d@2: d@2: Updates the byte position using the data from the reader buffer. d@2: d@2: The field start position. d@2: The length. d@2: d@2: d@2: d@2: Reads the next line. d@2: d@2: The line separated into fields. d@2: d@2: d@2: d@2: Gets the current character from the buffer while d@2: advancing the buffer if it ran out. d@2: d@2: The char that gets the read char set to. d@2: The start position of the current field. d@2: The start position of the raw field. d@2: The field. d@2: A value indicating if the previous char read was a delimiter. d@2: The position in the record we are currently at. d@2: The length of the field in the buffer. d@2: A value indicating if the row is current a comment row. d@2: A value indicating if this call is a peek. If true and the end of the record was found d@2: no record handling will be done. d@2: A value indicating if read a char was read. True if a char was read, otherwise false. d@2: d@2: d@2: d@2: Reads the Excel seperator and sets it to the delimiter. d@2: d@2: d@2: d@2: d@2: Represents errors that occur while parsing a CSV file. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Reads data that was parsed from . d@2: d@2: d@2: d@2: d@2: Gets the configuration. d@2: d@2: d@2: d@2: d@2: Gets the parser. d@2: d@2: d@2: d@2: d@2: Gets the field headers. d@2: d@2: d@2: d@2: d@2: Get the current record; d@2: d@2: d@2: d@2: d@2: Gets the current row. d@2: d@2: d@2: d@2: d@2: Creates a new CSV reader using the given and d@2: as the default parser. d@2: d@2: The reader. d@2: d@2: d@2: d@2: Creates a new CSV reader using the given and d@2: and as the default parser. d@2: d@2: The reader. d@2: The configuration. d@2: d@2: d@2: d@2: Creates a new CSV reader using the given . d@2: d@2: The used to parse the CSV file. d@2: d@2: d@2: d@2: Reads the header field without reading the first row. d@2: d@2: True if there are more records, otherwise false. d@2: d@2: d@2: d@2: Advances the reader to the next record. d@2: If HasHeaderRecord is true (true by default), the first record of d@2: the CSV file will be automatically read in as the header record d@2: and the second record will be returned. d@2: d@2: True if there are more records, otherwise false. d@2: d@2: d@2: d@2: Gets the raw field at position (column) index. d@2: d@2: The zero based index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name. d@2: d@2: The named index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name. d@2: d@2: The named index of the field. d@2: The zero based index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) index. d@2: d@2: The zero based index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name. d@2: d@2: The named index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name and the index d@2: instance of that field. The index is used when there are d@2: multiple columns with the same header name. d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The index of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The named index of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The index of the field. d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The index of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index. d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name. d@2: d@2: The of the field. d@2: The named index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index using d@2: the given . d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name using d@2: the given . d@2: d@2: The of the field. d@2: The named index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index using d@2: the given . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The zero based index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name using d@2: the given . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index. d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The field converted to type T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name. d@2: d@2: The of the field. d@2: The named index of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index d@2: using the specified . d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The named index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index d@2: using the specified . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The zero based index of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Determines whether the current record is empty. d@2: A record is considered empty if all fields are empty. d@2: d@2: d@2: true if [is record empty]; otherwise, false. d@2: d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: 2 d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: True if the instance needs to be disposed of. d@2: d@2: d@2: d@2: Checks if the instance has been disposed of. d@2: d@2: d@2: d@2: d@2: d@2: Checks if the reader has been read yet. d@2: d@2: d@2: d@2: d@2: d@2: Determines whether the current record is empty. d@2: A record is considered empty if all fields are empty. d@2: d@2: True to check if the record d@2: has been read, otherwise false. d@2: d@2: true if [is record empty]; otherwise, false. d@2: d@2: d@2: d@2: d@2: Gets a function to test for an empty string. d@2: Will check when making its decision. d@2: d@2: The function to test for an empty string. d@2: d@2: d@2: d@2: Gets the index of the field at name if found. d@2: d@2: The name of the field to get the index for. d@2: The index of the field if there are multiple fields with the same name. d@2: A value indicating if the call was initiated from a TryGet. d@2: The index of the field if found, otherwise -1. d@2: Thrown if there is no header record. d@2: Thrown if there isn't a field with name. d@2: d@2: d@2: d@2: Gets the index of the field at name if found. d@2: d@2: The possible names of the field to get the index for. d@2: The index of the field if there are multiple fields with the same name. d@2: A value indicating if the call was initiated from a TryGet. d@2: The index of the field if found, otherwise -1. d@2: Thrown if there is no header record. d@2: Thrown if there isn't a field with name. d@2: d@2: d@2: d@2: Parses the named indexes from the header record. d@2: d@2: d@2: d@2: d@2: Checks if the current record should be skipped or not. d@2: d@2: true if the current record should be skipped, false otherwise. d@2: d@2: d@2: d@2: Represents errors that occur while reading a CSV file. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Defines methods used to serialize data into a CSV file. d@2: d@2: d@2: d@2: d@2: Gets the configuration. d@2: d@2: d@2: d@2: d@2: Creates a new serializer using the given . d@2: d@2: The to write the CSV file data to. d@2: d@2: d@2: d@2: Creates a new serializer using the given d@2: and . d@2: d@2: The to write the CSV file data to. d@2: The configuration. d@2: d@2: d@2: d@2: Writes a record to the CSV file. d@2: d@2: The record to write. d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: 2 d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: True if the instance needs to be disposed of. d@2: d@2: d@2: d@2: Checks if the instance has been disposed of. d@2: d@2: d@2: d@2: d@2: d@2: Used to write CSV files. d@2: d@2: d@2: d@2: d@2: Gets the configuration. d@2: d@2: d@2: d@2: d@2: Creates a new CSV writer using the given , d@2: a default and d@2: as the default serializer. d@2: d@2: The writer used to write the CSV file. d@2: d@2: d@2: d@2: Creates a new CSV writer using the given d@2: and and d@2: as the default serializer. d@2: d@2: The use to write the CSV file. d@2: The configuration. d@2: d@2: d@2: d@2: Creates a new CSV writer using the given . d@2: d@2: The serializer. d@2: d@2: d@2: d@2: Writes the field to the CSV file. The field d@2: may get quotes added to it. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. This will d@2: ignore any need to quote and ignore the d@2: d@2: and just quote based on the shouldQuote d@2: parameter. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The field to write. d@2: True to quote the field, otherwise false. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: The converter used to convert the field into a string. d@2: d@2: d@2: d@2: Writes the field to the CSV file d@2: using the given . d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The type of the converter. d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: The converter used to convert the field into a string. d@2: d@2: d@2: d@2: Ends writing of the current record d@2: and starts a new record. This is used d@2: when manually writing records with WriteField. d@2: d@2: d@2: d@2: d@2: Write the Excel seperator record. d@2: d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: 2 d@2: d@2: d@2: d@2: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. d@2: d@2: True if the instance needs to be disposed of. d@2: d@2: d@2: d@2: Checks if the instance has been disposed of. d@2: d@2: d@2: d@2: d@2: d@2: Represents errors that occur while writing a CSV file. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Common exception tasks. d@2: d@2: d@2: d@2: d@2: Adds CsvHelper specific information to . d@2: d@2: The exception to add the info to. d@2: The parser. d@2: The type of object that was being created in the . d@2: The named indexes in the . d@2: The current index of the . d@2: The current record of the . d@2: d@2: d@2: d@2: Gets CsvHelper information to be added to an exception. d@2: d@2: The parser. d@2: The type of object that was being created in the . d@2: The named indexes in the . d@2: The current index of the . d@2: The current record of the . d@2: The CsvHelper information. d@2: d@2: d@2: d@2: Defines methods used to create d@2: CsvHelper classes. d@2: d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv parser. d@2: The configuration to use for the csv parser. d@2: The created parser. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv parser. d@2: The created parser. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv reader. d@2: The configuration to use for the reader. d@2: The created reader. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text reader to use for the csv reader. d@2: The created reader. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The parser used to create the reader. d@2: The created reader. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text writer to use for the csv writer. d@2: The configuration to use for the writer. d@2: The created writer. d@2: d@2: d@2: d@2: Creates an . d@2: d@2: The text writer to use for the csv writer. d@2: The created writer. d@2: d@2: d@2: d@2: Defines methods used the parse a CSV file. d@2: d@2: d@2: d@2: d@2: Gets the configuration. d@2: d@2: d@2: d@2: d@2: Gets the field count. d@2: d@2: d@2: d@2: d@2: Gets the character position that the parser is currently on. d@2: d@2: d@2: d@2: d@2: Gets the byte position that the parser is currently on. d@2: d@2: d@2: d@2: d@2: Gets the row of the CSV file that the parser is currently on. d@2: d@2: d@2: d@2: d@2: Gets the raw row for the current record that was parsed. d@2: d@2: d@2: d@2: d@2: Reads a record from the CSV file. d@2: d@2: A of fields for the record read. d@2: d@2: d@2: d@2: Defines methods used to read parsed data d@2: from a CSV file. d@2: d@2: d@2: d@2: d@2: Gets or sets the configuration. d@2: d@2: d@2: d@2: d@2: Gets the parser. d@2: d@2: d@2: d@2: d@2: Gets the field headers. d@2: d@2: d@2: d@2: d@2: Reads the header field without reading the first row. d@2: d@2: True if there are more records, otherwise false. d@2: d@2: d@2: d@2: Advances the reader to the next record. If the header hasn't been read d@2: yet, it'll automatically be read along with the first record. d@2: d@2: True if there are more records, otherwise false. d@2: d@2: d@2: d@2: Defines methods used to read parsed data d@2: from a CSV file row. d@2: d@2: d@2: d@2: d@2: Get the current record; d@2: d@2: d@2: d@2: d@2: Gets the current row. d@2: d@2: d@2: d@2: d@2: Gets the raw field at position (column) index. d@2: d@2: The zero based index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name. d@2: d@2: The named index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name. d@2: d@2: The named index of the field. d@2: The zero based index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) index. d@2: d@2: The zero based index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name. d@2: d@2: The named index of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the raw field at position (column) name and the index d@2: instance of that field. The index is used when there are d@2: multiple columns with the same header name. d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The raw field. d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The index of the field. d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The index of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to using d@2: the specified . d@2: d@2: The type of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to . d@2: The field converted to . d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index. d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name. d@2: d@2: The of the field. d@2: The named index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index using d@2: the given . d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name using d@2: the given . d@2: d@2: The of the field. d@2: The named index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: The of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index using d@2: the given . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The zero based index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name using d@2: the given . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to T. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index. d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The field converted to type T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name. d@2: d@2: The of the field. d@2: The named index of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position d@2: (column) name and the index instance of that field. The index d@2: is used when there are multiple columns with the same header name. d@2: d@2: d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index d@2: using the specified . d@2: d@2: The of the field. d@2: The zero based index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The named index of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The used to convert the field to T. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) index d@2: using the specified . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The zero based index of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Gets the field converted to T at position (column) name d@2: using the specified . d@2: d@2: The of the field. d@2: The used to convert the field to T. d@2: The named index of the field. d@2: The zero based index of the instance of the field. d@2: The field converted to T. d@2: A value indicating if the get was successful. d@2: d@2: d@2: d@2: Determines whether the current record is empty. d@2: A record is considered empty if all fields are empty. d@2: d@2: d@2: true if [is record empty]; otherwise, false. d@2: d@2: d@2: d@2: d@2: Defines methods used to serialize data into a CSV file. d@2: d@2: d@2: d@2: d@2: Gets the configuration. d@2: d@2: d@2: d@2: d@2: Writes a record to the CSV file. d@2: d@2: The record to write. d@2: d@2: d@2: d@2: Defines methods used to write to a CSV file. d@2: d@2: d@2: d@2: d@2: Gets or sets the configuration. d@2: d@2: d@2: d@2: d@2: Writes the field to the CSV file. The field d@2: may get quotes added to it. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. This will d@2: ignore any need to quote and ignore the d@2: d@2: and just quote based on the shouldQuote d@2: parameter. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The field to write. d@2: True to quote the field, otherwise false. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: The converter used to convert the field into a string. d@2: d@2: d@2: d@2: Writes the field to the CSV file d@2: using the given . d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The type of the converter. d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: d@2: d@2: d@2: Writes the field to the CSV file. d@2: When all fields are written for a record, d@2: must be called d@2: to complete writing of the current record. d@2: d@2: The type of the field. d@2: The field to write. d@2: The converter used to convert the field into a string. d@2: d@2: d@2: d@2: Ends writing of the current record d@2: and starts a new record. This is used d@2: when manually writing records with d@2: d@2: d@2: d@2: d@2: Write the Excel seperator record. d@2: d@2: d@2: d@2: d@2: Common reflection tasks. d@2: d@2: d@2: d@2: d@2: Creates an instance of type T. d@2: d@2: The type of instance to create. d@2: The constructor arguments. d@2: A new instance of type T. d@2: d@2: d@2: d@2: Creates an instance of the specified type. d@2: d@2: The type of instance to create. d@2: The constructor arguments. d@2: A new instance of the specified type. d@2: d@2: d@2: d@2: Common string tasks. d@2: d@2: d@2: d@2: d@2: Tests is a string is null or whitespace. d@2: d@2: The string to test. d@2: True if the string is null or whitespace, otherwise false. d@2: d@2: d@2: d@2: Configuration used for reading and writing CSV data. d@2: d@2: d@2: d@2: d@2: Gets or sets the property binding flags. d@2: This determines what properties on the custom d@2: class are used. Default is Public | Instance. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if the d@2: CSV file has a header record. d@2: Default is true. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating the if the CSV d@2: file contains the Excel "sep=delimeter" config d@2: option in the first row. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if an exception will be d@2: thrown if a field defined in a mapping is missing. d@2: True to throw an exception, otherwise false. d@2: Default is true. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether changes in the column d@2: count should be detected. If true, a d@2: will be thrown if a different column count is detected. d@2: d@2: d@2: true if [detect column count changes]; otherwise, false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether matching header d@2: column names is case sensitive. True for case sensitive d@2: matching, otherwise false. Default is true. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether matcher header d@2: column names will ignore white space. True to ignore d@2: white space, otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether references d@2: should be ignored when auto mapping. True to ignore d@2: references, otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether headers d@2: should be trimmed. True to trim headers, d@2: otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether fields d@2: should be trimmed. True to trim fields, d@2: otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets the delimiter used to separate fields. d@2: Default is ','; d@2: d@2: d@2: d@2: d@2: Gets or sets the character used to quote fields. d@2: Default is '"'. d@2: d@2: d@2: d@2: d@2: Gets a string representation of the currently configured Quote character. d@2: d@2: d@2: The new quote string. d@2: d@2: d@2: d@2: d@2: Gets a string representation of two of the currently configured Quote characters. d@2: d@2: d@2: The new double quote string. d@2: d@2: d@2: d@2: d@2: Gets an array characters that require d@2: the field to be quoted. d@2: d@2: d@2: d@2: d@2: Gets or sets the character used to denote d@2: a line that is commented out. Default is '#'. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if comments are allowed. d@2: True to allow commented out lines, otherwise false. d@2: d@2: d@2: d@2: d@2: Gets or sets the size of the buffer d@2: used for reading and writing CSV files. d@2: Default is 2048. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether all fields are quoted when writing, d@2: or just ones that have to be. and d@2: cannot be true at the same time. Turning one d@2: on will turn the other off. d@2: d@2: d@2: true if all fields should be quoted; otherwise, false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether no fields are quoted when writing. d@2: and cannot be true d@2: at the same time. Turning one on will turn the other off. d@2: d@2: d@2: true if [quote no fields]; otherwise, false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether the number of bytes should d@2: be counted while parsing. Default is false. This will slow down parsing d@2: because it needs to get the byte count of every char for the given encoding. d@2: The needs to be set correctly for this to be accurate. d@2: d@2: d@2: d@2: d@2: Gets or sets the encoding used when counting bytes. d@2: d@2: d@2: d@2: d@2: Gets or sets the culture info used to read an write CSV files. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating whether empty rows should be skipped when reading. d@2: A record is considered empty if all fields are empty. d@2: d@2: d@2: true if [skip empty rows]; otherwise, false. d@2: d@2: d@2: d@2: d@2: Gets or sets the callback that will be called to d@2: determine whether to skip the given record or not. d@2: This overrides the setting. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if quotes should be d@2: ingored when parsing and treated like any other character. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if private d@2: get and set property accessors should be d@2: ignored when reading and writing. d@2: True to ignore, otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if blank lines d@2: should be ignored when reading. d@2: True to ignore, otherwise false. Default is true. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if an Excel specific d@2: format should be used when writing fields containing d@2: numeric values. e.g. 00001 -> ="00001" d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if headers of reference d@2: properties should get prefixed by the parent property name d@2: when automapping. d@2: True to prefix, otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets a value indicating if an exception should d@2: be thrown when bad field data is detected. d@2: True to throw, otherwise false. Default is false. d@2: d@2: d@2: d@2: d@2: Gets or sets a method that gets called when bad d@2: data is detected. d@2: d@2: d@2: d@2: d@2: Creates a new CsvConfiguration. d@2: d@2: d@2: d@2: d@2: Builds the values for the RequiredQuoteChars property. d@2: d@2: d@2: d@2: d@2: Represents configuration errors that occur. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Converts a Boolean to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Byte to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Char to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Represents errors that occur while reading a CSV file. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class. d@2: d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message. d@2: d@2: The message that describes the error. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with a specified error message and a reference to the inner exception that d@2: is the cause of this exception. d@2: d@2: The error message that explains the reason for the exception. d@2: The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. d@2: d@2: d@2: d@2: Initializes a new instance of the class d@2: with serialized data. d@2: d@2: The that holds the serialized object data about the exception being thrown. d@2: The that contains contextual information about the source or destination. d@2: d@2: d@2: d@2: Converts a DateTime to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a DateTimeOffset to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Decimal to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts an object to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the object to a string. d@2: d@2: The options to use when converting. d@2: The object to convert to a string. d@2: The string representation of the object. d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Determines whether this instance [can convert to] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert to] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Double to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: d@2: The object created from the string. d@2: d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts an Enum to and from a string. d@2: d@2: d@2: d@2: d@2: Creates a new for the given . d@2: d@2: The type of the Enum. d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Throws an exception when used. This is here so that it's apparent d@2: that there is no support for IEnumerable type coversion. A custom d@2: converter will need to be created to have a field convert to and d@2: from an IEnumerable. d@2: d@2: d@2: d@2: d@2: Throws an exception. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Throws an exception. d@2: d@2: The options to use when converting. d@2: The object to convert to a string. d@2: The string representation of the object. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Determines whether this instance [can convert to] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert to] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Guid to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts an Int16 to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts an Int32 to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts an Int64 to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts objects to and from strings. d@2: d@2: d@2: d@2: d@2: Converts the object to a string. d@2: d@2: The options to use when converting. d@2: The object to convert to a string. d@2: The string representation of the object. d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Determines whether this instance [can convert to] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert to] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Nullable to and from a string. d@2: d@2: d@2: d@2: d@2: Gets the type of the nullable. d@2: d@2: d@2: The type of the nullable. d@2: d@2: d@2: d@2: d@2: Gets the underlying type of the nullable. d@2: d@2: d@2: The underlying type. d@2: d@2: d@2: d@2: d@2: Gets the type converter for the underlying type. d@2: d@2: d@2: The type converter. d@2: d@2: d@2: d@2: d@2: Creates a new for the given . d@2: d@2: The nullable type. d@2: type is not a nullable type. d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Converts the object to a string. d@2: d@2: The options to use when converting. d@2: The object to convert to a string. d@2: The string representation of the object. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a SByte to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a Float to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a string to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a TimeSpan to and from a string. d@2: d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Creates s. d@2: d@2: d@2: d@2: d@2: Initializes the class. d@2: d@2: d@2: d@2: d@2: Adds the for the given . d@2: d@2: The type the converter converts. d@2: The type converter that converts the type. d@2: d@2: d@2: d@2: Adds the for the given . d@2: d@2: The type the converter converts. d@2: The type converter that converts the type. d@2: d@2: d@2: d@2: Removes the for the given . d@2: d@2: The type to remove the converter for. d@2: d@2: d@2: d@2: Removes the for the given . d@2: d@2: The type to remove the converter for. d@2: d@2: d@2: d@2: Gets the converter for the given . d@2: d@2: The type to get the converter for. d@2: The for the given . d@2: d@2: d@2: d@2: Gets the converter for the given . d@2: d@2: The type to get the converter for. d@2: The for the given . d@2: d@2: d@2: d@2: Options used when doing type conversion. d@2: d@2: d@2: d@2: d@2: Gets or sets the culture info. d@2: d@2: d@2: d@2: d@2: Gets or sets the date time style. d@2: d@2: d@2: d@2: d@2: Gets or sets the number style. d@2: d@2: d@2: d@2: d@2: Gets the list of values that can be d@2: used to represent a boolean of true. d@2: d@2: d@2: d@2: d@2: Gets the list of values that can be d@2: used to represent a boolean of false. d@2: d@2: d@2: d@2: d@2: Gets or sets the string format. d@2: d@2: d@2: d@2: d@2: Merges TypeConverterOptions by applying the values of sources in order to a d@2: new TypeConverterOptions instance. d@2: d@2: The sources that will be applied. d@2: A new instance of TypeConverterOptions with the source applied to it. d@2: d@2: d@2: d@2: Creates . d@2: d@2: d@2: d@2: d@2: Adds the for the given . d@2: d@2: The type the options are for. d@2: The options. d@2: d@2: d@2: d@2: Adds the for the given . d@2: d@2: The type the options are for. d@2: The options. d@2: d@2: d@2: d@2: Removes the for the given type. d@2: d@2: The type to remove the options for. d@2: d@2: d@2: d@2: Removes the for the given type. d@2: d@2: The type to remove the options for. d@2: d@2: d@2: d@2: Get the for the given . d@2: d@2: The type the options are for. d@2: The options for the given type. d@2: d@2: d@2: d@2: Get the for the given . d@2: d@2: The type the options are for. d@2: The options for the given type. d@2: d@2: d@2: d@2: Converts a UInt16 to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a UInt32 to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Converts a UInt64 to and from a string. d@2: d@2: d@2: d@2: d@2: Converts the string to an object. d@2: d@2: The options to use when converting. d@2: The string to convert to an object. d@2: The object created from the string. d@2: d@2: d@2: d@2: Determines whether this instance [can convert from] the specified type. d@2: d@2: The type. d@2: d@2: true if this instance [can convert from] the specified type; otherwise, false. d@2: d@2: d@2: d@2: d@2: Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter. d@2: d@2: The type of the parameter of the method that this delegate encapsulates.This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. d@2: The type of the return value of the method that this delegate encapsulates.This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. d@2: The parameter of the method that this delegate encapsulates. d@2: The return value of the method that this delegate encapsulates. d@2: d@2: d@2: d@2: Used to have extension methods in C# 2.0. d@2: d@2: d@2: d@2: