IHttpSessionState.SessionID 属性

定义

获取会话的唯一会话标识符。

public:
 property System::String ^ SessionID { System::String ^ get(); };
public string SessionID { get; }
member this.SessionID : string
Public ReadOnly Property SessionID As String

属性值

会话 ID。

示例

下面的代码示例实现 SessionID 接口的 IHttpSessionState 属性。

public string SessionID
{
  get { return pId; }
}
Public ReadOnly Property SessionID As String Implements IHttpSessionState.SessionID
  Get
    Return pId
  End Get
End Property

适用于

另请参阅