Reads a cookie.
Пространство имен: Microsoft.IdentityModel.Web
Сборка: Microsoft.IdentityModel (в microsoft.identitymodel.dll)

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

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

returnValue = instance.Read(name, context)

Синтаксис

Visual Basic
Public Function Read ( _
		name As String, _
		context As HttpContext _
) As Byte()
C#
public byte[] Read (
		string name,
		HttpContext context
)
C++
public:
array<unsigned char>^ Read (
		String^ name, 
		HttpContext^ context
)
J#
public byte[] Read (
		String name, 
		HttpContext context
)
JScript
public function Read (
		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

Исключения

Тип исключений Условие
ArgumentNullException

When name is null or empty

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

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

Платформы

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

Windows Server 2003, Windows Vista

Target Platforms

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

См. также