CloseServiceHandle (advapi32)
Last changed: -213.208.105.101

.
Summary
The CloseServiceHandle function closes a handle to a service control manager or service object.

C# Signature:

[DllImport("advapi32.dll", SetLastError=true)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CloseServiceHandle( IntPtr hSCObject );

VB.Net Signature:

    <DllImport("advapi32.dll", SetLastError:=True)> _
    Private Shared Function CloseServiceHandle(ByVal serviceHandle As IntPtr) As Boolean
    End Function

VB Signature:

    Declare Function CloseServiceHandle Lib "advapi32.dll" (ByVal hSCObject As IntPtr) As Boolean

User-Defined Types:

None.

Notes:

Handles returned from CreateService must be closed using this function, rather than the standard CloseHandle

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation