When overridden in a derived class, deletes a cookie.
Пространство имен: Microsoft.IdentityModel.Web
Сборка: Microsoft.IdentityModel (в microsoft.identitymodel.dll)

Использование

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

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

Синтаксис

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
)

Параметры

name

Name for the cookie

path

Path for the cookie

domain

Domain for the cookie

context

HttpContext for the request

Примечания

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.


Безопасность потоков

Любые открытые статические члены (Shared в Visual Basic) этого типа являются поточно-ориентированными.Любые члены экземпляров не являются гарантированно поточно-ориентированными.

Платформы

Платформа разработки

Windows Server 2003, Windows Vista

Target Platforms

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

См. также