다음을 통해 공유


CookieHandler.Read 메서드

정의

쿠키를 읽습니다.

오버로드

Read()

기본 이름이 있는 현재 요청과 연결된 쿠키를 읽습니다.

Read(String)

지정된 이름이 있는 현재 요청과 연결된 쿠키를 읽습니다.

Read(HttpContext)

기본 이름, 도메인 및 경로가 있는 현재 요청과 연결된 쿠키를 읽습니다.

Read(String, HttpContext)

지정한 이름, 기본 도메인 및 경로가 있는 쿠키를 지정한 요청과 관련하여 읽습니다.

Read()

기본 이름이 있는 현재 요청과 연결된 쿠키를 읽습니다.

public:
 cli::array <System::Byte> ^ Read();
public byte[] Read ();
member this.Read : unit -> byte[]
Public Function Read () As Byte()

반환

Byte[]

쿠키 값이거나, 쿠키가 없을 경우 null입니다.

설명

쿠키의 이름으로 지정 된 Name 속성입니다. 요청 된 HttpContext.Current합니다.

적용 대상

Read(String)

지정된 이름이 있는 현재 요청과 연결된 쿠키를 읽습니다.

public:
 cli::array <System::Byte> ^ Read(System::String ^ name);
public byte[] Read (string name);
member this.Read : string -> byte[]
Public Function Read (name As String) As Byte()

매개 변수

name
String

읽을 쿠키의 이름입니다.

반환

Byte[]

쿠키 값이거나, 쿠키가 없을 경우 null입니다.

예외

namenull이거나 비어 있는 경우

설명

요청 된 HttpContext.Current

적용 대상

Read(HttpContext)

기본 이름, 도메인 및 경로가 있는 현재 요청과 연결된 쿠키를 읽습니다.

public:
 cli::array <System::Byte> ^ Read(System::Web::HttpContext ^ context);
public byte[] Read (System.Web.HttpContext context);
member this.Read : System.Web.HttpContext -> byte[]
Public Function Read (context As HttpContext) As Byte()

매개 변수

context
HttpContext

요청에 대한 HttpContext입니다.

반환

Byte[]

쿠키 값이거나, 쿠키가 없을 경우 null입니다.

설명

쿠키의 이름으로 지정 된 Name 속성입니다.

적용 대상

Read(String, HttpContext)

지정한 이름, 기본 도메인 및 경로가 있는 쿠키를 지정한 요청과 관련하여 읽습니다.

public:
 cli::array <System::Byte> ^ Read(System::String ^ name, System::Web::HttpContext ^ context);
public byte[] Read (string name, System.Web.HttpContext context);
member this.Read : string * System.Web.HttpContext -> byte[]
Public Function Read (name As String, context As HttpContext) As Byte()

매개 변수

name
String

읽을 쿠키의 이름입니다.

context
HttpContext

요청에 대한 HttpContext입니다.

반환

Byte[]

쿠키 값이거나, 쿠키가 없을 경우 null입니다.

예외

namenull이거나 비어 있는 경우

적용 대상