Perform SNMP version 3 discovery operation. This is the first operation that needs to be performed on a newly accessed agent to retrieve agentId, agentBoots and agentTime values, critical for further authentication and privacy operations.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public bool Discovery(
	SecureAgentParameters param
)
Public Function Discovery ( _
	param As SecureAgentParameters _
) As Boolean
public:
bool Discovery(
	SecureAgentParameters^ param
)

Parameters

param
SecureAgentParameters
SecureAgentParameters class instance that will be updated with discovered agent values. This class with be reset to its defaults prior to agent discovered values so do not store any critical information in it prior to calling the discovery method

Return Value

True if discovery operation was a success, otherwise false

See Also