C#
Objective-C
C++
Notifies a connection when a Data message is received in ISCL mode.
protected virtual void OnReceivedISCLPacket(
DicomExceptionCode error,
IntPtr buffer,
int length
)
- (void)onReceivedISCLPacket:(LTDicomErrorCode)error buffer:(const void *)buffer length:(NSUInteger)length;
vb[VB Syntax]
Protected Overridable Sub OnReceivedISCLPacket(
ByVal _error_ As DicomExceptionCode,
ByVal _buffer_ As System.IntPtr,
ByVal _length_ As Integer
)
protected:
virtual void OnReceivedISCLPacket(
DicomExceptionCode^ error,
System::IntPtr buffer,
Int32 length
)
error
An error code.
buffer
Pointer to a buffer that contains the data that was received from the ISCL process.
length
The number of bytes of the data specified by buffer.
This function is called when data is received using ISCL security. If error is any code other than DicomExceptionCode.Success, then buffer is null. If error is DicomExceptionCode.Success then then buffer points to a valid buffer whose length is length.