OptionExtensions.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(Option<DirectoryInfo>) |
Configura una opción para aceptar solo los valores correspondientes a un directorio existente. |
ExistingOnly(Option<FileInfo>) |
Configura una opción para aceptar solo los valores correspondientes a un archivo existente. |
ExistingOnly(Option<FileSystemInfo>) |
Configura una opción para aceptar solo los valores correspondientes a un archivo o directorio existente. |
ExistingOnly<T>(Option<T>) |
Configura una opción para aceptar solo los valores correspondientes a los archivos o directorios existentes. |
ExistingOnly(Option<DirectoryInfo>)
Configura una opción para aceptar solo los valores correspondientes a un directorio existente.
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)
Parámetros
- option
- Option<DirectoryInfo>
Opción que se va a configurar.
Devoluciones
La opción que se va a extender.
Se aplica a
ExistingOnly(Option<FileInfo>)
Configura una opción para aceptar solo los valores correspondientes a un archivo existente.
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)
Parámetros
Devoluciones
La opción que se va a extender.
Se aplica a
ExistingOnly(Option<FileSystemInfo>)
Configura una opción para aceptar solo los valores correspondientes a un archivo o directorio existente.
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)
Parámetros
- option
- Option<FileSystemInfo>
Opción que se va a configurar.
Devoluciones
La opción que se va a extender.
Se aplica a
ExistingOnly<T>(Option<T>)
Configura una opción 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::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)
Parámetros de tipo
- T
Parámetros
- option
- Option<T>
Opción que se va a configurar.
Devoluciones
La opción que se va a extender.