IndexedCommentsCacheIndexCommentsFiles Method
Index all comments files found in the specified folder.
Namespace: SandcastleBuilder.Utils.InheritedDocumentationAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.9.12.0
public void IndexCommentsFiles(
string path,
string wildcard,
bool recurse,
ConcurrentBag<XPathNavigator> commentsFiles
)
Public Sub IndexCommentsFiles (
path As String,
wildcard As String,
recurse As Boolean,
commentsFiles As ConcurrentBag(Of XPathNavigator)
)
public:
void IndexCommentsFiles(
String^ path,
String^ wildcard,
bool recurse,
ConcurrentBag<XPathNavigator^>^ commentsFiles
)
member IndexCommentsFiles :
path : string *
wildcard : string *
recurse : bool *
commentsFiles : ConcurrentBag<XPathNavigator> -> unit
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.
The files are indexed in parallel.