The name of the action which caused the event.
            
| C# | Visual Basic | Visual C++ | 
public enum ActionName
Public Enumeration ActionName
public enum class ActionName
| Member | Description | 
|---|---|
| AutoAssignContent | The content category for a document was auto assigned, Data contains Document object.  | 
| AutoAssignLocation | The location category for a document was auto assigned, Data contains Document object.  | 
| CalculateWordRelevancies | The words have been read from a document that is being indexed and each word has been assigned a weight, Data contains ArrayList from Document.CalculateWordRelevancies method argument.  | 
| DocumentBeingCrawled | The crawlable links in a document are being processed, Data contains a 2 element object array - the 1st element is the Document object being crawled, and the 2nd element is an ArrayList of Uri objects found as links in the Document.  | 
| DocumentImporterAddedDocument | A document has been imported to an indexable source, Data contains AddDocumentEventArgs object.  | 
| DocumentImporterAddingDocument | A document is about to be imported from an indexable source, Data contains AddDocumentEventArgs object, which has a Cancel property to enable cancelling of this action.  | 
| DocumentIndexBuild | The index has been built, Data is null/nothing.  | 
| DocumentIndexed | A document has been indexed, Data is the Document object.  | 
| DiscoveredLinkedURLs | New URLs have been found by reading document links, Data contains an ArrayList of string objects (the link URLs), which may not be changed.   | 
| DiscoverLinkedURLs | New URLs have been found by reading document links, Data contains an ArrayList of string objects (the link URLs).   | 
| GetWordVariations | Variations (typically lemmas via stemming) of a word are required. Data contains a 2 element object array; first element is a Word object for the word that variations are needed for, and the second element is an ArrayList of strings holding the variations.  The second element can be modified as desired.  | 
| IsDocumentToBeCrawled | The document has been checked to see if it will be crawled, Data contains IsDocumentToBeCrawledEventData and the WillCrawl property may be changed.  | 
| IsDocumentToBeIndexed | The document has been checked to see if it will be crawled, Data contains IsDocumentToBeIndexedEventData and WillIndex property may be changed.  | 
| ReadLinks | The links in a document have been read, Data contains ArrayList of URL strings.  | 
| ReadText | The text in a document has been read, Data contains DocumentText object.  | 
| ResultItemsFinalized | The search result items have been found and sorted, Data contains an ResultItemList of ResultItem objects - the order and content of which may be changed.  Ideal for result filtering.  | 
| UseDocumentEncoding | The Encoding of a document is about to be used, Data contains the Document - the Encoding property may be read and/or set to the required value.  |