ln.snmp/channel/SnmpV2Channel.cs

18 lines
395 B
C#

using System;
namespace ln.snmp.channel
{
public class SnmpV2Channel : SnmpV1Channel
{
public override SnmpVersion SnmpVersion => SnmpVersion.V2c;
public SnmpV2Channel(SNMPEngine client)
: base(client)
{
}
public SnmpV2Channel(SNMPEngine client, string communityString)
: base(client, communityString)
{ }
}
}