Constructor.

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public UdpTarget(
	IPAddress peer,
	int port,
	int timeout,
	int retry
)
Public Sub New ( _
	peer As IPAddress, _
	port As Integer, _
	timeout As Integer, _
	retry As Integer _
)
public:
UdpTarget(
	IPAddress^ peer, 
	int port, 
	int timeout, 
	int retry
)

Parameters

peer
IPAddress
SNMP peer IP address
port
Int32
SNMP peer UDP port number
timeout
Int32
SNMP peer timeout in milliseconds
retry
Int32
SNMP peer maximum retires setting. Value of 0 will result in a single request with no retries.

See Also