Udostępnij za pośrednictwem


SiteMapNode.GetAllNodes Metoda

Definicja

Pobiera kolekcję tylko do odczytu wszystkich SiteMapNode obiektów, które są elementami podrzędnymi węzła wywołującego, niezależnie od stopnia separacji.

public:
 System::Web::SiteMapNodeCollection ^ GetAllNodes();
public System.Web.SiteMapNodeCollection GetAllNodes ();
member this.GetAllNodes : unit -> System.Web.SiteMapNodeCollection
Public Function GetAllNodes () As SiteMapNodeCollection

Zwraca

SiteMapNodeCollection

Tylko SiteMapNodeCollection do odczytu, który reprezentuje wszystkie elementy podrzędne obiektu SiteMapNode w zakresie bieżącego dostawcy.

Przykłady

W poniższym przykładzie kodu pokazano, jak pobrać wszystkie węzły podrzędne obiektu RootNode za GetAllNodes pomocą metody .

SiteMapNodeCollection siteNodes = SiteMap.RootNode.GetAllNodes();

if ( siteNodes.IsReadOnly ||
     siteNodes.IsFixedSize )
{
    Response.Write("Collection is read-only or has fixed size.<BR>");

    // Create a new, modifiable collection from the existing one.
    SiteMapNodeCollection modifiableCollection =
         new SiteMapNodeCollection(siteNodes);

    // The MoveNode example method moves a node from position one to
    // the last position in the collection.
    MoveNode(modifiableCollection);
}
else {
    MoveNode(siteNodes);
}

Dim siteNodes As SiteMapNodeCollection
siteNodes = SiteMap.RootNode.GetAllNodes()

If siteNodes.IsReadOnly Or siteNodes.IsFixedSize Then

    Response.Write("Collection is read-only or has fixed size.<BR>")

    ' Create a new, modifiable collection from the existing one.
    Dim modifiableCollection As SiteMapNodeCollection
    modifiableCollection = New SiteMapNodeCollection(siteNodes)

    ' The MoveNode example method moves a node from position one to
    ' the last position in the collection.
    MoveNode(modifiableCollection)
Else
    MoveNode(siteNodes)
End If

Uwagi

Ta metoda pobiera natychmiastowe węzły podrzędne i wszystkie ich węzły podrzędne rekursywnie.

Dotyczy

Zobacz też