다음을 통해 공유


OptionExtensions.ExistingOnly 메서드

정의

오버로드

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)

매개 변수

option
Option<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>

구성할 옵션입니다.

반환

확장 중인 옵션입니다.

적용 대상