GetLineageAsync Method
Overloads
| GetLineageAsync() |
Gets the lineage information of the app. The lineage information includes the LOAD and STORE statements from the data load script associated with this app. An array of lineage information. |
|
| GetLineageAsync(AsyncHandle) |
Gets the lineage information of the app. The lineage information includes the LOAD and STORE statements from the data load script associated with this app. An array of lineage information. |
|
| GetLineageAsync<T>(AsyncHandle, Func<Response, T>) |
Gets the lineage information of the app. The lineage information includes the LOAD and STORE statements from the data load script associated with this app. An array of lineage information. |
GetLineageAsync()
Gets the lineage information of the app. The lineage information includes the LOAD and STORE statements from the data load script associated with this app.
An array of lineage information.
Declaration
Task<IEnumerable<LineageInfo>> GetLineageAsync()
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<LineageInfo>> |
GetLineageAsync(AsyncHandle)
Gets the lineage information of the app. The lineage information includes the LOAD and STORE statements from the data load script associated with this app.
An array of lineage information.
Declaration
Task<IEnumerable<LineageInfo>> GetLineageAsync(AsyncHandle asyncHandle)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<LineageInfo>> |
GetLineageAsync<T>(AsyncHandle, Func<Response, T>)
Gets the lineage information of the app. The lineage information includes the LOAD and STORE statements from the data load script associated with this app.
An array of lineage information.
Declaration
Task<T> GetLineageAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Func<Response, T> | onResult |
Continuation function |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T |