Available in LEADTOOLS Medical Imaging toolkits. |
#include "ltdic.h"
L_LTDIC_API L_INT L_DicomSendNDeleteRequest(hNet, nPresentationID, nMessageID, pszClass, pszInstance)
HDICOMNET hNet; |
/* a DICOM Network handle */ |
L_UCHAR nPresentationID; |
/* presentation ID */ |
L_UINT16 nMessageID; |
/* message ID */ |
L_TCHAR * pszClass; |
/* class type */ |
L_TCHAR * pszInstance; |
/* instance */ |
Sends an N-DELETE-REQ message to a peer member of a connection. This function is available in the PACS Imaging Toolkit.
Parameter |
Description |
hNet |
A DICOM Network handle to the peer member of the connection. |
nPresentationID |
Presentation ID. The presentation ID provides information about both the class type of the data and the transfer syntax to use when transferring the data. |
nMessageID |
Message ID. Each message sent by a member of a connection should have a unique ID. Since a member of a connection may send several messages, this ID allows that member to identify when a specific request has been completed. |
pszClass |
Class affected by the request. This will be an SOP Class or an SOP MetaClass. |
pszInstance |
The instance of the class. A server may, for example, have three instances of the Nuclear Medicine Class. This value specifies an instance. |
Returns
DICOM_SUCCESS |
The function was successful. |
>0 |
An error occurred. Refer to Return Codes. |
Comments
Calling this function generates a call to RECEIVENDELETEREQUESTCALLBACK on the SCP. The SCP should respond by calling L_DicomSendNDeleteResponse which will generate a call to RECEIVENDELETERESPONSECALLBACK.
This function requests that the SCP delete the specified SOP Instance.
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
See Also
Functions: |
L_DicomSendNDeleteResponse, RECEIVENDELETEREQUESTCALLBACK, RECEIVENDELETERESPONSECALLBACK |
Topics: |
Example
L_INT DicomSendNDeleteRequestExample(HDICOMNET hNet) { L_TCHAR szUID[200]; L_TCHAR szInstance[200]; L_TCHAR szMsg[200]; L_UCHAR nID; HDICOMPDU hPDU; L_INT nRet; /* send a Delete Request Command to the server */ hPDU = L_DicomGetAssociate(hNet); /* this sample uses fixed values */ lstrcpy(szUID, UID_SC_IMAGE_STORAGE); lstrcpy(szInstance, TEXT("1.2.840.113619.2.30.1.1762288927.1489.906240296.255")); nID = L_DicomFindAbstract(hPDU, szUID); if(nID == 0) { wsprintf(szMsg, TEXT("Abstract Syntax %s Not Supported by Association!"), szUID); MessageBox(NULL, szMsg, TEXT("Error"), MB_OK); } else { /* now, use the high-level method to send the command set */ nRet = L_DicomSendNDeleteRequest(hNet, nID, 1, szUID, szInstance); if (nRet != DICOM_SUCCESS) return nRet; } return DICOM_SUCCESS; }