ArgumentExtensions.ExistingOnly Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ExistingOnly(Argument<DirectoryInfo>) |
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die einem vorhandenen Verzeichnis entsprechen. |
ExistingOnly(Argument<FileInfo>) |
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die einer vorhandenen Datei entsprechen. |
ExistingOnly(Argument<FileSystemInfo>) |
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die einer vorhandenen Datei oder einem vorhandenen Verzeichnis entsprechen. |
ExistingOnly<T>(Argument<T>) |
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die vorhandenen Dateien oder Verzeichnissen entsprechen. |
ExistingOnly(Argument<DirectoryInfo>)
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die einem vorhandenen Verzeichnis entsprechen.
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Argument<System::IO::DirectoryInfo ^> ^ ExistingOnly(System::CommandLine::Argument<System::IO::DirectoryInfo ^> ^ argument);
public static System.CommandLine.Argument<System.IO.DirectoryInfo> ExistingOnly (this System.CommandLine.Argument<System.IO.DirectoryInfo> argument);
static member ExistingOnly : System.CommandLine.Argument<System.IO.DirectoryInfo> -> System.CommandLine.Argument<System.IO.DirectoryInfo>
<Extension()>
Public Function ExistingOnly (argument As Argument(Of DirectoryInfo)) As Argument(Of DirectoryInfo)
Parameter
- argument
- Argument<DirectoryInfo>
Das zu konfigurierende Argument.
Gibt zurück
Das konfigurierte Argument.
Gilt für:
ExistingOnly(Argument<FileInfo>)
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die einer vorhandenen Datei entsprechen.
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Argument<System::IO::FileInfo ^> ^ ExistingOnly(System::CommandLine::Argument<System::IO::FileInfo ^> ^ argument);
public static System.CommandLine.Argument<System.IO.FileInfo> ExistingOnly (this System.CommandLine.Argument<System.IO.FileInfo> argument);
static member ExistingOnly : System.CommandLine.Argument<System.IO.FileInfo> -> System.CommandLine.Argument<System.IO.FileInfo>
<Extension()>
Public Function ExistingOnly (argument As Argument(Of FileInfo)) As Argument(Of FileInfo)
Parameter
Gibt zurück
Das konfigurierte Argument.
Gilt für:
ExistingOnly(Argument<FileSystemInfo>)
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die einer vorhandenen Datei oder einem vorhandenen Verzeichnis entsprechen.
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Argument<System::IO::FileSystemInfo ^> ^ ExistingOnly(System::CommandLine::Argument<System::IO::FileSystemInfo ^> ^ argument);
public static System.CommandLine.Argument<System.IO.FileSystemInfo> ExistingOnly (this System.CommandLine.Argument<System.IO.FileSystemInfo> argument);
static member ExistingOnly : System.CommandLine.Argument<System.IO.FileSystemInfo> -> System.CommandLine.Argument<System.IO.FileSystemInfo>
<Extension()>
Public Function ExistingOnly (argument As Argument(Of FileSystemInfo)) As Argument(Of FileSystemInfo)
Parameter
- argument
- Argument<FileSystemInfo>
Das zu konfigurierende Argument.
Gibt zurück
Das konfigurierte Argument.
Gilt für:
ExistingOnly<T>(Argument<T>)
Konfiguriert ein Argument so, dass nur Werte akzeptiert werden, die vorhandenen Dateien oder Verzeichnissen entsprechen.
public:
generic <typename T>
where T : System::Collections::Generic::IEnumerable<System::IO::FileSystemInfo ^>[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Argument<T> ^ ExistingOnly(System::CommandLine::Argument<T> ^ argument);
public static System.CommandLine.Argument<T> ExistingOnly<T> (this System.CommandLine.Argument<T> argument) where T : System.Collections.Generic.IEnumerable<System.IO.FileSystemInfo>;
static member ExistingOnly : System.CommandLine.Argument<#seq<System.IO.FileSystemInfo>> -> System.CommandLine.Argument<#seq<System.IO.FileSystemInfo>>
<Extension()>
Public Function ExistingOnly(Of T As IEnumerable(Of FileSystemInfo)) (argument As Argument(Of T)) As Argument(Of T)
Typparameter
- T
Parameter
- argument
- Argument<T>
Das zu konfigurierende Argument.
Gibt zurück
Das konfigurierte Argument.