GetNodes
Overloads
| Name | Description |
|---|---|
| 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<string, List<int>> GetNodes(List<string> name, bool fullMatch)
노드 이름으로 노드 인덱스 반환
Parameters
| Name | Type | Description |
|---|---|---|
| name | List<string> | 노드 이름 목록 |
| fullMatch | bool | 노드 이름 전체 일치 여부 |
Returns
| Type | Description |
|---|---|
| Dictionary<string, List<int>> | Key : 노드 이름, Value : 인덱스 목록 |
GetNodes(List<string> name, bool fullMatch, bool assemblyOnly)
public Dictionary<string, List<Node>> GetNodes(List<string> name, bool fullMatch, bool assemblyOnly)
노드 이름으로 노드 목록 조회
Parameters
| Name | Type | Description |
|---|---|---|
| name | List<string> | 노드 이름 목록 |
| fullMatch | bool | 전체 이름 일치 여부 - True : 전체 이름 일치, False : 부분 일치 |
| assemblyOnly | bool | 어셈블리 노드만 반환 - True : 어셈블리 노드만 반환, False : 전체 노드 반환 |
Returns
| Type | Description |
|---|---|
| Dictionary<string, List<Node>> | Key : 노드 이름, Value : 노드 목록 |
GetNodes(string name)
public List<Node> GetNodes(string name)
해당 이름의 노드 반환
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | 노드 이름 |
Returns
| Type | Description |
|---|---|
| List<Node> | 해당 이름의 노드 목록 |
GetNodes(List<int> index, bool includeNodePath)
public List<Node> GetNodes(List<int> index, bool includeNodePath)
Get Node List
Parameters
| Name | Type | Description |
|---|---|---|
| index | List<int> | Node Index List |
| includeNodePath | bool | Include Node Path |
Returns
| Type | Description |
|---|---|
| List<Node> | Node List |
GetNodes(int[] index, bool includeNodePath)
public List<Node> GetNodes(int[] index, bool includeNodePath)
Get Node List
Parameters
| Name | Type | Description |
|---|---|---|
| index | Int32[] | Node Index Array |
| includeNodePath | bool | Include Node Path |
Returns
| Type | Description |
|---|---|
| List<Node> | Node List |