Entity.GetRootPath(String) 方法

定义

返回此实体的路径字符串,从根实体开始。 路径是由特殊路径分隔符字符/字符串分隔的实体名称序列。 可能的路径可能如下所示:“root/house/table/leg4”。

public:
 System::String ^ GetRootPath(System::String ^ pathSeparator);
public string GetRootPath (string pathSeparator);
member this.GetRootPath : string -> string
Public Function GetRootPath (pathSeparator As String) As String

参数

pathSeparator
String

在实体名称之间插入的单个字符(或非空字符串)。 例如,使用“/”或“”。

返回

描述路径的字符串。

注解

应仔细选择路径分隔符,因此它不是实体名称中潜在的字符序列。 若要描述父项和其下实体之间的相对路径,只需获取这两者的根路径,并通过父路径的长度加上分隔符长度来剪裁子级路径字符串的开头。

适用于