- sopInstanceUID
- The SOP Instance UID String value for the retrieved image.
- datasetPath
- The physical DicomDataSet path for the retrieved image.
- dataset
- The DicomDataSet object that is retrieved.
Visual Basic (Declaration) | |
---|---|
Protected Sub OnDicomDataSetReceived( _ ByVal sopInstanceUID As String, _ ByVal datasetPath As String, _ ByVal dataset As DicomDataSet _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
protected void OnDicomDataSetReceived( string sopInstanceUID, string datasetPath, DicomDataSet dataset ) |
C++/CLI | |
---|---|
protected: void OnDicomDataSetReceived( String^ sopInstanceUID, String^ datasetPath, DicomDataSet dataset ) |
Parameters
- sopInstanceUID
- The SOP Instance UID String value for the retrieved image.
- datasetPath
- The physical DicomDataSet path for the retrieved image.
- dataset
- The DicomDataSet object that is retrieved.
Derived classes should call this method whenever they receive a new DicomDataSet.
This method will store the information and if the LoadRetrievedDataSet member is set to true the received DicomDataSet will be copied in memory and sent in the RetrieveClient.InstanceReceived event. This will allow derived classes to free any resources they have for the dataset object.
Calling this method while the Processing property is true will result in an InvalidOperationException being thrown.
If the operation is cancelled this method will throw a ClientCommunicationCanceled exception.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family