IFormFileCollection.GetFiles(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an IReadOnlyList<T> containing the files of the IFormFileCollection with the specified name.
public:
System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Http::IFormFile ^> ^ GetFiles(System::String ^ name);
public System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile> GetFiles (string name);
abstract member GetFiles : string -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile>
Public Function GetFiles (name As String) As IReadOnlyList(Of IFormFile)
Parameters
- name
- String
The name of the files to get.
Returns
An IReadOnlyList<T> containing the files of the object that implements IFormFileCollection.