コード例 #1
0
 /// <summary>
 /// Adds an indexing strategy to the default index specification. That is, the index provided
 /// on this method is applied to all nodes in a container, except for those for which an
 /// explicit index is already declared.
 /// </summary>
 /// <param name="index">The index to specify as the default index.</param>
 /// <remarks>
 /// For more information on specifying indexing strategies,
 /// see <see cref="XmlIndexSpecification.AddIndex"/>.
 /// </remarks>
 public void AddDefaultIndex(IndexingStrategy index)
 {
 }
コード例 #2
0
 /// <summary>
 /// Sets a new index using <see cref="IndexingStrategy"/>.
 /// </summary>
 /// <param name="index">The <see cref="IndexingStrategy"/> of the new index.</param>
 /// <seealso cref="IndexingStrategy"/>
 public void SetIndex(IndexingStrategy index)
 {
 }
コード例 #3
0
 /// <summary>
 /// Replaces the indexing strategies for a typed document for metadata node.
 /// </summary>
 /// <param name="nodeNamespace">The namespace of the node.</param>
 /// <param name="nodeName">The name of the node whose index is being replaced.</param>
 /// <param name="strategy">The indexing strategy containing the type information.</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>
 public void ReplaceIndex(string nodeNamespace, string nodeName, IndexingStrategy strategy)
 {
 }