Functions | |
HRESULT | IDCXREQ::Send ([in] BSTR callingTitle, [in] BSTR calledTitle, [in] BSTR host, [in] unsigned short port, [in] BSTR fileList, [out] BSTR *succeededFilesList, [out] BSTR *failedFilesList) |
send one or more files over network connection using DICOM C-STORE commands. More... | |
HRESULT | IDCXREQ::SendObject ([in] BSTR callingTitle, [in] BSTR calledTitle, [in] BSTR host, [in] unsigned short port, [in] IDCXOBJ *obj) |
Send a DICOM Object Use the Send command to implement a C-STORE SCU. The SendObject command accepts a DCXOBJ. It goes over the object and check the SOP Classes and Transfer Syntaxes that should be negotiated in the Association. Then it initiates an Assocaition and sends the object. More... | |
HRESULT | rzdcxLib::IDCXREQEvents::OnFileSent (VARIANT_BOOL succeeded, BSTR filename) |
Called by Send after sending each file. More... | |
HRESULT rzdcxLib::IDCXREQEvents::OnFileSent | ( | VARIANT_BOOL | succeeded, |
BSTR | filename | ||
) |
Called by Send after sending each file.
succeeded | True if the file was sent successfuly. |
filename | The file that was sent |
HRESULT IDCXREQ::Send | ( | [in] BSTR | callingTitle, |
[in] BSTR | calledTitle, | ||
[in] BSTR | host, | ||
[in] unsigned short | port, | ||
[in] BSTR | fileList, | ||
[out] BSTR * | succeededFilesList, | ||
[out] BSTR * | failedFilesList | ||
) |
send one or more files over network connection using DICOM C-STORE commands.
Use the Send command to implement a C-STORE SCU. The send command accept a list of files to send. It goes over the files and check the SOP Classes and Transfer Syntaxes that should be negotiated in the Association. Then it initiates an Assocaition and sends the files.
callingTitle | Calling AE Title (us) |
calledTitle | Called AE Title (them) |
host | Host name or IP address (their) |
port | The port number they are listening to, |
fileList | A list of full path filenames to send. Use ; (semicolun) as a separator |
succeededFilesList | The list of files that were send successfully |
failedFilesList | The list of files that were not sent due to some error |
HRESULT IDCXREQ::SendObject | ( | [in] BSTR | callingTitle, |
[in] BSTR | calledTitle, | ||
[in] BSTR | host, | ||
[in] unsigned short | port, | ||
[in] IDCXOBJ * | obj | ||
) |
Send a DICOM Object Use the Send command to implement a C-STORE SCU. The SendObject command accepts a DCXOBJ. It goes over the object and check the SOP Classes and Transfer Syntaxes that should be negotiated in the Association. Then it initiates an Assocaition and sends the object.
callingTitle | Calling AE Title (us) |
calledTitle | Called AE Title (them) |
host | Host name or IP address (their) |
port | The port number they are listening to, |
obj | The object to send |