다음을 통해 공유


ISessionStateItemCollection.Dirty 속성

정의

컬렉션이 변경되었다고 표시되었는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool Dirty { bool get(); void set(bool value); };
public bool Dirty { get; set; }
member this.Dirty : bool with get, set
Public Property Dirty As Boolean

속성 값

SessionStateItemCollection 내용이 변경되었으면 true이고, 그렇지 않으면 false입니다.

예제

다음 코드 예제에서는 구현을 보여 입니다는 Dirty 속성입니다. 인터페이스의 전체 구현 ISessionStateItemCollection 예제는 인터페이스 개요에 제공된 예제를 ISessionStateItemCollection 참조하세요.

private bool pDirty = false;

public bool Dirty
{
  get { return pDirty; }
  set { pDirty = value; }
}
Private pDirty As Boolean = False

Public Property Dirty As Boolean Implements ISessionStateItemCollection.Dirty    
  Get
    Return pDirty
  End Get
  Set
    pDirty = value
  End Set
End Property

설명

속성은 Dirty 구현의 SessionStateModule 값이 수정되었는지 여부를 확인하기 위해 에서 ISessionStateItemCollection 사용됩니다.

인터페이스를 ISessionStateItemCollection 구현할 때 속성을 로 false 초기화 Dirty 하고 , RemoveAt또는 Clear 메서드의 Remove구현에서 속성을 true 로 설정 Dirty 해야 합니다.

적용 대상

추가 정보