XDASrv Reference Manual
GetServerInstanceInfo Delegate
See Also  Send Feedback
NSPlugin Namespace : GetServerInstanceInfo Delegate




handle
num
info
Generic server callback to get information about one or all server instances. There is a server instance for each client connection.

Syntax

Visual Basic (Declaration) 
Public Delegate Function GetServerInstanceInfo( _
   ByVal handle As Integer, _
   ByRef num As Integer, _
   ByRef info As IntPtr _
) As Integer
Visual Basic (Usage)Copy Code
Dim instance As New GetServerInstanceInfo(AddressOf HandlerMethod)
C# 
public delegate int GetServerInstanceInfo( 
   int handle,
   out int num,
   out IntPtr info
)
Managed Extensions for C++ 
public: __gc __delegate int GetServerInstanceInfo( 
   int handle,
   [PARAMFLAG::Out] int num,
   [PARAMFLAG::Out] IntPtr info
)
C++/CLI 
public delegate int GetServerInstanceInfo( 
   int handle,
   [Out] int num,
   [Out] IntPtr info
)

Parameters

handle
num
info

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

Copyright © 2002-2011 Advosol Inc. All Rights Reserved.