Share via


OptionExtensions.ExistingOnly Methode

Definition

Überlädt

ExistingOnly(Option<DirectoryInfo>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die einem vorhandenen Verzeichnis entsprechen.

ExistingOnly(Option<FileInfo>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die einer vorhandenen Datei entsprechen.

ExistingOnly(Option<FileSystemInfo>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die einer vorhandenen Datei oder einem vorhandenen Verzeichnis entsprechen.

ExistingOnly<T>(Option<T>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die vorhandenen Dateien oder Verzeichnissen entsprechen.

ExistingOnly(Option<DirectoryInfo>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die einem vorhandenen Verzeichnis entsprechen.

public:
[System::Runtime::CompilerServices::Extension]
 static System::CommandLine::Option<System::IO::DirectoryInfo ^> ^ ExistingOnly(System::CommandLine::Option<System::IO::DirectoryInfo ^> ^ option);
public static System.CommandLine.Option<System.IO.DirectoryInfo> ExistingOnly (this System.CommandLine.Option<System.IO.DirectoryInfo> option);
static member ExistingOnly : System.CommandLine.Option<System.IO.DirectoryInfo> -> System.CommandLine.Option<System.IO.DirectoryInfo>
<Extension()>
Public Function ExistingOnly (option As Option(Of DirectoryInfo)) As Option(Of DirectoryInfo)

Parameter

option
Option<DirectoryInfo>

Die zu konfigurierende Option.

Gibt zurück

Die Option, die erweitert wird.

Gilt für:

ExistingOnly(Option<FileInfo>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die einer vorhandenen Datei entsprechen.

public:
[System::Runtime::CompilerServices::Extension]
 static System::CommandLine::Option<System::IO::FileInfo ^> ^ ExistingOnly(System::CommandLine::Option<System::IO::FileInfo ^> ^ option);
public static System.CommandLine.Option<System.IO.FileInfo> ExistingOnly (this System.CommandLine.Option<System.IO.FileInfo> option);
static member ExistingOnly : System.CommandLine.Option<System.IO.FileInfo> -> System.CommandLine.Option<System.IO.FileInfo>
<Extension()>
Public Function ExistingOnly (option As Option(Of FileInfo)) As Option(Of FileInfo)

Parameter

option
Option<FileInfo>

Die zu konfigurierende Option.

Gibt zurück

Die Option, die erweitert wird.

Gilt für:

ExistingOnly(Option<FileSystemInfo>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, die einer vorhandenen Datei oder einem vorhandenen Verzeichnis entsprechen.

public:
[System::Runtime::CompilerServices::Extension]
 static System::CommandLine::Option<System::IO::FileSystemInfo ^> ^ ExistingOnly(System::CommandLine::Option<System::IO::FileSystemInfo ^> ^ option);
public static System.CommandLine.Option<System.IO.FileSystemInfo> ExistingOnly (this System.CommandLine.Option<System.IO.FileSystemInfo> option);
static member ExistingOnly : System.CommandLine.Option<System.IO.FileSystemInfo> -> System.CommandLine.Option<System.IO.FileSystemInfo>
<Extension()>
Public Function ExistingOnly (option As Option(Of FileSystemInfo)) As Option(Of FileSystemInfo)

Parameter

option
Option<FileSystemInfo>

Die zu konfigurierende Option.

Gibt zurück

Die Option, die erweitert wird.

Gilt für:

ExistingOnly<T>(Option<T>)

Konfiguriert eine Option, um nur Werte zu akzeptieren, 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::Option<T> ^ ExistingOnly(System::CommandLine::Option<T> ^ option);
public static System.CommandLine.Option<T> ExistingOnly<T> (this System.CommandLine.Option<T> option) where T : System.Collections.Generic.IEnumerable<System.IO.FileSystemInfo>;
static member ExistingOnly : System.CommandLine.Option<#seq<System.IO.FileSystemInfo>> -> System.CommandLine.Option<#seq<System.IO.FileSystemInfo>>
<Extension()>
Public Function ExistingOnly(Of T As IEnumerable(Of FileSystemInfo)) (option As Option(Of T)) As Option(Of T)

Typparameter

T

Parameter

option
Option<T>

Die zu konfigurierende Option.

Gibt zurück

Die Option, die erweitert wird.

Gilt für: