Microsoft.Extensions.FileSystemGlobbing.xml 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.FileSystemGlobbing</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase">
  8. <summary>
  9. Represents a directory
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.EnumerateFileSystemInfos">
  13. <summary>
  14. Enumerates all files and directories in the directory.
  15. </summary>
  16. <returns>Collection of files and directories</returns>
  17. </member>
  18. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.GetDirectory(System.String)">
  19. <summary>
  20. Returns an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase" /> that represents a subdirectory
  21. </summary>
  22. <param name="path">The directory name</param>
  23. <returns>Instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase" /> even if directory does not exist</returns>
  24. </member>
  25. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase.GetFile(System.String)">
  26. <summary>
  27. Returns an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase" /> that represents a file in the directory
  28. </summary>
  29. <param name="path">The file name</param>
  30. <returns>Instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase" /> even if file does not exist</returns>
  31. </member>
  32. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper">
  33. <summary>
  34. Wraps an instance of <see cref="T:System.IO.DirectoryInfo" /> and provides implementation of
  35. <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase" />.
  36. </summary>
  37. </member>
  38. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.#ctor(System.IO.DirectoryInfo)">
  39. <summary>
  40. Initializes an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper" />.
  41. </summary>
  42. <param name="directoryInfo">The <see cref="T:System.IO.DirectoryInfo" />.</param>
  43. </member>
  44. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.EnumerateFileSystemInfos">
  45. <inheritdoc />
  46. </member>
  47. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.GetDirectory(System.String)">
  48. <summary>
  49. Returns an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase" /> that represents a subdirectory.
  50. </summary>
  51. <remarks>
  52. If <paramref name="name" /> equals '..', this returns the parent directory.
  53. </remarks>
  54. <param name="name">The directory name</param>
  55. <returns>The directory</returns>
  56. </member>
  57. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.GetFile(System.String)">
  58. <inheritdoc />
  59. </member>
  60. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.Name">
  61. <inheritdoc />
  62. </member>
  63. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.FullName">
  64. <summary>
  65. Returns the full path to the directory.
  66. </summary>
  67. <remarks>
  68. Equals the value of <seealso cref="P:System.IO.FileSystemInfo.FullName" />.
  69. </remarks>
  70. </member>
  71. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoWrapper.ParentDirectory">
  72. <summary>
  73. Returns the parent directory.
  74. </summary>
  75. <remarks>
  76. Equals the value of <seealso cref="P:System.IO.DirectoryInfo.Parent" />.
  77. </remarks>
  78. </member>
  79. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase">
  80. <summary>
  81. Represents a file
  82. </summary>
  83. </member>
  84. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper">
  85. <summary>
  86. Wraps an instance of <see cref="T:System.IO.FileInfo" /> to provide implementation of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase" />.
  87. </summary>
  88. </member>
  89. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.#ctor(System.IO.FileInfo)">
  90. <summary>
  91. Initializes instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper" /> to wrap the specified object <see cref="T:System.IO.FileInfo" />.
  92. </summary>
  93. <param name="fileInfo">The <see cref="T:System.IO.FileInfo" /></param>
  94. </member>
  95. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.Name">
  96. <summary>
  97. The file name. (Overrides <see cref="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name" />).
  98. </summary>
  99. <remarks>
  100. Equals the value of <see cref="P:System.IO.FileInfo.Name" />.
  101. </remarks>
  102. </member>
  103. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.FullName">
  104. <summary>
  105. The full path of the file. (Overrides <see cref="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.FullName" />).
  106. </summary>
  107. <remarks>
  108. Equals the value of <see cref="P:System.IO.FileSystemInfo.Name" />.
  109. </remarks>
  110. </member>
  111. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper.ParentDirectory">
  112. <summary>
  113. The directory containing the file. (Overrides <see cref="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.ParentDirectory" />).
  114. </summary>
  115. <remarks>
  116. Equals the value of <see cref="P:System.IO.FileInfo.Directory" />.
  117. </remarks>
  118. </member>
  119. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase">
  120. <summary>
  121. Shared abstraction for files and directories
  122. </summary>
  123. </member>
  124. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name">
  125. <summary>
  126. A string containing the name of the file or directory
  127. </summary>
  128. </member>
  129. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.FullName">
  130. <summary>
  131. A string containing the full path of the file or directory
  132. </summary>
  133. </member>
  134. <member name="P:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.ParentDirectory">
  135. <summary>
  136. The parent directory for the current file or directory
  137. </summary>
  138. </member>
  139. <member name="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch">
  140. <summary>
  141. Represents a file that was matched by searching using a globbing pattern
  142. </summary>
  143. </member>
  144. <member name="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path">
  145. <summary>
  146. The path to the file matched, relative to the beginning of the matching search pattern.
  147. </summary>
  148. <remarks>
  149. If the matcher searched for "src/Project/**/*.cs" and the pattern matcher found "src/Project/Interfaces/IFile.cs",
  150. then <see cref="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem" /> = "Interfaces/IFile.cs" and <see cref="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path" /> = "src/Project/Interfaces/IFile.cs".
  151. </remarks>
  152. </member>
  153. <member name="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem">
  154. <summary>
  155. The subpath to the file matched, relative to the first wildcard in the matching search pattern.
  156. </summary>
  157. <remarks>
  158. If the matcher searched for "src/Project/**/*.cs" and the pattern matcher found "src/Project/Interfaces/IFile.cs",
  159. then <see cref="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem" /> = "Interfaces/IFile.cs" and <see cref="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path" /> = "src/Project/Interfaces/IFile.cs".
  160. </remarks>
  161. </member>
  162. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.#ctor(System.String,System.String)">
  163. <summary>
  164. Initializes new instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  165. </summary>
  166. <param name="path">The path to the file matched, relative to the beginning of the matching search pattern.</param>
  167. <param name="stem">The subpath to the file matched, relative to the first wildcard in the matching search pattern.</param>
  168. </member>
  169. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)">
  170. <summary>
  171. Determines if the specified match is equivalent to the current match using a case-insensitive comparison.
  172. </summary>
  173. <param name="other">The other match to be compared</param>
  174. <returns>True if <see cref="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path" /> and <see cref="P:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem" /> are equal using case-insensitive comparison</returns>
  175. </member>
  176. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(System.Object)">
  177. <summary>
  178. Determines if the specified object is equivalent to the current match using a case-insensitive comparison.
  179. </summary>
  180. <param name="obj">The object to be compared</param>
  181. <returns>True when <see cref="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)" /></returns>
  182. </member>
  183. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.GetHashCode">
  184. <summary>
  185. Gets a hash for the file pattern match.
  186. </summary>
  187. <returns>Some number</returns>
  188. </member>
  189. <member name="T:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo">
  190. <summary>
  191. Avoids using disk for uses like Pattern Matching.
  192. </summary>
  193. </member>
  194. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
  195. <summary>
  196. Creates a new InMemoryDirectoryInfo with the root directory and files given.
  197. </summary>
  198. <param name="rootDir">The root directory that this FileSystem will use.</param>
  199. <param name="files">Collection of file names. If relative paths <paramref name="rootDir"/> will be prepended to the paths.</param>
  200. </member>
  201. <member name="P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.FullName">
  202. <inheritdoc />
  203. </member>
  204. <member name="P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.Name">
  205. <inheritdoc />
  206. </member>
  207. <member name="P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.ParentDirectory">
  208. <inheritdoc />
  209. </member>
  210. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.EnumerateFileSystemInfos">
  211. <inheritdoc />
  212. </member>
  213. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetDirectory(System.String)">
  214. <inheritdoc />
  215. </member>
  216. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetFile(System.String)">
  217. <summary>
  218. Returns an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase"/> that matches the <paramref name="path"/> given.
  219. </summary>
  220. <param name="path">The filename.</param>
  221. <returns>Instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase"/> if the file exists, null otherwise.</returns>
  222. </member>
  223. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern">
  224. <summary>
  225. This API supports infrastructure and is not intended to be used
  226. directly from your code. This API may change or be removed in future releases.
  227. </summary>
  228. </member>
  229. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment">
  230. <summary>
  231. This API supports infrastructure and is not intended to be used
  232. directly from your code. This API may change or be removed in future releases.
  233. </summary>
  234. </member>
  235. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern">
  236. <summary>
  237. This API supports infrastructure and is not intended to be used
  238. directly from your code. This API may change or be removed in future releases.
  239. </summary>
  240. </member>
  241. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext">
  242. <summary>
  243. This API supports infrastructure and is not intended to be used
  244. directly from your code. This API may change or be removed in future releases.
  245. </summary>
  246. </member>
  247. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern">
  248. <summary>
  249. This API supports infrastructure and is not intended to be used
  250. directly from your code. This API may change or be removed in future releases.
  251. </summary>
  252. </member>
  253. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.MatcherContext">
  254. <summary>
  255. This API supports infrastructure and is not intended to be used
  256. directly from your code. This API may change or be removed in future releases.
  257. </summary>
  258. </member>
  259. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult">
  260. <summary>
  261. This API supports infrastructure and is not intended to be used
  262. directly from your code. This API may change or be removed in future releases.
  263. </summary>
  264. </member>
  265. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Matcher">
  266. <summary>
  267. Searches the file system for files with names that match specified patterns.
  268. </summary>
  269. <remarks>
  270. <para>
  271. Patterns specified in <seealso cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)" /> and <seealso cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)" /> can use
  272. the following formats to match multiple files or directories.
  273. </para>
  274. <list type="bullet">
  275. <item>
  276. <term>
  277. exact directory and file name
  278. </term>
  279. <description>
  280. <list type="bullet">
  281. <item>
  282. <term>"one.txt"</term>
  283. </item>
  284. <item>
  285. <term>"dir/two.txt"</term>
  286. </item>
  287. </list>
  288. </description>
  289. </item>
  290. <item>
  291. <term>
  292. wildcards (*) in file and directory names that represent zero to many characters not including
  293. directory separators characters
  294. </term>
  295. <description>
  296. <list type="bullet">
  297. <item>
  298. <term>"*.txt"</term><description>all files with .txt file extension</description>
  299. </item>
  300. <item>
  301. <term>"*.*"</term><description>all files with an extension</description>
  302. </item>
  303. <item>
  304. <term>"*"</term><description>all files in top level directory</description>
  305. </item>
  306. <item>
  307. <term>".*"</term><description>filenames beginning with '.'</description>
  308. </item>
  309. - "*word* - all files with 'word' in the filename
  310. <item>
  311. <term>"readme.*"</term>
  312. <description>all files named 'readme' with any file extension</description>
  313. </item>
  314. <item>
  315. <term>"styles/*.css"</term>
  316. <description>all files with extension '.css' in the directory 'styles/'</description>
  317. </item>
  318. <item>
  319. <term>"scripts/*/*"</term>
  320. <description>all files in 'scripts/' or one level of subdirectory under 'scripts/'</description>
  321. </item>
  322. <item>
  323. <term>"images*/*"</term>
  324. <description>all files in a folder with name that is or begins with 'images'</description>
  325. </item>
  326. </list>
  327. </description>
  328. </item>
  329. <item>
  330. <term>arbitrary directory depth ("/**/")</term>
  331. <description>
  332. <list type="bullet">
  333. <item>
  334. <term>"**/*"</term><description>all files in any subdirectory</description>
  335. </item>
  336. <item>
  337. <term>"dir/**/*"</term><description>all files in any subdirectory under 'dir/'</description>
  338. </item>
  339. </list>
  340. </description>
  341. </item>
  342. <item>
  343. <term>relative paths</term>
  344. <description>
  345. '../shared/*' - all files in a diretory named 'shared' at the sibling level to the base directory given
  346. to <see cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)" />
  347. </description>
  348. </item>
  349. </list>
  350. </remarks>
  351. </member>
  352. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor">
  353. <summary>
  354. Initializes an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" /> using case-insensitive matching
  355. </summary>
  356. </member>
  357. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor(System.StringComparison)">
  358. <summary>
  359. Initializes an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" /> using the string comparison method specified
  360. </summary>
  361. <param name="comparisonType">The <see cref="T:System.StringComparison" /> to use</param>
  362. </member>
  363. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)">
  364. <summary>
  365. <para>
  366. Add a file name pattern that the matcher should use to discover files. Patterns are relative to the root
  367. directory given when <see cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)" /> is called.
  368. </para>
  369. <para>
  370. Use the forward slash '/' to represent directory separator. Use '*' to represent wildcards in file and
  371. directory names. Use '**' to represent arbitrary directory depth. Use '..' to represent a parent directory.
  372. </para>
  373. </summary>
  374. <param name="pattern">The globbing pattern</param>
  375. <returns>The matcher</returns>
  376. </member>
  377. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)">
  378. <summary>
  379. <para>
  380. Add a file name pattern for files the matcher should exclude from the results. Patterns are relative to the
  381. root directory given when <see cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)" /> is called.
  382. </para>
  383. <para>
  384. Use the forward slash '/' to represent directory separator. Use '*' to represent wildcards in file and
  385. directory names. Use '**' to represent arbitrary directory depth. Use '..' to represent a parent directory.
  386. </para>
  387. </summary>
  388. <param name="pattern">The globbing pattern</param>
  389. <returns>The matcher</returns>
  390. </member>
  391. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)">
  392. <summary>
  393. Searches the directory specified for all files matching patterns added to this instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />
  394. </summary>
  395. <param name="directoryInfo">The root directory for the search</param>
  396. <returns>Always returns instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult" />, even if not files were matched</returns>
  397. </member>
  398. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddExcludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])">
  399. <summary>
  400. Adds multiple exclude patterns to <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />. <seealso cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)" />
  401. </summary>
  402. <param name="matcher">The matcher to which the exclude patterns are added</param>
  403. <param name="excludePatternsGroups">A list of globbing patterns</param>
  404. </member>
  405. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddIncludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])">
  406. <summary>
  407. Adds multiple patterns to include in <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />. See <seealso cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)" />
  408. </summary>
  409. <param name="matcher">The matcher to which the include patterns are added</param>
  410. <param name="includePatternsGroups">A list of globbing patterns</param>
  411. </member>
  412. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.GetResultsInFullPath(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)">
  413. <summary>
  414. Searches the directory specified for all files matching patterns added to this instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />
  415. </summary>
  416. <param name="matcher">The matcher</param>
  417. <param name="directoryPath">The root directory for the search</param>
  418. <returns>Absolute file paths of all files matched. Empty enumerable if no files matched given patterns.</returns>
  419. </member>
  420. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)">
  421. <summary>
  422. Matches the file passed in with the patterns in the matcher without going to disk.
  423. </summary>
  424. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  425. <param name="file">The file to run the matcher against.</param>
  426. <returns>The match results.</returns>
  427. </member>
  428. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.String)">
  429. <summary>
  430. Matches the file passed in with the patterns in the matcher without going to disk.
  431. </summary>
  432. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  433. <param name="rootDir">The root directory for the matcher to match the file from.</param>
  434. <param name="file">The file to run the matcher against.</param>
  435. <returns>The match results.</returns>
  436. </member>
  437. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String})">
  438. <summary>
  439. Matches the files passed in with the patterns in the matcher without going to disk.
  440. </summary>
  441. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  442. <param name="files">The files to run the matcher against.</param>
  443. <returns>The match results.</returns>
  444. </member>
  445. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.Collections.Generic.IEnumerable{System.String})">
  446. <summary>
  447. Matches the files passed in with the patterns in the matcher without going to disk.
  448. </summary>
  449. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  450. <param name="rootDir">The root directory for the matcher to match the files from.</param>
  451. <param name="files">The files to run the matcher against.</param>
  452. <returns>The match results.</returns>
  453. </member>
  454. <member name="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult">
  455. <summary>
  456. Represents a collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  457. </summary>
  458. </member>
  459. <member name="M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch})">
  460. <summary>
  461. Initializes the result with a collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  462. </summary>
  463. <param name="files">A collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" /></param>
  464. </member>
  465. <member name="M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch},System.Boolean)">
  466. <summary>
  467. Initializes the result with a collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  468. </summary>
  469. <param name="files">A collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" /></param>
  470. <param name="hasMatches">A value that determines if <see cref="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult"/> has any matches.</param>
  471. </member>
  472. <member name="P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files">
  473. <summary>
  474. A collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  475. </summary>
  476. </member>
  477. <member name="P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.HasMatches">
  478. <summary>
  479. Gets a value that determines if this instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult"/> has any matches.
  480. </summary>
  481. </member>
  482. <member name="P:System.SR.CannotDeclarePathSegment">
  483. <summary>Cannot declare path segment before entering a directory.</summary>
  484. </member>
  485. <member name="P:System.SR.CannotTestDirectory">
  486. <summary>Cannot test directory before entering a directory.</summary>
  487. </member>
  488. <member name="P:System.SR.CannotTestFile">
  489. <summary>Cannot test file before entering a directory.</summary>
  490. </member>
  491. <member name="P:System.SR.UnexpectedStringComparisonType">
  492. <summary>Unexpected StringComparison type: {0}</summary>
  493. </member>
  494. </members>
  495. </doc>