Table of Contents

Class BatchErrorData

public class BatchErrorData
Inheritance
object
BatchErrorData

Properties

Code

An error code identifying the error type.

public string Code { get; set; }

Property Value

string

Line

The line number of the input file where the error occurred, if applicable.

public int? Line { get; set; }

Property Value

int?

Message

A human-readable message providing more details about the error.

public string Message { get; set; }

Property Value

string

Param

The name of the parameter that caused the error, if applicable.

public string Param { get; set; }

Property Value

string