FullTextIndex Class

This is a really basic implementation of an algorithm used to create a full-text index of the website pages so that they can be searched using the ASP.NET web pages.

Definition

Namespace: SandcastleBuilder.Utils.BuildEngine
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.2.18.0
public class FullTextIndex
Inheritance
Object    FullTextIndex

Remarks

So that an assembly does not have to be deployed to deserialize the index information, the index information is represented using built-in data types (string and long).

Constructors

FullTextIndex Constructor

Methods

CreateFullTextIndex Create a full-text index from web pages found in the specified file path
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
SaveIndex Save the index information to the specified location.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also