MatcherExtensions.Match Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
Match(Matcher, IEnumerable<String>) |
Porovná předané soubory se vzory v matcheru bez přechodu na disk. |
Match(Matcher, String) |
Porovná předaný soubor se vzory v matcheru bez přechodu na disk. |
Match(Matcher, String, IEnumerable<String>) |
Porovná předané soubory se vzory v matcheru bez přechodu na disk. |
Match(Matcher, String, String) |
Porovná předaný soubor se vzory v matcheru bez přechodu na disk. |
Match(Matcher, IEnumerable<String>)
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
Porovná předané soubory se vzory v matcheru bez přechodu na disk.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::FileSystemGlobbing::PatternMatchingResult ^ Match(Microsoft::Extensions::FileSystemGlobbing::Matcher ^ matcher, System::Collections::Generic::IEnumerable<System::String ^> ^ files);
public static Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult Match (this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, System.Collections.Generic.IEnumerable<string>? files);
static member Match : Microsoft.Extensions.FileSystemGlobbing.Matcher * seq<string> -> Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult
<Extension()>
Public Function Match (matcher As Matcher, files As IEnumerable(Of String)) As PatternMatchingResult
Parametry
- matcher
- Matcher
Matcher, který obsahuje vzory a typ porovnávání vzorů.
- files
- IEnumerable<String>
Soubory, pro které se má spouštět nástroj pro porovnávání.
Návraty
Výsledky shody.
Platí pro
Match(Matcher, String)
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
Porovná předaný soubor se vzory v matcheru bez přechodu na disk.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::FileSystemGlobbing::PatternMatchingResult ^ Match(Microsoft::Extensions::FileSystemGlobbing::Matcher ^ matcher, System::String ^ file);
public static Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult Match (this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, string file);
static member Match : Microsoft.Extensions.FileSystemGlobbing.Matcher * string -> Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult
<Extension()>
Public Function Match (matcher As Matcher, file As String) As PatternMatchingResult
Parametry
- matcher
- Matcher
Matcher, který obsahuje vzory a typ porovnávání vzorů.
- file
- String
Soubor, pro který se má spouštět matcher.
Návraty
Výsledky shody.
Platí pro
Match(Matcher, String, IEnumerable<String>)
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
Porovná předané soubory se vzory v matcheru bez přechodu na disk.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::FileSystemGlobbing::PatternMatchingResult ^ Match(Microsoft::Extensions::FileSystemGlobbing::Matcher ^ matcher, System::String ^ rootDir, System::Collections::Generic::IEnumerable<System::String ^> ^ files);
public static Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult Match (this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, string rootDir, System.Collections.Generic.IEnumerable<string>? files);
static member Match : Microsoft.Extensions.FileSystemGlobbing.Matcher * string * seq<string> -> Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult
<Extension()>
Public Function Match (matcher As Matcher, rootDir As String, files As IEnumerable(Of String)) As PatternMatchingResult
Parametry
- matcher
- Matcher
Matcher, který obsahuje vzory a typ porovnávání vzorů.
- rootDir
- String
Kořenový adresář pro matcher, který odpovídá souborům z.
- files
- IEnumerable<String>
Soubory, pro které se má spouštět nástroj pro porovnávání.
Návraty
Výsledky shody.
Platí pro
Match(Matcher, String, String)
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
- Zdroj:
- MatcherExtensions.cs
Porovná předaný soubor se vzory v matcheru bez přechodu na disk.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::FileSystemGlobbing::PatternMatchingResult ^ Match(Microsoft::Extensions::FileSystemGlobbing::Matcher ^ matcher, System::String ^ rootDir, System::String ^ file);
public static Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult Match (this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, string rootDir, string file);
static member Match : Microsoft.Extensions.FileSystemGlobbing.Matcher * string * string -> Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult
<Extension()>
Public Function Match (matcher As Matcher, rootDir As String, file As String) As PatternMatchingResult
Parametry
- matcher
- Matcher
Matcher, který obsahuje vzory a typ porovnávání vzorů.
- rootDir
- String
Kořenový adresář pro matcher, ze které se má soubor shodovat.
- file
- String
Soubor, pro který se má spouštět matcher.
Návraty
Výsledky shody.