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

Afficher le fichier Open project: debop/NFramework

Méthodes publiques

Méthode 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 méthode

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

GetMime() public static méthode

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

SerializeSessionState() public static méthode

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