IndexedCommentsCacheIndexCommentsFiles Method

Index all comments files found in the specified folder.

Definition

Namespace: SandcastleBuilder.Utils.InheritedDocumentation
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.9.12.0
public void IndexCommentsFiles(
	string path,
	string wildcard,
	bool recurse,
	ConcurrentBag<XPathNavigator> commentsFiles
)

Parameters

path  String
The path to search. If null or empty, the current directory is assumed.
wildcard  String
The wildcard to use. If null or empty, "*.xml" is assumed.
recurse  Boolean
True to recurse subfolders or false to only use the given folder.
commentsFiles  ConcurrentBagXPathNavigator
Optional. If not null, an XPathDocument is added to the collection for each file indexed.

Remarks

The files are indexed in parallel.

See Also