Share via


DeleteCookieContext(HttpContext, CookieOptions, String) Constructor

Definition

Initializes a new instance of DeleteCookieContext.

public:
 DeleteCookieContext(Microsoft::AspNetCore::Http::HttpContext ^ context, Microsoft::AspNetCore::Http::CookieOptions ^ options, System::String ^ name);
public DeleteCookieContext (Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Http.CookieOptions options, string name);
new Microsoft.AspNetCore.CookiePolicy.DeleteCookieContext : Microsoft.AspNetCore.Http.HttpContext * Microsoft.AspNetCore.Http.CookieOptions * string -> Microsoft.AspNetCore.CookiePolicy.DeleteCookieContext
Public Sub New (context As HttpContext, options As CookieOptions, name As String)

Parameters

context
HttpContext

The request HttpContext.

options
CookieOptions

The CookieOptions passed to the cookie policy.

name
String

The cookie name to be deleted.

Applies to