我将如何检查一个ObjectIdentifier
是否是另一个的父/根ObjectIdentifier
?
例如:
ObjectIdentifier rootId = ...;
Variable variable = ...;
if (rootId.IsRootOf(variable.Id))
{
// The variable's id is a child of root id!
}
我似乎在SnmpSharpNet中找不到任何类似的方法。
我将如何检查一个ObjectIdentifier
是否是另一个的父/根ObjectIdentifier
?
例如:
ObjectIdentifier rootId = ...;
Variable variable = ...;
if (rootId.IsRootOf(variable.Id))
{
// The variable's id is a child of root id!
}
我似乎在SnmpSharpNet中找不到任何类似的方法。