OptionExtensions.ExistingOnly メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ExistingOnly(Option<DirectoryInfo>) |
既存のディレクトリに対応する値のみを受け入れるようにオプションを構成します。 |
ExistingOnly(Option<FileInfo>) |
既存のファイルに対応する値のみを受け入れるオプションを構成します。 |
ExistingOnly(Option<FileSystemInfo>) |
既存のファイルまたはディレクトリに対応する値のみを受け入れるオプションを構成します。 |
ExistingOnly<T>(Option<T>) |
既存のファイルまたはディレクトリに対応する値のみを受け入れるオプションを構成します。 |
ExistingOnly(Option<DirectoryInfo>)
既存のディレクトリに対応する値のみを受け入れるようにオプションを構成します。
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)
パラメーター
- option
- Option<DirectoryInfo>
構成するオプション。
戻り値
拡張されるオプション。
適用対象
ExistingOnly(Option<FileInfo>)
既存のファイルに対応する値のみを受け入れるオプションを構成します。
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)
パラメーター
戻り値
拡張されるオプション。
適用対象
ExistingOnly(Option<FileSystemInfo>)
既存のファイルまたはディレクトリに対応する値のみを受け入れるオプションを構成します。
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)
パラメーター
- option
- Option<FileSystemInfo>
構成するオプション。
戻り値
拡張されるオプション。
適用対象
ExistingOnly<T>(Option<T>)
既存のファイルまたはディレクトリに対応する値のみを受け入れるオプションを構成します。
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)
型パラメーター
- T
パラメーター
- option
- Option<T>
構成するオプション。
戻り値
拡張されるオプション。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET