본문으로 건너뛰기

GetNodes

Overloads

NameDescription
GetNodes(List<string> name, bool fullMatch)노드 이름으로 노드 인덱스 반환
GetNodes(List<string> name, bool fullMatch, bool assemblyOnly)노드 이름으로 노드 목록 조회
GetNodes(string name)해당 이름의 노드 반환
GetNodes(List<int> index, bool includeNodePath)Get Node List
GetNodes(int[] index, bool includeNodePath)Get Node List

GetNodes(List<string> name, bool fullMatch)

public Dictionary&lt;string, List&lt;int&gt;&gt; GetNodes(List&lt;string&gt; name, bool fullMatch)

노드 이름으로 노드 인덱스 반환

Parameters

NameTypeDescription
nameList<string>노드 이름 목록
fullMatchbool노드 이름 전체 일치 여부

Returns

TypeDescription
Dictionary<string, List<int>>Key : 노드 이름, Value : 인덱스 목록

GetNodes(List<string> name, bool fullMatch, bool assemblyOnly)

public Dictionary&lt;string, List&lt;Node&gt;&gt; GetNodes(List&lt;string&gt; name, bool fullMatch, bool assemblyOnly)

노드 이름으로 노드 목록 조회

Parameters

NameTypeDescription
nameList<string>노드 이름 목록
fullMatchbool전체 이름 일치 여부 - True : 전체 이름 일치, False : 부분 일치
assemblyOnlybool어셈블리 노드만 반환 - True : 어셈블리 노드만 반환, False : 전체 노드 반환

Returns

TypeDescription
Dictionary<string, List<Node>>Key : 노드 이름, Value : 노드 목록

GetNodes(string name)

public List&lt;Node&gt; GetNodes(string name)

해당 이름의 노드 반환

Parameters

NameTypeDescription
namestring노드 이름

Returns

TypeDescription
List<Node>해당 이름의 노드 목록

GetNodes(List<int> index, bool includeNodePath)

public List&lt;Node&gt; GetNodes(List&lt;int&gt; index, bool includeNodePath)

Get Node List

Parameters

NameTypeDescription
indexList<int>Node Index List
includeNodePathboolInclude Node Path

Returns

TypeDescription
List<Node>Node List

GetNodes(int[] index, bool includeNodePath)

public List&lt;Node&gt; GetNodes(int[] index, bool includeNodePath)

Get Node List

Parameters

NameTypeDescription
indexInt32[]Node Index Array
includeNodePathboolInclude Node Path

Returns

TypeDescription
List<Node>Node List