Click or drag to resize
KaxSiteMapNodeCollectionFindNode Method
Returns the first KaxSiteMapNode that matches the conditions defined by the specified predicate. The predicate should returns a boolean value.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public KaxSiteMapNode FindNode(
	Predicate<KaxSiteMapNode> match
)

Parameters

match
Type: SystemPredicateKaxSiteMapNode
The Predicate <KaxSiteMapNode> that defines the conditions of the element to search for.

Return Value

Type: KaxSiteMapNode
Examples
The following example demonstrates how to use the FindNode method.
void Page_Load(object sender, EventArgs e)
{
    KaxSiteMap1.FindNode(NodeWithEqualsTextAndValue);
}
private static bool NodeWithEqualsTextAndValue(KaxSiteMapNode node)
{
    if (node.Text == node.Value)
    {
        return true;
    }
    else
    {
        return false;
    }
}
See Also