Class AgentFoundEventArgs
- Namespace
- Lextm.SharpSnmpLib.Messaging
- Assembly
- SharpSnmpLib.dll
Event arguments for agent found event.
public sealed class AgentFoundEventArgs : EventArgs
- Inheritance
-
AgentFoundEventArgs
- Inherited Members
Constructors
AgentFoundEventArgs(IPEndPoint, Variable?)
Initializes a new instance of the AgentFoundEventArgs class.
public AgentFoundEventArgs(IPEndPoint agent, Variable? variable)
Parameters
agent
IPEndPointThe agent.
variable
VariableThe variable.
Properties
Agent
Gets the agent.
public IPEndPoint Agent { get; }
Property Value
- IPEndPoint
The agent.
Variable
Gets the variable.
public Variable? Variable { get; }
Property Value
- Variable
The variable.
Remarks
If the agent is SNMP v3, this is null
.