ArgumentExtensions.ExistingOnly Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ExistingOnly(Argument<DirectoryInfo>) |
Configura un argumento para aceptar solo los valores correspondientes a un directorio existente. |
ExistingOnly(Argument<FileInfo>) |
Configura un argumento para aceptar solo los valores correspondientes a un archivo existente. |
ExistingOnly(Argument<FileSystemInfo>) |
Configura un argumento para aceptar solo los valores correspondientes a un archivo o directorio existente. |
ExistingOnly<T>(Argument<T>) |
Configura un argumento para aceptar solo los valores correspondientes a los archivos o directorios existentes. |
ExistingOnly(Argument<DirectoryInfo>)
Configura un argumento para aceptar solo los valores correspondientes a un directorio existente.
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)
Parámetros
- argument
- Argument<DirectoryInfo>
Argumento que se va a configurar.
Devoluciones
Argumento configurado.
Se aplica a
ExistingOnly(Argument<FileInfo>)
Configura un argumento para aceptar solo los valores correspondientes a un archivo existente.
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)
Parámetros
Devoluciones
Argumento configurado.
Se aplica a
ExistingOnly(Argument<FileSystemInfo>)
Configura un argumento para aceptar solo los valores correspondientes a un archivo o directorio existente.
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)
Parámetros
- argument
- Argument<FileSystemInfo>
Argumento que se va a configurar.
Devoluciones
Argumento configurado.
Se aplica a
ExistingOnly<T>(Argument<T>)
Configura un argumento para aceptar solo los valores correspondientes a los archivos o directorios existentes.
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)
Parámetros de tipo
- T
Parámetros
- argument
- Argument<T>
Argumento que se va a configurar.
Devoluciones
Argumento configurado.