Leadtools.Dicom.Networking Namespace > IDicomEvents Interface : OnAccept Method |
'Declaration Sub OnAccept( _ ByVal error As DicomExceptionCode, _ ByVal net As DicomNet, _ ByVal hHandle As Object _ )
'Usage Dim instance As IDicomEvents Dim error As DicomExceptionCode Dim net As DicomNet Dim hHandle As Object instance.OnAccept(error, net, hHandle)
To accept a connection request, call DicomNet.Accept.
You should always accept a connection request. Once the connection is made you can check the client and close the connection if you do not wish to maintain it. Since the connection requests are queued, if you do not accept a connection, it remains in the queue. When the next request is received, it is placed in the queue behind the first request. Calling DicomNet.Accept at this point will connect the first request, not the second, since the first request is still in the queue.