@@ -234,7 +234,7 @@ _Details:_
234
234
235
235
``` c#
236
236
string query = $" /studies?StudyInstanceUID={studyInstanceUid }" ;
237
- DicomWebResponse response = await client .QueryAsync (query );
237
+ DicomWebResponse response = await client .QueryStudyAsync (query );
238
238
```
239
239
240
240
Validates that the response includes one study, and that the response code is OK.
@@ -249,7 +249,7 @@ _Details:_
249
249
250
250
``` c#
251
251
string query = $" /series?SeriesInstanceUID={seriesInstanceUid }" ;
252
- DicomWebResponse response = await client .QueryAsync (query );
252
+ DicomWebResponse response = await client .QuerySeriesAsync (query );
253
253
```
254
254
255
255
Validates that the response includes one series, and that the response code is OK.
@@ -264,7 +264,7 @@ _Details:_
264
264
265
265
``` c#
266
266
string query = $" /studies/{studyInstanceUid }/series?SeriesInstanceUID={seriesInstanceUid }" ;
267
- DicomWebResponse response = await client .QueryAsync ( query );
267
+ DicomWebResponse response = await client .QueryStudySeriesAsync ( studyInstanceUid , query );
268
268
```
269
269
270
270
Validates that the response includes one series, and that the response code is OK.
@@ -279,7 +279,7 @@ _Details:_
279
279
280
280
``` c#
281
281
string query = $" /instances?SOPInstanceUID={sopInstanceUid }" ;
282
- DicomWebResponse response = await client .QueryAsync (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 .QueryAsync ( 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.
@@ -305,11 +305,11 @@ This request searches for one or more instances within a single study and single
305
305
306
306
_ Details:_
307
307
308
- * GET /studies/{study}/series/{series}instances?SOPInstanceUID={instance}
308
+ * GET /studies/{study}/series/{series}/ instances?SOPInstanceUID={instance}
309
309
310
310
``` c#
311
311
string query = $" /studies/{studyInstanceUid }/series/{seriesInstanceUid }/instances?SOPInstanceUID={sopInstanceUid }" ;
312
- DicomWebResponse response = await client .QueryAsync ( query );
312
+ DicomWebResponse response = await client .QueryStudySeriesInstanceAsync ( studyInstanceUid , seriesInstanceUid , query );
313
313
```
314
314
315
315
Validates that the response includes one instance, and that the response code is OK.
@@ -362,4 +362,4 @@ DicomWebResponse response = await client.DeleteStudyAsync(studyInstanceUid);
362
362
363
363
This response deletes the blue-circle instance (it's the only element left in the series) from the server. If it's successful, the response status code contains no content.
364
364
365
- [ !INCLUDE [ DICOM trademark statement] ( ../includes/healthcare-apis-dicom-trademark.md )]
365
+ [ !INCLUDE [ DICOM trademark statement] ( ../includes/healthcare-apis-dicom-trademark.md )]
0 commit comments