Table of Contents

Interface ICookieAccessor

Namespace
Kentico.Web.Mvc
Assembly
Kentico.Web.Mvc.dll

Accessor for cookie handling methods.

public interface ICookieAccessor
Extension Methods

Methods

Get(string)

Returns value of a specified cookie.

string Get(string name)

Parameters

name string

Name of the cookie.

Returns

string

Value of the cookie if the cookie exists, null otherwise.

Remove(string)

Removes the specified cookie.

void Remove(string name)

Parameters

name string

Name of the cookie.

Set(string, string, CookieOptions)

Sets the value of a cookie.

void Set(string name, string value, CookieOptions cookieOptions = null)

Parameters

name string

Name of the cookie.

value string

Value of the cookie.

cookieOptions CookieOptions

A Microsoft.AspNetCore.Http.CookieOptions object for further cookie customization.