IHttpSessionState.Count 属性

定义

获取会话状态项集合中的项数。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

会话状态项集合中的项数。

示例

下面的代码示例实现 Count 接口的 IHttpSessionState 属性,以返回内部会话状态项集合中的项数。

public int Count
{
  get { return pSessionItems.Count; }
}
Public ReadOnly Property Count As Integer Implements IHttpSessionState.Count    
  Get
    Return pSessionItems.Count
  End Get
End Property

适用于

另请参阅