forked from DICOMcloud/DICOMcloud.Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
23 lines (20 loc) · 766 Bytes
/
Copy pathProgram.cs
File metadata and controls
23 lines (20 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace DICOMcloud.Examples.Net
{
class Program
{
static void Main(string[] args)
{
//new QidoExample ( ).QueryStudies ( ) ;
//new WadoUrlExample ( ).DownloadDicom ( "1.2.276.0.7230010.3.1.3.3969987548.1736.1477529664.531",
// "1.3.12.2.1107.5.1.4.59001.30000016102701304708400000484",
// "1.3.12.2.1107.5.1.4.59001.30000016102701304708400000485") ;
//new StowExample ( ).StoreDicomInDirectory ( @"D:\cloudImages");
}
}
}