When overridden in a derived class, deletes a cookie.
Namespace: Microsoft.IdentityModel.Web
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim name As String
Dim path As String
Dim domain As String
Dim context As HttpContext

Me.DeleteCore(name, path, domain, context)

Syntax

Visual Basic
Protected MustOverride Sub DeleteCore ( _
		name As String, _
		path As String, _
		domain As String, _
		context As HttpContext _
)
C#
protected abstract void DeleteCore (
		string name,
		string path,
		string domain,
		HttpContext context
)
C++
protected:
virtual void DeleteCore (
		String^ name, 
		String^ path, 
		String^ domain, 
		HttpContext^ context
) abstract
J#
protected abstract void DeleteCore (
		String name, 
		String path, 
		String domain, 
		HttpContext context
)
JScript
protected abstract function DeleteCore (
		name : String, 
		path : String, 
		domain : String, 
		context : HttpContext
)

Parameters

name

Name for the cookie

path

Path for the cookie

domain

Domain for the cookie

context

HttpContext for the request

Remarks

Called from the Delete method to do the actual work of deleting the cookie. The Delete method will ensure that name and path are non-empty strings.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also