#include "ltdic.h"
LDicomNet *LDicomNet::GetServer(L_VOID)
Returns the DICOM Network object of the SCP. This function is available in the Medical Imaging Suite Toolkit.
The DICOM Network object of the SCP connected to the SCU.
The object returned is valid only if the calling object is an SCU. If the calling object is an SCP, this function will return NULL.
Required DLLs and Libraries
LTDIC For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
Win32, x64
Functions: |
|
Topics: |
This example displays the number of clients connected to the some server.
L_INT LDicomNet_GetServerExample(LDicomNet *pNet)
{
L_TCHAR szText[200] = {0};
LDicomNet* pServer = pNet->GetServer();
if (pServer != NULL)
{
wsprintf(szText, TEXT("%u"), pServer->GetClientCount());
OutputDebugString(szText);
}
return DICOM_SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET