MatcherExtensions.Match Metod

Definition

Överlagringar

Name Description
Match(Matcher, IEnumerable<String>)

Matchar de filer som skickas in med mönstren i matchare utan att gå till disken.

Match(Matcher, String)

Matchar filen som skickas med mönstren i matchare utan att gå till disken.

Match(Matcher, String, IEnumerable<String>)

Matchar de filer som skickas in med mönstren i matchare utan att gå till disken.

Match(Matcher, String, String)

Matchar filen som skickas med mönstren i matchare utan att gå till disken.

Match(Matcher, IEnumerable<String>)

Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs

Matchar de filer som skickas in med mönstren i matchare utan att gå till disken.

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

Parametrar

matcher
Matcher

Den matchare som innehåller mönster och mönstermatchningstyp.

files
IEnumerable<String>

De filer som matchningen ska köras mot.

Returer

Matchningsresultatet.

Gäller för

Match(Matcher, String)

Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs

Matchar filen som skickas med mönstren i matchare utan att gå till disken.

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

Parametrar

matcher
Matcher

Den matchare som innehåller mönster och mönstermatchningstyp.

file
String

Filen som matchningen ska köras mot.

Returer

Matchningsresultatet.

Gäller för

Match(Matcher, String, IEnumerable<String>)

Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs

Matchar de filer som skickas in med mönstren i matchare utan att gå till disken.

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

Parametrar

matcher
Matcher

Den matchare som innehåller mönster och mönstermatchningstyp.

rootDir
String

Rotkatalogen för matchningen som ska matcha filerna från.

files
IEnumerable<String>

De filer som matchningen ska köras mot.

Returer

Matchningsresultatet.

Gäller för

Match(Matcher, String, String)

Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs
Källa:
MatcherExtensions.cs

Matchar filen som skickas med mönstren i matchare utan att gå till disken.

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

Parametrar

matcher
Matcher

Den matchare som innehåller mönster och mönstermatchningstyp.

rootDir
String

Rotkatalogen för matchningen som ska matcha filen från.

file
String

Filen som matchningen ska köras mot.

Returer

Matchningsresultatet.

Gäller för