Visual Basic (Declaration) | |
---|---|
Public Sub Connect( _ ByVal hostAddress As String, _ ByVal hostPort As Integer, _ ByVal peerAddress As String, _ ByVal peerPort As Integer _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public void Connect( string hostAddress, int hostPort, string peerAddress, int peerPort ) |
Managed Extensions for C++ | |
---|---|
public: void Connect( string* hostAddress, int hostPort, string* peerAddress, int peerPort ) |
C++/CLI | |
---|---|
public: void Connect( String^ hostAddress, int hostPort, String^ peerAddress, int peerPort ) |
Parameters
- hostAddress
- The IP address of the host computer (the SCU's address).
- hostPort
- The port number of the host computer (the SCU's port).
- peerAddress
- The IP address of the peer computer to which to connect (the SCP's address).
- peerPort
- The port number of the peer computer to which to connect (the SCP's port).
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.
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family