IHierarchyData.Path 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取节点的分层路径。
public:
property System::String ^ Path { System::String ^ get(); };
public string Path { get; }
member this.Path : string
Public ReadOnly Property Path As String
属性值
一个 String,标识相对当前节点的分层路径。
示例
下面的代码示例演示如何在实现接口的IHierarchyData类中实现Path属性。 类 FileSystemHierarchyData
包装对象 FileSystemInfo , Path 属性实现返回其文件系统路径。 此代码示例是接口和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 属性不应包含有关主机环境的任何敏感信息,因为它可能在数据绑定控件中呈现给客户端。