IFormCollection 인터페이스

정의

HttpRequest와 함께 전송된 구문 분석된 양식 값을 나타냅니다.

public interface class IFormCollection : System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, Microsoft::Extensions::Primitives::StringValues>>
public interface IFormCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Microsoft.Extensions.Primitives.StringValues>>
type IFormCollection = interface
    interface seq<KeyValuePair<string, StringValues>>
    interface IEnumerable
Public Interface IFormCollection
Implements IEnumerable(Of KeyValuePair(Of String, StringValues))
파생
구현

속성

Count

IFormCollection에 포함된 요소 수를 가져옵니다.

Files

요청과 함께 전송된 파일 컬렉션입니다.

Item[String]

지정된 키를 사용하여 값을 가져옵니다.

Keys

ICollection<T>의 키를 포함하는 IFormCollection을 가져옵니다.

메서드

ContainsKey(String)

지정된 키를 갖는 요소가 IFormCollection에 들어 있는지 여부를 결정합니다.

TryGetValue(String, StringValues)

지정한 키와 연결된 값을 가져옵니다.

적용 대상