#include "ltdic.h"
virtual L_VOID LDicomNet::OnNonSecureSendISCL(nError, nType, nLength)
This function is called after data has been sent using the LDicomNet::SendNonSecureISCL function. This function is available in the PACS Imaging toolkits.
Error code. Refer to Return Codes.
Type of data transmitted. This can be either the first byte of the DICOM message or 0, if it cannot be identified.
The length of the sent data, in bytes.
None.
Required DLLs and Libraries
Win32, x64
L_VOID LMyDicomNet::OnNonSecureSendISCL(L_INT nError, L_UCHAR nType, L_UINT32 nLength)
{
UNREFERENCED_PARAMETER(nLength);
UNREFERENCED_PARAMETER(nType);
if(nError == DICOM_SUCCESS)
{
AfxMessageBox(TEXT("Data sent successfully"));
}
else
{
CString strTmp, strErrorCode;
if(nError == DICOM_ERROR_MEMORY)
strErrorCode = TEXT("Memory allocation error");
else
strErrorCode = TEXT("Unknown error");
strTmp.Format(TEXT("Error during sending data, code = %s, explanation is %s"), nError, strErrorCode);
AfxMessageBox(strTmp);
}
};
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