Listen(Int32,String) Method
In This Topic
Open a TCP port to listen for incoming DICOM Connections, specified by port
number and IP address
Syntax
'Declaration
Public Overloads Sub Listen( _
ByVal As System.Integer, _
ByVal As System.String _
)
'Usage
Dim instance As DicomServer
Dim Port As System.Integer
Dim Address As System.String
instance.Listen(Port, Address)
public void Listen(
System.int ,
System.string
)
public procedure Listen(
: System.Integer;
: System.String
);
public function Listen(
: System.int,
: System.String
);
public: void Listen(
System.int ,
System.string*
)
public:
void Listen(
System.int ,
System.String^
)
Parameters
- Port
The TCP port on which to receive connections
- Address
IP address to listen on
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also