System.Web Namespace HttpFileCollection Class
Gets the object with the specified numerical index from the HttpFileCollection.
In [ C# ], this property is the indexer for the HttpFileCollection class.
[ VB ]
Overloads Public Default ReadOnly Property Item ( _
ByVal index As Integer _
) As HttpPostedFile
[ C# ]
public HttpPostedFile this [
int index
] {get;}
[ C++ ]
public: __property HttpPostedFile* get_Item (
int index
);
[ JScript ]
returnValue = HttpFileCollectionObject.Item ( index );
-or-
returnValue = HttpFileCollectionObject ( index );
In [ JScript ], you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
- index
- The index of the item to get from the file collection.
The HttpPostedFile specified by index.
The following example retrieves the first file object ( index = 0 ) from the collection sent by the client and retrieves the name of the actual file represented by the object.
HttpPostedFile myPostedMember = Request.Files [ 0 ];
String myFileName = myPostedMember.FileName;
Dim myPostedMember As HttpPostedFile = Request.Files ( 0 )
Dim myFileName As String = myPostedMember.FileName |
|
C# |
VB |
HttpFileCollection Members HttpFileCollection.Item Overload List