Echo Method (DicomGlobal)
In This Topic
Sends a DICOM verify (C-ECHO), with IP address, port number, callingAET,
calledAET to another application entity, and returns the
result
Sends a DICOM verify (C-ECHO) and returns the result
Syntax
'Declaration
Public Shared Function Echo( _
ByVal As String, _
ByVal As Integer, _
ByVal As String, _
ByVal As String _
) As Integer
'Usage
Dim Node As String
Dim Port As Integer
Dim CallingAET As String
Dim CalledAET As String
Dim value As Integer
value = DicomGlobal.Echo(Node, Port, CallingAET, CalledAET)
public static int Echo(
string ,
int ,
string ,
string
)
public:
static int Echo(
String^ ,
int ,
String^ ,
String^
)
Parameters
- Node
Remote entity name as IP address or resolvable name
- Port
Port to connect to
- CallingAET
Calling Application Entity Titles (AETs)
- CalledAET
Called Application Entity Titles (AETs)
Return Value
The status provided by the SCP. This should always be 0
Requirements
Target Platforms: .NET CLR 4.0 or higher
See Also