Connects an SCU to an SCP.
public void Connect(
string hostAddress,
int hostPort,
string peerAddress,
int peerPort
)
Public Sub Connect( _
ByVal hostAddress As String, _
ByVal hostPort As Integer, _
ByVal peerAddress As String, _
ByVal peerPort As Integer _
)
public void Connect(
string hostAddress,
int hostPort,
string peerAddress,
int peerPort
)
function Leadtools.Dicom.Networking.DicomNet.Connect(
hostAddress ,
hostPort ,
peerAddress ,
peerPort
)
public:
void Connect(
String^ hostAddress,
int hostPort,
String^ peerAddress,
int peerPort
)
hostAddress
The IP address of the host computer (the SCP's address).
hostPort
The port number of the host computer (the SCP's port).
peerAddress
The IP address of the peer computer to which to connect (the SCU's address).
peerPort
The port number of the peer computer to which to connect (the SCU's port).
If hostAddress is an empty string or a null reference (Nothing in VB), the IP address will be the local computer's address. If hostPort is 0, the port number will be the number of the first available port.
To connect to an SCP as an SCU, you must first create a DicomNet object. Then call Connect to establish the connection.
To use your computer as an SCP, you must first create a DicomNet object. Then call Listen to listen for incoming connection requests.
When an SCU calls this method, it generates a call to OnAccept on the SCP.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET