ArgumentExtensions.ExistingOnly Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ExistingOnly(Argument<DirectoryInfo>) |
Configure un argument pour accepter uniquement les valeurs correspondant à un répertoire existant. |
ExistingOnly(Argument<FileInfo>) |
Configure un argument pour accepter uniquement les valeurs correspondant à un fichier existant. |
ExistingOnly(Argument<FileSystemInfo>) |
Configure un argument pour accepter uniquement les valeurs correspondant à un fichier ou répertoire existant. |
ExistingOnly<T>(Argument<T>) |
Configure un argument pour accepter uniquement les valeurs correspondant à des fichiers ou répertoires existants. |
ExistingOnly(Argument<DirectoryInfo>)
Configure un argument pour accepter uniquement les valeurs correspondant à un répertoire existant.
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)
Paramètres
- argument
- Argument<DirectoryInfo>
Argument à configurer.
Retours
Argument configuré.
S’applique à
ExistingOnly(Argument<FileInfo>)
Configure un argument pour accepter uniquement les valeurs correspondant à un fichier existant.
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)
Paramètres
Retours
Argument configuré.
S’applique à
ExistingOnly(Argument<FileSystemInfo>)
Configure un argument pour accepter uniquement les valeurs correspondant à un fichier ou répertoire existant.
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)
Paramètres
- argument
- Argument<FileSystemInfo>
Argument à configurer.
Retours
Argument configuré.
S’applique à
ExistingOnly<T>(Argument<T>)
Configure un argument pour accepter uniquement les valeurs correspondant à des fichiers ou répertoires existants.
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)
Paramètres de type
- T
Paramètres
- argument
- Argument<T>
Argument à configurer.
Retours
Argument configuré.