Jump to content

wpQuerySrvrIdentity

From EDM2

This method is specific to version 3, or higher, of the OS/2 operating system.

This instance method returns the fully qualified server name of this network group.

Syntax

_wpQuerySrvrIdentity(somSelf)

Parameters

somSelf (WPServer *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPServer.

Returns

pszName (PSZ) - returns
Fully qualified server name of the server group.
For example, 'LSServer'.

How to Override

This method is generally not overridden.

Usage

This method is not covered in the provided text.

Remarks

This method is not covered in the provided text.

Example Code

#define INCL_WINWORKPLACE
#include <os2.h>

WPServer *somSelf; /* Pointer to the object on which the method is being invoked. */
PSZ pszName; /* Fully qualified server name of the server group. */

pszName = _wpQuerySrvrIdentity(somSelf);

Related Methods