Echo Method (DicomGlobal)
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
public static System.int Echo(
System.string ,
System.int ,
System.string ,
System.string ,
System.string
)
public function Echo(
: System.String;
: System.Integer;
: System.String;
: System.String;
: System.String
): System.Integer; static;
public static function Echo(
: System.String,
: System.int,
: System.String,
: System.String,
: System.String
) : System.int;
public: static System.int Echo(
System.string* ,
System.int ,
System.string* ,
System.string* ,
System.string*
)
public:
static System.int Echo(
System.String^ ,
System.int ,
System.String^ ,
System.String^ ,
System.String^
)
'Declaration
Public Shared Function Echo( _
ByVal As System.String, _
ByVal As System.Integer, _
ByVal As System.String, _
ByVal As System.String, _
Optional ByVal As System.String _
) As System.Integer
'Usage
Dim Node As System.String
Dim Port As System.Integer
Dim CallingAET As System.String
Dim CalledAET As System.String
Dim LocalIP As System.String
Dim value As System.Integer
value = DicomGlobal.Echo(Node, Port, CallingAET, CalledAET, LocalIP)
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)
- LocalIP
- Optional Local IP Address to use for binding the outbound Socket
Return Value
The status provided by the SCP. This should always be 0
Target Platforms: .NET CLR 4.8 or higher