Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
SendDicomFiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alan Farhadi
SendDicomFiles
Commits
ba7beb66
Commit
ba7beb66
authored
May 10, 2020
by
alan.f
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change-dicomFiles-type
parent
ec5c0a7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Form1.cs
C-UI/Form1.cs
+1
-1
SCU_Store.cs
C-UI/SCU_Store.cs
+2
-2
No files found.
C-UI/Form1.cs
View file @
ba7beb66
...
...
@@ -25,7 +25,7 @@ namespace C_UI
string
fileExt
=
System
.
IO
.
Path
.
GetExtension
(
ofdUploadFile
.
FileName
);
if
(
result
==
DialogResult
.
OK
&&
fileExt
==
".dcm"
)
{
SCU_Store
.
StoreFile
(
cbxIPs
.
Text
,
int
.
Parse
(
txtPort
.
Text
),
ofdUploadFile
.
FileNames
.
ToObservable
()
,
txtServerAET
.
Text
,
txtAet
.
Text
);
SCU_Store
.
StoreFile
(
cbxIPs
.
Text
,
int
.
Parse
(
txtPort
.
Text
),
ofdUploadFile
.
FileNames
,
txtServerAET
.
Text
,
txtAet
.
Text
);
}
}
...
...
C-UI/SCU_Store.cs
View file @
ba7beb66
...
...
@@ -20,13 +20,13 @@ namespace C_UI
{
static
Logger
logger
=
LogManager
.
GetCurrentClassLogger
();
public
static
async
Task
StoreFile
(
string
_storeServerHost
,
int
_storeServerPort
,
IObservable
<
string
>
dicomFiles
public
static
async
Task
StoreFile
(
string
_storeServerHost
,
int
_storeServerPort
,
string
[]
dicomFiles
,
string
_aet
,
string
_storeServerAET
)
{
var
client
=
new
DicomClient
(
_storeServerHost
,
_storeServerPort
,
false
,
_storeServerAET
,
_aet
);
client
.
NegotiateAsyncOps
();
dicomFiles
.
Subscribe
(
dicomFiles
.
ToObservable
().
Subscribe
(
async
onNext
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment