File: IResponseCookies.cs
Web Access
Project: src\src\Http\Http.Features\src\Microsoft.AspNetCore.Http.Features.csproj (Microsoft.AspNetCore.Http.Features)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Http;
 
/// <summary>
/// A wrapper for the response Set-Cookie header.
/// </summary>
public interface IResponseCookies
{
    /// <summary>
    /// Add a new cookie and value.
    /// </summary>
    /// <param name="key">Name of the new cookie.</param>
    /// <param name="value">Value of the new cookie.</param>
    void Append(string key, string value);
 
    /// <summary>
    /// Add a new cookie.
    /// </summary>
    /// <param name="key">Name of the new cookie.</param>
    /// <param name="value">Value of the new cookie.</param>
    /// <param name="options"><see cref="CookieOptions"/> included in the new cookie setting.</param>
    void Append(string key, string value, CookieOptions options);
 
    /// <summary>
    /// Add elements of specified collection as cookies.
    /// </summary>
    /// <param name="keyValuePairs">Key value pair collections whose elements will be added as cookies.</param>
    /// <param name="options"><see cref="CookieOptions"/> included in new cookie settings.</param>
    void Append(ReadOnlySpan<KeyValuePair<string, string>> keyValuePairs, CookieOptions options)
    {
        foreach (var keyValuePair in keyValuePairs)
        {
            Append(keyValuePair.Key, keyValuePair.Value, options);
        }
    }
 
    /// <summary>
    /// Sets an expired cookie.
    /// </summary>
    /// <param name="key">Name of the cookie to expire.</param>
    void Delete(string key);
 
    /// <summary>
    /// Sets an expired cookie.
    /// </summary>
    /// <param name="key">Name of the cookie to expire.</param>
    /// <param name="options">
    /// <see cref="CookieOptions"/> used to discriminate the particular cookie to expire. The
    /// <see cref="CookieOptions.Domain"/> and <see cref="CookieOptions.Path"/> values are especially important.
    /// </param>
    void Delete(string key, CookieOptions options);
}