mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
ac46e42aa2
... from http://git.savannah.gnu.org/cgit/lwip/lwip-contrib.git/ into contrib/ subdir, STABLE-2_1_0_RELEASE tag lwIP contrib is now officially frozen TODO: Fix build
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Lextm.SharpSnmpLib.Mib
|
|
{
|
|
public class ObjectIdentifier: List<KeyValuePair<string, uint>>
|
|
{
|
|
public void Add(string name, uint oid)
|
|
{
|
|
this.Add(new KeyValuePair<string, uint>(name, oid));
|
|
}
|
|
|
|
public void Prepend(string name, uint oid)
|
|
{
|
|
this.Insert(0, new KeyValuePair<string, uint>(name, oid));
|
|
}
|
|
|
|
public void Insert(int index, string name, uint oid)
|
|
{
|
|
this.Insert(index, new KeyValuePair<string, uint>(name, oid));
|
|
}
|
|
|
|
public string GetOidString()
|
|
{
|
|
StringBuilder result = new StringBuilder();
|
|
|
|
foreach (KeyValuePair<string, uint> level in this)
|
|
{
|
|
result.Append(level.Value);
|
|
result.Append('.');
|
|
}
|
|
|
|
if (result.Length > 0)
|
|
{
|
|
result.Length--;
|
|
}
|
|
|
|
return result.ToString();
|
|
}
|
|
|
|
public uint[] GetOidValues()
|
|
{
|
|
List<uint> result = new List<uint>();
|
|
|
|
foreach (KeyValuePair<string, uint> level in this)
|
|
{
|
|
result.Add(level.Value);
|
|
}
|
|
|
|
return result.ToArray();
|
|
}
|
|
|
|
}
|
|
}
|