SessionChangeDescription.SessionId 属性
定义
获取关联会话的会话 ID。Gets the session ID for the associated session.
public:
property int SessionId { int get(); };
public int SessionId { get; }
member this.SessionId : int
Public ReadOnly Property SessionId As Integer
属性值
关联会话的会话 ID。The session ID for the associated session.
示例
下面的代码示例演示如何使用 SessionId OnSessionChange 派生自的类中方法的实现中的属性 ServiceBase 。The following code example shows the use of the SessionId property in an implementation of the OnSessionChange method in a class derived from ServiceBase. 此代码示例是为类提供的更大示例的一部分 ServiceBase 。This code example is part of a larger example provided for the ServiceBase class.
// Handle a session change notice
protected override void OnSessionChange(SessionChangeDescription changeDescription)
{
#if LOGEVENTS
EventLog.WriteEntry("SimpleService.OnSessionChange", DateTime.Now.ToLongTimeString() +
" - Session change notice received: " +
changeDescription.Reason.ToString() + " Session ID: " +
changeDescription.SessionId.ToString());
#endif
' Handle a session change notice
Protected Overrides Sub OnSessionChange(ByVal changeDescription As SessionChangeDescription)
#If LOGEVENTS Then
System.Diagnostics.EventLog.WriteEntry("SimpleService.OnSessionChange", DateTime.Now.ToLongTimeString() + " - Session change notice received: " + changeDescription.Reason.ToString() + " Session ID: " + changeDescription.SessionId.ToString())
#End If