HttpFileCollection.GetKey(Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 숫자 인덱스의 HttpFileCollection 멤버 이름을 반환합니다.
public:
System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String
매개 변수
- index
- Int32
반환되는 개체 이름의 인덱스입니다.
반환
index
에서 지정한 HttpFileCollection 멤버의 이름입니다.
예제
다음 예제에서는 파일 컬렉션을 반복하고 이름이 "CustInfo"인 파일 컬렉션 멤버가 발견되면 작업을 수행합니다.
int loop1;
HttpFileCollection MyFileColl = Request.Files;
for( loop1 = 0; loop1 < MyFileColl.Count; loop1++)
{
if( MyFileColl.GetKey(loop1) == "CustInfo")
{
//...
}
}
Dim loop1 As Integer
Dim MyFileColl As HttpFileCollection = Request.Files
For loop1 = 0 To MyFileColl.Count - 1
If MyFileColl.GetKey(loop1) = "CustInfo" Then
'...
End If
Next loop1