SessionStateItemCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
세션 상태에 저장된 개체의 컬렉션입니다. 이 클래스는 상속될 수 없습니다.
public ref class SessionStateItemCollection sealed : System::Collections::Specialized::NameObjectCollectionBase, System::Collections::ICollection, System::Web::SessionState::ISessionStateItemCollection
public sealed class SessionStateItemCollection : System.Collections.Specialized.NameObjectCollectionBase, System.Collections.ICollection, System.Web.SessionState.ISessionStateItemCollection
type SessionStateItemCollection = class
inherit NameObjectCollectionBase
interface ISessionStateItemCollection
interface ICollection
interface IEnumerable
Public NotInheritable Class SessionStateItemCollection
Inherits NameObjectCollectionBase
Implements ICollection, ISessionStateItemCollection
- 상속
- 구현
예제
다음 코드 예제에서는 새 SessionStateItemCollection 개체 및 설정 하 고 이름으로 컬렉션의 값을 가져옵니다.
SessionStateItemCollection items = new SessionStateItemCollection();
items["LastName"] = "Wilson";
items["FirstName"] = "Dan";
foreach (string s in items.Keys)
Response.Write("items[\"" + s + "\"] = " + items[s].ToString() + "<br />");
Dim items As SessionStateItemCollection = New SessionStateItemCollection()
items("LastName") = "Wilson"
items("FirstName") = "Dan"
For Each s As String In items.Keys
Response.Write("items(""" & s & """) = " & items(s).ToString() & "<br />")
Next
설명
SessionStateItemCollection 클래스 세션 상태 변수 값은 변수 이름 또는 숫자 인덱스로 인덱싱할를 관리 하는 데 사용 됩니다. 세션 상태 변수를 사용 하 여 ASP.NET 애플리케이션 코드에 노출 되는 HttpSessionState 클래스를 사용 하 여 액세스할 수 있는 합니다 Session 속성이 현재 HttpContext 또는 Page합니다. HttpSessionState 클래스를 HttpSessionStateContainer 클래스를 사용 하 여 세션 상태 변수 값을 관리 하는 SessionStateItemCollection합니다.
상속자 참고
에 따라 사용자 지정 세션 상태 공급자를 만들 때 합니다 SessionStateStoreProviderBase 클래스를 사용 하 여는 SessionStateItemCollection 세션 상태에 저장 된 항목을 관리 하는 클래스입니다. 세션 상태 항목 관리를 구현 하는 사용자 지정 개체를 생성 해야 하는 경우는 ISessionStateItemCollection 인터페이스입니다.
생성자
SessionStateItemCollection() |
비어 있는 새 SessionStateItemCollection 개체를 만듭니다. |
속성
Count |
NameObjectCollectionBase 인스턴스에 포함된 키/값 쌍의 수를 가져옵니다. (다음에서 상속됨 NameObjectCollectionBase) |
Dirty |
컬렉션이 변경되었다고 표시되었는지 여부를 나타내는 값을 가져오거나 설정합니다. |
IsReadOnly |
NameObjectCollectionBase 인스턴스가 읽기 전용인지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 NameObjectCollectionBase) |
Item[Int32] |
숫자 인덱스별로 컬렉션의 값을 가져오거나 설정합니다. |
Item[String] |
이름별로 컬렉션의 값을 가져오거나 설정합니다. |
Keys |
컬렉션에 저장된 모든 값의 변수 이름 컬렉션을 가져옵니다. |
메서드
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
대상 배열의 지정된 인덱스에서 시작하여 전체 NameObjectCollectionBase을 호환되는 1차원 Array에 복사합니다. (다음에서 상속됨 NameObjectCollectionBase) |
ICollection.IsSynchronized |
NameObjectCollectionBase 개체에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 NameObjectCollectionBase) |
ICollection.SyncRoot |
NameObjectCollectionBase 개체에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. (다음에서 상속됨 NameObjectCollectionBase) |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET