Table of Contents

Class IndexingErrorEventArgs

Namespace
Examine
Assembly
Examine.Core.dll

Indexing error event arguments

public class IndexingErrorEventArgs : EventArgs
Inheritance
IndexingErrorEventArgs
Inherited Members

Constructors

IndexingErrorEventArgs(IIndex, string, string?, Exception?)

public IndexingErrorEventArgs(IIndex index, string message, string? itemId, Exception? exception)

Parameters

index IIndex
message string
itemId string
exception Exception

Properties

Exception

The exception of the error

public Exception? Exception { get; }

Property Value

Exception

Index

The index where the error originated

public IIndex Index { get; }

Property Value

IIndex

ItemId

The item id

public string? ItemId { get; }

Property Value

string

Message

The message of the error

public string Message { get; }

Property Value

string