1 instantiation of QueryCollection
Microsoft.AspNetCore.Http (1)
QueryCollection.cs (1)
21public static readonly QueryCollection Empty = new QueryCollection();
22 references to QueryCollection
Microsoft.AspNetCore.Http (22)
Features\QueryFeature.cs (2)
56return _parsedValues ?? QueryCollection.Empty; 68: QueryCollection.Empty;
QueryCollection.cs (13)
19/// Gets an empty <see cref="QueryCollection"/>. 21public static readonly QueryCollection Empty = new QueryCollection(); 30/// Initializes a new instance of <see cref="QueryCollection"/>. 37/// Initializes a new instance of <see cref="QueryCollection"/>. 48/// <param name="store">The <see cref="QueryCollection"/> to clone.</param> 49public QueryCollection(QueryCollection store) 55/// Initializes a new instance of <see cref="QueryCollection"/>. 86/// Gets the number of elements contained in the <see cref="QueryCollection" />;. 88/// <returns>The number of elements contained in the <see cref="QueryCollection" />.</returns> 117/// Determines whether the <see cref="QueryCollection" /> contains a specific key. 120/// <returns>true if the <see cref="QueryCollection" /> contains a specific key; otherwise, false.</returns> 135/// <returns>true if the <see cref="QueryCollection" /> contains the key; otherwise, false.</returns> 189/// Enumerates a <see cref="QueryCollection"/>.
QueryCollectionInternal.cs (7)
22/// Initializes a new instance of <see cref="QueryCollection"/>. 38/// Gets the number of elements contained in the <see cref="QueryCollection" />;. 40/// <returns>The number of elements contained in the <see cref="QueryCollection" />.</returns> 49/// Determines whether the <see cref="QueryCollection" /> contains a specific key. 52/// <returns>true if the <see cref="QueryCollection" /> contains a specific key; otherwise, false.</returns> 60/// <returns>true if the <see cref="QueryCollection" /> contains the key; otherwise, false.</returns> 83/// Enumerates a <see cref="QueryCollection"/>.