Table of Contents

Struct ReadingExceptionOccurredArgs

Namespace
CsvHelper
Assembly
CsvHelper.dll

ReadingExceptionOccurred args.

public struct ReadingExceptionOccurredArgs
Inherited Members

Constructors

ReadingExceptionOccurredArgs(CsvHelperException)

Creates a new instance of ReadingExceptionOccurredArgs.

public ReadingExceptionOccurredArgs(CsvHelperException exception)

Parameters

exception CsvHelperException

The exception.

Fields

Exception

The exception.

public readonly CsvHelperException Exception

Field Value

CsvHelperException

Properties

Record

The record that will be returned from GetRecord. If this is null, GetRecord will return a null, even though it is non-nullable.

public object? Record { readonly get; set; }

Property Value

object