SnmpSharpNet.SnmpV2Packet.BuildInformResponse C# (CSharp) Method

BuildInformResponse() public method

Build SNMP RESPONSE packet for the received INFORM packet.
public BuildInformResponse ( ) : SnmpV2Packet
return SnmpV2Packet
        public SnmpV2Packet BuildInformResponse()
        {
            return SnmpV2Packet.BuildInformResponse(this);
        }

Same methods

SnmpV2Packet::BuildInformResponse ( SnmpV2Packet informPacket ) : SnmpV2Packet

Usage Example

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