HttpFileCollectionBase.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 재정의되는 경우 파일 컬렉션의 게시된 파일 개체를 이름 또는 인덱스 기준으로 가져옵니다.
오버로드
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
가져올 개체의 인덱스입니다.
속성 값
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
반환할 개체의 이름입니다.
속성 값
name
으로 지정된, 게시된 파일 개체입니다.