IRequestCookieCollection Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the HttpRequest cookie collection
public interface class IRequestCookieCollection : System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>>
public interface IRequestCookieCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>>
type IRequestCookieCollection = interface
interface seq<KeyValuePair<string, string>>
interface IEnumerable
Public Interface IRequestCookieCollection
Implements IEnumerable(Of KeyValuePair(Of String, String))
- Implements
Properties
Count |
Gets the number of elements contained in the IRequestCookieCollection. |
Item[String] |
Gets the value with the specified key. |
Keys |
Gets an ICollection<T> containing the keys of the IRequestCookieCollection. |
Methods
ContainsKey(String) |
Determines whether the IRequestCookieCollection contains an element with the specified key. |
TryGetValue(String, String) |
Gets the value associated with the specified key. |