WTSCloseServer (wtsapi32)
Last changed: -212.238.185.167

.
Summary
The WTSCloseServer function closes an open handle to a terminal server.

C# Signature:

[DllImport("wtsapi32.dll")]
static extern void WTSCloseServer(IntPtr hServer);

VB Signature:

    <DllImport("wtsapi32.dll", CharSet:=CharSet.Auto, SetLastError:=True)> _
     Private Shared Sub WTSCloseServer(ByVal hServer As IntPtr)
    End Sub

User-Defined Types:

None.

Notes:

Call the WTSCloseServer function as part of your program's clean-up routine to close all the server handles opened by calls to the WTSOpenServer function.

Tips & Tricks:

Do not specify WTS_CURRENT_SERVER_HANDLE for hServer parameter.

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation