Class FetchResult<T>
Represents information regarding the result of a deployment
Inherited Members
Namespace: Unity.Services.DeploymentApi.Editor
Assembly: Unity.Services.DeploymentApi.dll
Syntax
public class FetchResult<T> where T : IDeploymentItem
Type Parameters
| Name | Description |
|---|---|
| T | The DeploymentItem type |
Constructors
FetchResult()
Creates a new instance of the DeploymentResult
Declaration
public FetchResult()
FetchResult(IReadOnlyList<T>)
Creates a new instance of the DeploymentResult from a specified list
Declaration
public FetchResult(IReadOnlyList<T> items)
Parameters
| Type | Name | Description |
|---|---|---|
| IReadOnlyList<T> | items | The items |
Properties
Fetched
The items affected by the operation.
Declaration
public List<T> Fetched { get; }
Property Value
| Type | Description |
|---|---|
| List<T> |