TcpStatusConnection Constructor (String)
|
Initializes a new status only instance of the
TcpStatusConnection class using the default status port of
DEFAULT_STATUS_TCP_PORT 9200.
Namespace:
Zebra.Sdk.Comm
Assembly:
SdkApi.Core (in SdkApi.Core.dll) Version: 2.15.2634
Syntax public TcpStatusConnection(
string address
)
Public Sub New (
address As String
)
public:
TcpStatusConnection(
String^ address
)
Parameters
- address
- Type: SystemString
The IP Address or DNS Hostname.
Remarks
This constructor will use the default timeouts for
Read. The default timeout is a maximum of 5 seconds for any data to be received.
If no more data is available after 500 milliseconds the read operation is assumed to be complete.
To specify timeouts other than the defaults, use:
TcpStatusConnection(String, Int32, Int32, Int32)See Also