HttpFileCollection.AllKeys Vlastnost

Definice

Získá pole řetězců obsahující klíče (názvy) všech členů v kolekci souborů.

public:
 property cli::array <System::String ^> ^ AllKeys { cli::array <System::String ^> ^ get(); };
public string[] AllKeys { get; }
member this.AllKeys : string[]
Public ReadOnly Property AllKeys As String()

Hodnota vlastnosti

String[]

Pole názvů souborů.

Příklady

Následující příklad načte HttpFileCollection názvy přenášené z klienta do pole řetězců.

String[] MyNameArray = Request.Files.AllKeys;
Dim MyNameArray() As String = Request.Files.AllKeys

Platí pro

Viz také