#include "ltdic.h"
L_BOOL LDicomNet::IsActivated(L_VOID)
Indicates whether the connection has been activated. This function is available in the PACS Imaging Toolkit.
Value | Meaning |
---|---|
TRUE | The connection has been activated. |
FALSE | The connection has not been activated. |
A connection is activated by calling LDicomNet::Listen, LDicomNet::Connect, or LDicomNet::Accept. Therefore, if any of these functions have been called for the connection, this function will return TRUE. Otherwise it will return FALSE.
Required DLLs and Libraries
Win32, x64
L_INT LDicomNet__IsActivatedExample(LMyDicomNet *m_pDicomNet)
{
//LMyDicomNet is a class derived from LDicomNet
//m_pDicomNet is a member variable declared as:
// LMyDicomNet *m_pDicomNet;
//
//In this example, assume
//1. m_pDicomNet points to a valid object
//2. A connection exists between client and server
//3. An associate request has been sent
CString strMsg;
BOOL bActivated, bConnected, bAssociated;
bActivated = m_pDicomNet->IsActivated();
bConnected = m_pDicomNet->IsConnected();
bAssociated = m_pDicomNet->IsAssociated();
strMsg.Format(TEXT("IsActive[%d]\nIsConnected[%d]\nIsAssociated[%d]"), bActivated, bConnected, bAssociated);
AfxMessageBox(strMsg);
return DICOM_SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document