API Reference

Class

CsvParseError

Namespace OfficeIMO.CSV
Assembly OfficeIMO.CSV
Modifiers sealed

Represents a parse error collected while reading CSV data.

Inheritance

  • Object
  • CsvParseError

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Returned or exposed by

Constructors

public CsvParseError(Int32 lineNumber, String message, Exception exception) #

Initializes a collected parse error.

Parameters

lineNumber System.Int32 requiredposition: 0
message System.String requiredposition: 1
exception System.Exception requiredposition: 2

Properties

public Int32 LineNumber { get; } #

Gets the line where parsing failed.

public String Message { get; } #

Gets the parse error message.

public Exception Exception { get; } #

Gets the original exception.