HttpApplicationStateBase.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 재정의되면 이름 또는 인덱스별로 HttpApplicationState 컬렉션에서 개체를 가져옵니다.
오버로드
Item[Int32] |
파생 클래스에서 재정의된 경우 인덱스를 기준으로 상태 개체를 가져옵니다. |
Item[String] |
파생 클래스에서 재정의된 경우 이름을 기준으로 상태 개체를 가져옵니다. |
Item[Int32]
파생 클래스에서 재정의된 경우 인덱스를 기준으로 상태 개체를 가져옵니다.
public:
virtual property System::Object ^ default[int] { System::Object ^ get(int index); };
public virtual object this[int index] { get; }
member this.Item(int) : obj
Default Public Overridable ReadOnly Property Item(index As Integer) As Object
매개 변수
- index
- Int32
컬렉션에 있는 개체의 인덱스입니다.
속성 값
index
으로 참조된 개체입니다.
예외
적용 대상
Item[String]
파생 클래스에서 재정의된 경우 이름을 기준으로 상태 개체를 가져옵니다.
public:
virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };
public virtual object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Overridable Property Item(name As String) As Object
매개 변수
- name
- String
컬렉션에 있는 개체의 이름입니다.
속성 값
name
으로 참조된 개체입니다.