Microsoft.Extensions.FileSystemGlobbing.xml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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
  147. </summary>
  148. <remarks>
  149. If the matcher searched for "**/*.cs" using "src/Project" as the directory base and the pattern matcher found
  150. "src/Project/Interfaces/IFile.cs", then Stem = "Interfaces/IFile.cs" and 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 matched file under the base directory searched
  156. </summary>
  157. <remarks>
  158. If the matcher searched for "**/*.cs" using "src/Project" as the directory base and the pattern matcher found
  159. "src/Project/Interfaces/IFile.cs",
  160. then Stem = "Interfaces/IFile.cs" and Path = "src/Project/Interfaces/IFile.cs".
  161. </remarks>
  162. </member>
  163. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.#ctor(System.String,System.String)">
  164. <summary>
  165. Initializes new instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  166. </summary>
  167. <param name="path">The path to the matched file</param>
  168. <param name="stem">The stem</param>
  169. </member>
  170. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)">
  171. <summary>
  172. Determines if the specified match is equivalent to the current match using a case-insensitive comparison.
  173. </summary>
  174. <param name="other">The other match to be compared</param>
  175. <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>
  176. </member>
  177. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(System.Object)">
  178. <summary>
  179. Determines if the specified object is equivalent to the current match using a case-insensitive comparison.
  180. </summary>
  181. <param name="obj">The object to be compared</param>
  182. <returns>True when <see cref="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)" /></returns>
  183. </member>
  184. <member name="M:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.GetHashCode">
  185. <summary>
  186. Gets a hash for the file pattern match.
  187. </summary>
  188. <returns>Some number</returns>
  189. </member>
  190. <member name="T:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo">
  191. <summary>
  192. Avoids using disk for uses like Pattern Matching.
  193. </summary>
  194. </member>
  195. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
  196. <summary>
  197. Creates a new InMemoryDirectoryInfo with the root directory and files given.
  198. </summary>
  199. <param name="rootDir">The root directory that this FileSystem will use.</param>
  200. <param name="files">Collection of file names. If relative paths <paramref name="rootDir"/> will be prepended to the paths.</param>
  201. </member>
  202. <member name="P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.FullName">
  203. <inheritdoc />
  204. </member>
  205. <member name="P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.Name">
  206. <inheritdoc />
  207. </member>
  208. <member name="P:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.ParentDirectory">
  209. <inheritdoc />
  210. </member>
  211. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.EnumerateFileSystemInfos">
  212. <inheritdoc />
  213. </member>
  214. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetDirectory(System.String)">
  215. <inheritdoc />
  216. </member>
  217. <member name="M:Microsoft.Extensions.FileSystemGlobbing.InMemoryDirectoryInfo.GetFile(System.String)">
  218. <summary>
  219. Returns an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase"/> that matches the <paramref name="path"/> given.
  220. </summary>
  221. <param name="path">The filename.</param>
  222. <returns>Instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase"/> if the file exists, null otherwise.</returns>
  223. </member>
  224. <member name="T:Microsoft.Extensions.FileSystemGlobbing.Matcher">
  225. <summary>
  226. Searches the file system for files with names that match specified patterns.
  227. </summary>
  228. <remarks>
  229. <para>
  230. 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
  231. the following formats to match multiple files or directories.
  232. </para>
  233. <list type="bullet">
  234. <item>
  235. <term>
  236. exact directory and file name
  237. </term>
  238. <description>
  239. <list type="bullet">
  240. <item>
  241. <term>"one.txt"</term>
  242. </item>
  243. <item>
  244. <term>"dir/two.txt"</term>
  245. </item>
  246. </list>
  247. </description>
  248. </item>
  249. <item>
  250. <term>
  251. wildcards (*) in file and directory names that represent zero to many characters not including
  252. directory separators characters
  253. </term>
  254. <description>
  255. <list type="bullet">
  256. <item>
  257. <term>"*.txt"</term><description>all files with .txt file extension</description>
  258. </item>
  259. <item>
  260. <term>"*.*"</term><description>all files with an extension</description>
  261. </item>
  262. <item>
  263. <term>"*"</term><description>all files in top level directory</description>
  264. </item>
  265. <item>
  266. <term>".*"</term><description>filenames beginning with '.'</description>
  267. </item>
  268. - "*word* - all files with 'word' in the filename
  269. <item>
  270. <term>"readme.*"</term>
  271. <description>all files named 'readme' with any file extension</description>
  272. </item>
  273. <item>
  274. <term>"styles/*.css"</term>
  275. <description>all files with extension '.css' in the directory 'styles/'</description>
  276. </item>
  277. <item>
  278. <term>"scripts/*/*"</term>
  279. <description>all files in 'scripts/' or one level of subdirectory under 'scripts/'</description>
  280. </item>
  281. <item>
  282. <term>"images*/*"</term>
  283. <description>all files in a folder with name that is or begins with 'images'</description>
  284. </item>
  285. </list>
  286. </description>
  287. </item>
  288. <item>
  289. <term>arbitrary directory depth ("/**/")</term>
  290. <description>
  291. <list type="bullet">
  292. <item>
  293. <term>"**/*"</term><description>all files in any subdirectory</description>
  294. </item>
  295. <item>
  296. <term>"dir/**/*"</term><description>all files in any subdirectory under 'dir/'</description>
  297. </item>
  298. </list>
  299. </description>
  300. </item>
  301. <item>
  302. <term>relative paths</term>
  303. <description>
  304. '../shared/*' - all files in a diretory named 'shared' at the sibling level to the base directory given
  305. to <see cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)" />
  306. </description>
  307. </item>
  308. </list>
  309. </remarks>
  310. </member>
  311. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor">
  312. <summary>
  313. Initializes an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" /> using case-insensitive matching
  314. </summary>
  315. </member>
  316. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.#ctor(System.StringComparison)">
  317. <summary>
  318. Initializes an instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" /> using the string comparsion method specified
  319. </summary>
  320. <param name="comparisonType">The <see cref="T:System.StringComparison" /> to use</param>
  321. </member>
  322. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)">
  323. <summary>
  324. <para>
  325. Add a file name pattern that the matcher should use to discover files. Patterns are relative to the root
  326. directory given when <see cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)" /> is called.
  327. </para>
  328. <para>
  329. Use the forward slash '/' to represent directory separator. Use '*' to represent wildcards in file and
  330. directory names. Use '**' to represent arbitrary directory depth. Use '..' to represent a parent directory.
  331. </para>
  332. </summary>
  333. <param name="pattern">The globbing pattern</param>
  334. <returns>The matcher</returns>
  335. </member>
  336. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)">
  337. <summary>
  338. <para>
  339. Add a file name pattern for files the matcher should exclude from the results. Patterns are relative to the
  340. root directory given when <see cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)" /> is called.
  341. </para>
  342. <para>
  343. Use the forward slash '/' to represent directory separator. Use '*' to represent wildcards in file and
  344. directory names. Use '**' to represent arbitrary directory depth. Use '..' to represent a parent directory.
  345. </para>
  346. </summary>
  347. <param name="pattern">The globbing pattern</param>
  348. <returns>The matcher</returns>
  349. </member>
  350. <member name="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)">
  351. <summary>
  352. Searches the directory specified for all files matching patterns added to this instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />
  353. </summary>
  354. <param name="directoryInfo">The root directory for the search</param>
  355. <returns>Always returns instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult" />, even if not files were matched</returns>
  356. </member>
  357. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddExcludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])">
  358. <summary>
  359. Adds multiple exclude patterns to <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />. <seealso cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddExclude(System.String)" />
  360. </summary>
  361. <param name="matcher">The matcher to which the exclude patterns are added</param>
  362. <param name="excludePatternsGroups">A list of globbing patterns</param>
  363. </member>
  364. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.AddIncludePatterns(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String}[])">
  365. <summary>
  366. Adds multiple patterns to include in <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />. See <seealso cref="M:Microsoft.Extensions.FileSystemGlobbing.Matcher.AddInclude(System.String)" />
  367. </summary>
  368. <param name="matcher">The matcher to which the include patterns are added</param>
  369. <param name="includePatternsGroups">A list of globbing patterns</param>
  370. </member>
  371. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.GetResultsInFullPath(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)">
  372. <summary>
  373. Searches the directory specified for all files matching patterns added to this instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.Matcher" />
  374. </summary>
  375. <param name="matcher">The matcher</param>
  376. <param name="directoryPath">The root directory for the search</param>
  377. <returns>Absolute file paths of all files matched. Empty enumerable if no files matched given patterns.</returns>
  378. </member>
  379. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)">
  380. <summary>
  381. Matches the file passed in with the patterns in the matcher without going to disk.
  382. </summary>
  383. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  384. <param name="file">The file to run the matcher against.</param>
  385. <returns>The match results.</returns>
  386. </member>
  387. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.String)">
  388. <summary>
  389. Matches the file passed in with the patterns in the matcher without going to disk.
  390. </summary>
  391. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  392. <param name="rootDir">The root directory for the matcher to match the file from.</param>
  393. <param name="file">The file to run the matcher against.</param>
  394. <returns>The match results.</returns>
  395. </member>
  396. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable{System.String})">
  397. <summary>
  398. Matches the files passed in with the patterns in the matcher without going to disk.
  399. </summary>
  400. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  401. <param name="files">The files to run the matcher against.</param>
  402. <returns>The match results.</returns>
  403. </member>
  404. <member name="M:Microsoft.Extensions.FileSystemGlobbing.MatcherExtensions.Match(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.Collections.Generic.IEnumerable{System.String})">
  405. <summary>
  406. Matches the files passed in with the patterns in the matcher without going to disk.
  407. </summary>
  408. <param name="matcher">The matcher that holds the patterns and pattern matching type.</param>
  409. <param name="rootDir">The root directory for the matcher to match the files from.</param>
  410. <param name="files">The files to run the matcher against.</param>
  411. <returns>The match results.</returns>
  412. </member>
  413. <member name="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult">
  414. <summary>
  415. Represents a collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  416. </summary>
  417. </member>
  418. <member name="M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch})">
  419. <summary>
  420. Initializes the result with a collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  421. </summary>
  422. <param name="files">A collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" /></param>
  423. </member>
  424. <member name="M:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch},System.Boolean)">
  425. <summary>
  426. Initializes the result with a collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  427. </summary>
  428. <param name="files">A collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" /></param>
  429. <param name="hasMatches">A value that determines if <see cref="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult"/> has any matches.</param>
  430. </member>
  431. <member name="P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files">
  432. <summary>
  433. A collection of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch" />
  434. </summary>
  435. </member>
  436. <member name="P:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.HasMatches">
  437. <summary>
  438. Gets a value that determines if this instance of <see cref="T:Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult"/> has any matches.
  439. </summary>
  440. </member>
  441. </members>
  442. </doc>