SnmpSharpNet.SnmpV3Packet.BuildInformResponse C# (CSharp) Méthode

BuildInformResponse() public méthode

Build SNMP RESPONSE packet for the received INFORM packet.
public BuildInformResponse ( ) : SnmpV3Packet
Résultat SnmpV3Packet
        public SnmpV3Packet BuildInformResponse()
        {
            return SnmpV3Packet.BuildInformResponse(this);
        }

Same methods

SnmpV3Packet::BuildInformResponse ( SnmpV3Packet informPacket ) : SnmpV3Packet

Usage Example

Exemple #1
0
 /// <summary>
 /// Build SNMP RESPONSE packet for the received INFORM packet.
 /// </summary>
 /// <returns>SNMP version 3 packet containing RESPONSE to the INFORM packet contained in the class instance.</returns>
 public SnmpV3Packet BuildInformResponse()
 {
     return(SnmpV3Packet.BuildInformResponse(this));
 }