IHierarchyData.Path Propriété

Définition

Obtient le chemin d'accès hiérarchique du nœud.

public:
 property System::String ^ Path { System::String ^ get(); };
public string Path { get; }
member this.Path : string
Public ReadOnly Property Path As String

Valeur de propriété

String qui identifie le chemin d'accès hiérarchique relatif au nœud actuel.

Exemples

L’exemple de code suivant montre comment implémenter la Path propriété dans une classe qui implémente l’interface IHierarchyData . La FileSystemHierarchyData classe encapsule un FileSystemInfo objet et l’implémentation de la Path propriété retourne son chemin d’accès au système de fichiers. Cet exemple de code fait partie d’un exemple plus grand fourni pour l’interface IHierarchyData et la HierarchicalDataSourceControl classe .

// DirectoryInfo returns the OriginalPath, while FileInfo returns
// a fully qualified path.
public string Path
{
    get
    {
        return fileSystemObject.ToString();
    }
}
' DirectoryInfo returns the OriginalPath, while FileInfo returns
' a fully qualified path.

Public Overridable ReadOnly Property Path() As String _
 Implements IHierarchyData.Path
    Get
        Return fileSystemObject.ToString()
    End Get
End Property

Remarques

La Path propriété peut être passée à la GetHierarchicalView méthode pour récupérer l’objet HierarchicalDataSourceView qui correspond au nœud identifié par Path.

Attention

La Path propriété ne doit pas contenir d’informations sensibles sur l’environnement hôte, car elle peut être rendue au client dans un contrôle lié aux données.

S’applique à

Voir aussi