#include "ltdic.h"
L_VOID LDicomAssociate::SetRequest(bRequest)
L_BOOL bRequest; |
flag that indicates the type of Associate to set |
Sets the type of DICOM Associate (Request or Accept).
| Parameter | Description | |
| bRequest | Flag that indicates the type of DICOM Associate to set. Possible values are: | |
| Value | Meaning | |
| TRUE | Sets the DICOM Associate to Associate Request. | |
| FALSE | Sets the DICOM Associate to Associate Accept. | |
None.
For more information about Associate Connections, refer to Creating a DICOM Associate Connection.
To determine what type of Associate a DICOM Associate is, use LDicomAssociate::IsRequest.
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: |
L_INT LDicomAssociate_SetRequestExample(LDicomAssociate *m_pDicomAssociate){//create the Associate Class as Requestm_pDicomAssociate = new LDicomAssociate(TRUE);//set the Associate to the defaultm_pDicomAssociate->Default();//Get presentations hereif (m_pDicomAssociate->IsRequest())AfxMessageBox (TEXT("Associate Request? TRUE"));elseAfxMessageBox (TEXT("Associate Request? FALSE"));//reset the Associate class to Acceptm_pDicomAssociate->SetRequest(FALSE);//set the Associate to the defaultm_pDicomAssociate->Default();if (m_pDicomAssociate->IsRequest())AfxMessageBox (TEXT("Associate Request? TRUE"));elseAfxMessageBox (TEXT("Associate Request? FALSE"));//free the Associate class (destructor gets called)delete m_pDicomAssociate;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
