IHierarchyData.Path 属性

定义

获取节点的分层路径。

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

属性值

String

一个 String,标识相对当前节点的分层路径。

示例

下面的代码示例演示如何在实现接口的IHierarchyData类中实现Path属性。 类 FileSystemHierarchyData 包装对象 FileSystemInfoPath 属性实现返回其文件系统路径。 此代码示例是接口和HierarchicalDataSourceControl类提供的更大示例的IHierarchyData一部分。

// 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

注解

Path该属性可以传递给GetHierarchicalView方法,以检索HierarchicalDataSourceView与标识的Path节点对应的对象。

注意

Path 属性不应包含有关主机环境的任何敏感信息,因为它可能在数据绑定控件中呈现给客户端。

适用于

另请参阅