ln.snmp/channel/SnmpV2Channel.cs

18 lines
395 B
C#
Raw Normal View History

2019-03-04 12:06:45 +01:00
using System;
namespace ln.snmp.channel
{
public class SnmpV2Channel : SnmpV1Channel
{
public override SnmpVersion SnmpVersion => SnmpVersion.V2c;
2019-03-04 13:01:59 +01:00
public SnmpV2Channel(SNMPEngine client)
2019-03-04 12:06:45 +01:00
: base(client)
{
}
2019-03-04 13:01:59 +01:00
public SnmpV2Channel(SNMPEngine client, string communityString)
2019-03-04 12:06:45 +01:00
: base(client, communityString)
{ }
}
}