- error
- An error code.
Visual Basic (Declaration) | |
---|---|
Protected Overridable Sub OnAccept( _ ByVal error As DicomExceptionCode _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DicomNet Dim error As DicomExceptionCode instance.OnAccept(error) |
C# | |
---|---|
protected virtual void OnAccept( DicomExceptionCode error ) |
C++/CLI | |
---|---|
protected: virtual void OnAccept( DicomExceptionCode error ) |
Parameters
- error
- An error code.
To accept a connection request, call 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 Accept at this point will connect the first request, not the second, since the first request is still in the queue.
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)