interface
IRevision
public interface IRevision Properties
| Name | Type | Description |
|---|---|---|
VersionId virtual | Int64 | Unique index of this revision. |
FileCount virtual | Int64 | Number of files in this revision. |
TotalSize virtual | Int64 | Total size of all the files in this revision, in bytes. |
Summary virtual | String | A summary of the changes in this revision. |
Created virtual | DateTimeOffset | When this revision was created. |
EngineVersion virtual | Int32 | Engine version of this revision. TODO: How exactly is this different from EngineVersion? |
Manifest virtual | ManifestSchema | Manifest of the revision, describing what files are available. For this to be available you should call DownloadManifestAsync first. |
Methods
virtual Task DownloadManifestAsync(CancellationToken token = null) The manifest will not be immediately available until you've downloaded it.