OptionValidation.AcceptExistingOnly Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Overload
| Nama | Deskripsi |
|---|---|
| AcceptExistingOnly(Option<DirectoryInfo>) |
Mengonfigurasi opsi untuk hanya menerima nilai yang sesuai dengan direktori yang ada. |
| AcceptExistingOnly(Option<FileInfo>) |
Mengonfigurasi opsi untuk hanya menerima nilai yang terkait dengan file yang ada. |
| AcceptExistingOnly(Option<FileSystemInfo>) |
Mengonfigurasi opsi untuk hanya menerima nilai yang sesuai dengan file atau direktori yang ada. |
| AcceptExistingOnly<T>(Option<T>) |
Mengonfigurasi opsi untuk hanya menerima nilai yang sesuai dengan file atau direktori yang ada. |
AcceptExistingOnly(Option<DirectoryInfo>)
- Sumber:
- OptionValidation.cs
- Sumber:
- OptionValidation.cs
Mengonfigurasi opsi untuk hanya menerima nilai yang sesuai dengan direktori yang ada.
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Option<System::IO::DirectoryInfo ^> ^ AcceptExistingOnly(System::CommandLine::Option<System::IO::DirectoryInfo ^> ^ option);
public static System.CommandLine.Option<System.IO.DirectoryInfo> AcceptExistingOnly(this System.CommandLine.Option<System.IO.DirectoryInfo> option);
static member AcceptExistingOnly : System.CommandLine.Option<System.IO.DirectoryInfo> -> System.CommandLine.Option<System.IO.DirectoryInfo>
<Extension()>
Public Function AcceptExistingOnly (option As Option(Of DirectoryInfo)) As Option(Of DirectoryInfo)
Parameter
- option
- Option<DirectoryInfo>
Opsi untuk mengonfigurasi.
Mengembalikan
Opsi diperluas.
Berlaku untuk
AcceptExistingOnly(Option<FileInfo>)
- Sumber:
- OptionValidation.cs
- Sumber:
- OptionValidation.cs
Mengonfigurasi opsi untuk hanya menerima nilai yang terkait dengan file yang ada.
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Option<System::IO::FileInfo ^> ^ AcceptExistingOnly(System::CommandLine::Option<System::IO::FileInfo ^> ^ option);
public static System.CommandLine.Option<System.IO.FileInfo> AcceptExistingOnly(this System.CommandLine.Option<System.IO.FileInfo> option);
static member AcceptExistingOnly : System.CommandLine.Option<System.IO.FileInfo> -> System.CommandLine.Option<System.IO.FileInfo>
<Extension()>
Public Function AcceptExistingOnly (option As Option(Of FileInfo)) As Option(Of FileInfo)
Parameter
Mengembalikan
Opsi diperluas.
Berlaku untuk
AcceptExistingOnly(Option<FileSystemInfo>)
- Sumber:
- OptionValidation.cs
- Sumber:
- OptionValidation.cs
Mengonfigurasi opsi untuk hanya menerima nilai yang sesuai dengan file atau direktori yang ada.
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Option<System::IO::FileSystemInfo ^> ^ AcceptExistingOnly(System::CommandLine::Option<System::IO::FileSystemInfo ^> ^ option);
public static System.CommandLine.Option<System.IO.FileSystemInfo> AcceptExistingOnly(this System.CommandLine.Option<System.IO.FileSystemInfo> option);
static member AcceptExistingOnly : System.CommandLine.Option<System.IO.FileSystemInfo> -> System.CommandLine.Option<System.IO.FileSystemInfo>
<Extension()>
Public Function AcceptExistingOnly (option As Option(Of FileSystemInfo)) As Option(Of FileSystemInfo)
Parameter
- option
- Option<FileSystemInfo>
Opsi untuk mengonfigurasi.
Mengembalikan
Opsi diperluas.
Berlaku untuk
AcceptExistingOnly<T>(Option<T>)
- Sumber:
- OptionValidation.cs
- Sumber:
- OptionValidation.cs
Mengonfigurasi opsi untuk hanya menerima nilai yang sesuai dengan file atau direktori yang ada.
public:
generic <typename T>
where T : System::Collections::Generic::IEnumerable<System::IO::FileSystemInfo ^>[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Option<T> ^ AcceptExistingOnly(System::CommandLine::Option<T> ^ option);
public static System.CommandLine.Option<T> AcceptExistingOnly<T>(this System.CommandLine.Option<T> option) where T : System.Collections.Generic.IEnumerable<System.IO.FileSystemInfo>;
static member AcceptExistingOnly : System.CommandLine.Option<#seq<System.IO.FileSystemInfo>> -> System.CommandLine.Option<#seq<System.IO.FileSystemInfo>>
<Extension()>
Public Function AcceptExistingOnly(Of T As IEnumerable(Of FileSystemInfo)) (option As Option(Of T)) As Option(Of T)
Jenis parameter
- T
Parameter
- option
- Option<T>
Opsi untuk mengonfigurasi.
Mengembalikan
Opsi diperluas.