IQueryCollection 接口

定义

表示 HttpRequest 查询字符串集合

public interface class IQueryCollection : System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, Microsoft::Extensions::Primitives::StringValues>>
public interface IQueryCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Microsoft.Extensions.Primitives.StringValues>>
type IQueryCollection = interface
    interface seq<KeyValuePair<string, StringValues>>
    interface IEnumerable
Public Interface IQueryCollection
Implements IEnumerable(Of KeyValuePair(Of String, StringValues))
派生
实现

属性

Count

获取 IQueryCollection 中包含的元素数。

Item[String]

获取具有指定键的值。

Keys

获取包含 ICollection<T> 的键的 IQueryCollection

方法

ContainsKey(String)

确定是否 IQueryCollection 包含带有指定键的元素。

TryGetValue(String, StringValues)

获取与指定键关联的值。

适用于