GetElement
Gets an element from the list.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: Unity.Android.Gradle.Manifest
- Assembly: Unity.Android.Gradle
GetElement(uint)
Gets an element from the list.
public T GetElement(uint elementID)
Parameters
Element ID.
Returns
Type | Description |
|---|---|
| T | The element from the list that matches the parameter. If there isn't a match, returns null. |
GetElement(Dictionary<string, string>)
Gets an element from the list.
public T GetElement(Dictionary<string, string> attributes)
Parameters
Dictionary of attributes that the element must include.
Returns
Type | Description |
|---|---|
| T | The element from the list that matches the parameter. If there isn't a match, returns null. |
GetElement(string, Dictionary<string, string>)
Gets an element from the list.
public T GetElement(string name, Dictionary<string, string> attributes)
Parameters
Element name.
Dictionary of attributes that the element must include.
Returns
Type | Description |
|---|---|
| T | The element from the list that matches the parameter. If there isn't a match, returns null. |