SnmpSharpNet.SnmpV3Packet.BuildInformResponse C# (CSharp) Метод

BuildInformResponse() публичный Метод

Build SNMP RESPONSE packet for the received INFORM packet.
public BuildInformResponse ( ) : SnmpV3Packet
Результат SnmpV3Packet
        public SnmpV3Packet BuildInformResponse()
        {
            return SnmpV3Packet.BuildInformResponse(this);
        }

Same methods

SnmpV3Packet::BuildInformResponse ( SnmpV3Packet informPacket ) : SnmpV3Packet

Usage Example

Пример #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));
 }