File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/healthcare-apis/dicom Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ _Details:_
279
279
280
280
``` c#
281
281
string query = $" /instances?SOPInstanceUID={sopInstanceUid }" ;
282
- DicomWebResponse response = await client .QueryStudyAsync (query );
282
+ DicomWebResponse response = await client .QueryInstancesAsync (query );
283
283
```
284
284
285
285
Validates that the response includes one instance, and that the response code is OK.
@@ -294,7 +294,7 @@ _Details:_
294
294
295
295
``` c#
296
296
string query = $" /studies/{studyInstanceUid }/instances?SOPInstanceUID={sopInstanceUid }" ;
297
- DicomWebResponse response = await client .QueryStudyAsync ( query );
297
+ DicomWebResponse response = await client .QueryStudyInstanceAsync ( studyInstanceUid , query );
298
298
```
299
299
300
300
Validates that the response includes one instance, and that the response code is OK.
You can’t perform that action at this time.
0 commit comments