LDicomAssociate::SetRequest (original) (raw)

Summary

Sets the type of DICOM Associate (Request or Accept).

Syntax

#include "ltdic.h"

L_VOID LDicomAssociate::SetRequest(bRequest)

Parameters

L_BOOL 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.

Returns

None.

Comments

For more information about Associate Connections, refer to Creating a DICOM Associate Connection.

To determine what type of Associate a DICOM Associate is, call LDicomAssociate::IsRequest.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomAssociate_SetRequestExample(LDicomAssociate *m_pDicomAssociate) { //create the Associate Class as Request m_pDicomAssociate = new LDicomAssociate(TRUE); //set the Associate to the default m_pDicomAssociate->Default(); //Get presentations here if (m_pDicomAssociate->IsRequest()) AfxMessageBox (TEXT("Associate Request? TRUE")); else AfxMessageBox (TEXT("Associate Request? FALSE")); //reset the Associate class to Accept m_pDicomAssociate->SetRequest(FALSE); //set the Associate to the default m_pDicomAssociate->Default(); if (m_pDicomAssociate->IsRequest()) AfxMessageBox (TEXT("Associate Request? TRUE")); else AfxMessageBox (TEXT("Associate Request? FALSE")); //free the Associate class (destructor gets called) delete m_pDicomAssociate; return DICOM_SUCCESS; }