- error
- An error code.
- pduType
- The type of data that was sent.
- buffer
- Pointer to a buffer that contains all the data that was sent. This includes the Command Set and any associated Data Set.
- bytes
- The number of bytes of the data specified by buffer.
| Visual Basic (Declaration) | |
|---|---|
Overrides Protected Sub OnReceive( _ ByVal error As DicomExceptionCode, _ ByVal pduType As DicomPduType, _ ByVal buffer As IntPtr, _ ByVal bytes As Integer _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
protected override void OnReceive( DicomExceptionCode error, DicomPduType pduType, IntPtr buffer, int bytes ) | |
| Managed Extensions for C++ | |
|---|---|
protected: void OnReceive( DicomExceptionCode error, DicomPduType pduType, IntPtr buffer, int bytes ) override | |
| C++/CLI | |
|---|---|
protected: void OnReceive( DicomExceptionCode error, DicomPduType pduType, IntPtr buffer, int bytes ) override | |
Parameters
- error
- An error code.
- pduType
- The type of data that was sent.
- buffer
- Pointer to a buffer that contains all the data that was sent. This includes the Command Set and any associated Data Set.
- bytes
- The number of bytes of the data specified by buffer.
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Copy Code