Entity.FindByPath(String, StringComparison, String, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回此實體下且符合確切搜尋路徑的實體清單。 路徑是實體名稱序列,並以特殊路徑分隔符/字串分隔。 例如,路徑字串可以是 「house/table/leg4」。。 在該範例中,此函式會搜尋名為 「house」 的直接子實體,從該處以遞歸方式搜尋名為 「table」 的子實體等等。 它只會傳回符合完整路徑的實體。
public:
System::Collections::Generic::IReadOnlyList<Microsoft::Azure::RemoteRendering::Entity ^> ^ FindByPath(System::String ^ path, Microsoft::Azure::RemoteRendering::StringComparison comparison, System::String ^ pathSeparator, int maxResultCount);
public System.Collections.Generic.IReadOnlyList<Microsoft.Azure.RemoteRendering.Entity> FindByPath (string path, Microsoft.Azure.RemoteRendering.StringComparison comparison, string pathSeparator, int maxResultCount);
member this.FindByPath : string * Microsoft.Azure.RemoteRendering.StringComparison * string * int -> System.Collections.Generic.IReadOnlyList<Microsoft.Azure.RemoteRendering.Entity>
Public Function FindByPath (path As String, comparison As StringComparison, pathSeparator As String, maxResultCount As Integer) As IReadOnlyList(Of Entity)
參數
- path
- String
相對於這個實體的路徑字串。 路徑分隔符/字串可以個別傳遞。
- comparison
- StringComparison
預先定義的字串比較方法,可比較每個路徑區段與實體的名稱。 請參閱 StringComparison。
- pathSeparator
- String
表示路徑字串中分隔符的單一字元(或非空白字串)。 例如,使用 “/” 或 “”。
- maxResultCount
- Int32
要尋找的實體數目上限。 使用 1 隻傳回第一個結果,或所有結果的負數。
傳回
符合輸入路徑的結果實體清單。
備註
路徑分隔符應該謹慎選擇,因此它不是實體名稱中潛在的字元序列。