QueryCollection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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) |
创建指定 |
字段
Empty |
获取空 QueryCollection。 |
属性
Count |
获取 中包含的 QueryCollection元素数;。 |
Item[String] |
从集合中获取关联的值集。 |
Keys |
获取此实例中的查询名称的集合。 |
方法
ContainsKey(String) |
确定 QueryCollection 是否包含特定键。 |
GetEnumerator() |
返回循环访问集合的枚举数。 |
TryGetValue(String, StringValues) |
从集合中检索值。 |
显式接口实现
IEnumerable.GetEnumerator() |
返回循环访问集合的枚举数。 |
IEnumerable<KeyValuePair<String,StringValues>>.GetEnumerator() |
返回循环访问集合的枚举数。 |