HttpFileCollectionWrapper.GetMultiple(String) 方法

定义

返回与指定名称相匹配的所有文件。Returns all files that match the specified name.

public:
 override System::Collections::Generic::IList<System::Web::HttpPostedFileBase ^> ^ GetMultiple(System::String ^ name);
public override System.Collections.Generic.IList<System.Web.HttpPostedFileBase> GetMultiple (string name);
override this.GetMultiple : string -> System.Collections.Generic.IList<System.Web.HttpPostedFileBase>
Public Overrides Function GetMultiple (name As String) As IList(Of HttpPostedFileBase)

参数

name
String

要匹配的名称。The name to match.

返回

IList<HttpPostedFileBase>

与指定名称匹配的文件 。The files that match the specified name.

适用于