HttpFileCollection.AllKeys Property
.NET Framework 3.0
Gets a string array containing the keys (names) of all members in the file collection.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following example loads the HttpFileCollection names transmitted from a client into a string array.
String myNameArray[] = get_Request().get_Files().get_AllKeys();
var myNameArray : System.String[] = Request.Files.AllKeys
Community Additions
ADD
Show: