다음을 통해 공유


ArgumentExtensions.ExistingOnly 메서드

정의

오버로드

ExistingOnly(Argument<DirectoryInfo>)

기존 디렉터리에 해당하는 값만 허용하도록 인수를 구성합니다.

ExistingOnly(Argument<FileInfo>)

기존 파일에 해당하는 값만 허용하도록 인수를 구성합니다.

ExistingOnly(Argument<FileSystemInfo>)

기존 파일 또는 디렉터리에 해당하는 값만 허용하도록 인수를 구성합니다.

ExistingOnly<T>(Argument<T>)

기존 파일 또는 디렉터리에 해당하는 값만 허용하도록 인수를 구성합니다.

ExistingOnly(Argument<DirectoryInfo>)

기존 디렉터리에 해당하는 값만 허용하도록 인수를 구성합니다.

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)

매개 변수

argument
Argument<DirectoryInfo>

구성할 인수입니다.

반환

구성된 인수입니다.

적용 대상

ExistingOnly(Argument<FileInfo>)

기존 파일에 해당하는 값만 허용하도록 인수를 구성합니다.

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)

매개 변수

argument
Argument<FileInfo>

구성할 인수입니다.

반환

구성된 인수입니다.

적용 대상

ExistingOnly(Argument<FileSystemInfo>)

기존 파일 또는 디렉터리에 해당하는 값만 허용하도록 인수를 구성합니다.

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)

매개 변수

argument
Argument<FileSystemInfo>

구성할 인수입니다.

반환

구성된 인수입니다.

적용 대상

ExistingOnly<T>(Argument<T>)

기존 파일 또는 디렉터리에 해당하는 값만 허용하도록 인수를 구성합니다.

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)

형식 매개 변수

T

매개 변수

argument
Argument<T>

구성할 인수입니다.

반환

구성된 인수입니다.

적용 대상