/// <summary> /// Adds an indexing strategy to set for the identified node. /// </summary> /// <param name="index">The index to add to the specification.</param> /// <seealso cref="XmlIndex"/> public void AddIndex(XmlIndex index) { }
/// <summary> /// Returns the indexing strategies for a named document or metadata node. /// </summary> /// <param name="index">The named index to find.</param> /// <returns> /// This method returns <c>true</c> if an index for the node is found; otherwise, it returns <c>false</c>. /// </returns> public bool Find(XmlIndex index) { return(true); }
/// <summary> /// Replaces the indexing strategies for a named document or metadata node. /// </summary> /// <param name="index">The index to replace.</param> /// <remarks> /// All existing indexing strategies for that node are deleted, and the indexing strategy /// identified by this method is set for the node. /// </remarks> /// <seealso cref="XmlIndex"/> public void ReplaceIndex(XmlIndex index) { }
/// <summary> /// Deletes indexing strategies for a named document or metadata node. /// </summary> /// <param name="index">The named index to remove.</param> /// <remarks> /// To delete an index set for metadata, specify the URI and name used when the /// metadata was added to the document. /// </remarks> /// <seealso cref="XmlIndex"/> public void DeleteIndex(XmlIndex index) { }