다음을 통해 공유


HttpFileCollectionBase.Item[] 속성

정의

파생 클래스에서 재정의되는 경우 파일 컬렉션의 게시된 파일 개체를 이름 또는 인덱스 기준으로 가져옵니다.

오버로드

Item[Int32]

파생 클래스에서 재정의된 경우 지정된 인덱스에 게시된 파일 개체를 가져옵니다.

Item[String]

파생 클래스에서 재정의된 경우 컬렉션에서 지정된 이름을 가진 게시된 파일 개체를 가져옵니다.

Item[Int32]

파생 클래스에서 재정의된 경우 지정된 인덱스에 게시된 파일 개체를 가져옵니다.

public:
 virtual property System::Web::HttpPostedFileBase ^ default[int] { System::Web::HttpPostedFileBase ^ get(int index); };
public virtual System.Web.HttpPostedFileBase this[int index] { get; }
member this.Item(int) : System.Web.HttpPostedFileBase
Default Public Overridable ReadOnly Property Item(index As Integer) As HttpPostedFileBase

매개 변수

index
Int32

가져올 개체의 인덱스입니다.

속성 값

HttpPostedFileBase

index로 지정된, 게시된 파일 개체입니다.

예외

적용 대상

Item[String]

파생 클래스에서 재정의된 경우 컬렉션에서 지정된 이름을 가진 게시된 파일 개체를 가져옵니다.

public:
 virtual property System::Web::HttpPostedFileBase ^ default[System::String ^] { System::Web::HttpPostedFileBase ^ get(System::String ^ name); };
public virtual System.Web.HttpPostedFileBase this[string name] { get; }
member this.Item(string) : System.Web.HttpPostedFileBase
Default Public Overridable ReadOnly Property Item(name As String) As HttpPostedFileBase

매개 변수

name
String

반환할 개체의 이름입니다.

속성 값

HttpPostedFileBase

name으로 지정된, 게시된 파일 개체입니다.

예외

적용 대상