Share via


IRequestCookieCollection Interface

Definition

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

Name Description
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

Name Description
ContainsKey(String)

Determines whether the IRequestCookieCollection contains an element with the specified key.

TryGetValue(String, String)

Gets the value associated with the specified key.

Applies to