C# Class NSoft.NFramework.Web.Tools.WebTool

Mostra file Open project: debop/NFramework

Public Methods

Method Description
DeserializeSessionState ( byte serializedItems ) : SessionStateItemCollection

Session 정보를 역직렬화합니다. (일반적인 역직렬화 방식은 안되고, SessionStateItemCollection 자체의 Deserialize를 사용해서 직렬화합니다.)

GetMime ( this filename ) : string

지정된 파일명의 MIME Type을 구합니다.

SerializeSessionState ( SessionStateItemCollection items ) : byte[]

Session 정보를 직렬화합니다. (일반적인 직렬화 방식은 안되고, SessionStateItemCollection 자체의 Serialize를 사용해서 직렬화합니다.)

Method Details

DeserializeSessionState() public static method

Session 정보를 역직렬화합니다. (일반적인 역직렬화 방식은 안되고, SessionStateItemCollection 자체의 Deserialize를 사용해서 직렬화합니다.)
public static DeserializeSessionState ( byte serializedItems ) : SessionStateItemCollection
serializedItems byte
return SessionStateItemCollection

GetMime() public static method

지정된 파일명의 MIME Type을 구합니다.
public static GetMime ( this filename ) : string
filename this 파일명이나 extensions (예: png)
return string

SerializeSessionState() public static method

Session 정보를 직렬화합니다. (일반적인 직렬화 방식은 안되고, SessionStateItemCollection 자체의 Serialize를 사용해서 직렬화합니다.)
public static SerializeSessionState ( SessionStateItemCollection items ) : byte[]
items SessionStateItemCollection
return byte[]