Table of Contents

Struct BadDataFoundArgs

Namespace
CsvHelper
Assembly
CsvHelper.dll

Information about the field that caused BadDataFound to be called.

public readonly struct BadDataFoundArgs
Inherited Members

Constructors

BadDataFoundArgs(string, string, CsvContext)

Creates a new instance of BadDataFoundArgs.

public BadDataFoundArgs(string field, string rawRecord, CsvContext context)

Parameters

field string

The full field unedited.

rawRecord string

The full row unedited.

context CsvContext

The context.

Fields

Context

The context.

public readonly CsvContext Context

Field Value

CsvContext

Field

The full field unedited.

public readonly string Field

Field Value

string

RawRecord

The full row unedited.

public readonly string RawRecord

Field Value

string