System.Net.HttpServerSessionHandle.HttpServerSessionHandle C# (CSharp) Method

HttpServerSessionHandle() private method

private HttpServerSessionHandle ( ulong id ) : Microsoft.Win32.SafeHandles
id ulong
return Microsoft.Win32.SafeHandles
        internal HttpServerSessionHandle(ulong id) : base(true)
        {
            _serverSessionId = id;

            // This class uses no real handle so we need to set a dummy handle. Otherwise, IsInvalid always remains             
            // true.
            SetHandle(new IntPtr(1));
        }