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

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

Visual Basic
Dim name As String
Dim context As HttpContext
Dim returnValue As Byte()

returnValue = Me.ReadCore(name, context)

Синтаксис

Visual Basic
Protected MustOverride Function ReadCore ( _
		name As String, _
		context As HttpContext _
) As Byte()
C#
protected abstract byte[] ReadCore (
		string name,
		HttpContext context
)
C++
protected:
virtual array<unsigned char>^ ReadCore (
		String^ name, 
		HttpContext^ context
) abstract
J#
protected abstract byte[] ReadCore (
		String name, 
		HttpContext context
)
JScript
protected abstract function ReadCore (
		name : String, 
		context : HttpContext
) : byte[]

Параметры

name

Name for the cookie

context

HttpContext for the request

Возвращаемое значение

The cookie value, or null if the cookie was not found

Примечания

Called from the Read method to do the actual work of reading the cookie. The Read method will ensure that name is a non-empty string.


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

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

Платформы

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

Windows Server 2003, Windows Vista

Target Platforms

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

См. также