QueryCollection 类

定义

HttpRequest 查询字符串集合

public ref class QueryCollection : Microsoft::AspNetCore::Http::IQueryCollection, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, Microsoft::Extensions::Primitives::StringValues>>
public class QueryCollection : Microsoft.AspNetCore.Http.IQueryCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Microsoft.Extensions.Primitives.StringValues>>
type QueryCollection = class
    interface IQueryCollection
    interface seq<KeyValuePair<string, StringValues>>
    interface IEnumerable
Public Class QueryCollection
Implements IEnumerable(Of KeyValuePair(Of String, StringValues)), IQueryCollection
继承
QueryCollection
实现

构造函数

QueryCollection()

初始化 QueryCollection 的新实例。

QueryCollection(Dictionary<String,StringValues>)

初始化 QueryCollection 的新实例。

QueryCollection(Int32)

初始化 QueryCollection 的新实例。

QueryCollection(QueryCollection)

创建指定 store的浅表副本。

字段

Empty

获取空 QueryCollection

属性

Count

获取 中包含的 QueryCollection元素数;。

Item[String]

从集合中获取关联的值集。

Keys

获取此实例中的查询名称的集合。

方法

ContainsKey(String)

确定 QueryCollection 是否包含特定键。

GetEnumerator()

返回循环访问集合的枚举数。

TryGetValue(String, StringValues)

从集合中检索值。

显式接口实现

IEnumerable.GetEnumerator()

返回循环访问集合的枚举数。

IEnumerable<KeyValuePair<String,StringValues>>.GetEnumerator()

返回循环访问集合的枚举数。

适用于