IRequestCookieCollection Interface¶
Represents the HttpRequest cookie collection
- Namespace
Microsoft.AspNetCore.Http
- Assemblies
- Microsoft.AspNetCore.Http.Features
Syntax¶
public interface IRequestCookieCollection : IEnumerable<KeyValuePair<string, string>>, IEnumerable
-
interface
Microsoft.AspNetCore.Http.
IRequestCookieCollection
Methods¶
-
ContainsKey
(System.String)¶ - Determines whether the
Microsoft.AspNetCore.Http.IRequestCookieCollection
contains an element with the specified key.Arguments: key (System.String) – The key to locate in the Microsoft.AspNetCore.Http.IRequestCookieCollection
.Return type: System.Boolean Returns: true if the Microsoft.AspNetCore.Http.IRequestCookieCollection
contains an element with the key; otherwise, false.bool ContainsKey(string key)
-
TryGetValue
(System.String, out System.String)¶ - Gets the value associated with the specified key.
Arguments: - key (System.String) – The key of the value to get.
- value (System.String) – The key of the value to get. When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return type: System.Boolean
Returns: - true if the object that implements
Microsoft.AspNetCore.Http.IRequestCookieCollection
contains an element with the specified key; otherwise, false.
bool TryGetValue(string key, out string value)
-
Properties¶
-
Microsoft.AspNetCore.Http.IRequestCookieCollection.
Count
¶ - Gets the number of elements contained in the
Microsoft.AspNetCore.Http.IRequestCookieCollection
.Return type: System.Int32 Returns: The number of elements contained in the Microsoft.AspNetCore.Http.IRequestCookieCollection
.int Count { get; }
-
Microsoft.AspNetCore.Http.IRequestCookieCollection.
Item[System.String]
¶ - Gets the value with the specified key.
Arguments: key (System.String) – The key of the value to get. Return type: System.String Returns: The element with the specified key, or <code>string.Empty</code> if the key is not present. string this[string key] { get; }
-
Microsoft.AspNetCore.Http.IRequestCookieCollection.
Keys
¶ - Gets an
System.Collections.Generic.ICollection`1
containing the keys of theMicrosoft.AspNetCore.Http.IRequestCookieCollection
.Return type: System.Collections.Generic.ICollection<System.String> Returns: An System.Collections.Generic.ICollection`1
containing the keys of the object that implementsMicrosoft.AspNetCore.Http.IRequestCookieCollection
.ICollection<string> Keys { get; }
-