interface Package.IRevision
😔 No documentation found.
public long VersionId { get; }
Unique index of this revision.
public long FileCount { get; }
Number of files in this revision.
public long TotalSize { get; }
Total size of all the files in this revision, in bytes.
public DateTimeOffset Created { get; }
When this revision was created.
public int EngineVersion { get; }
Engine version of this revision. TODO: How exactly is this different from ?
public ManifestSchema Manifest { get; }
Manifest of the revision, describing what files are available. For this to be available you should call DownloadManifestAsync first.
public Task DownloadManifestAsync( CancellationToken token = null )
The manifest will not be immediately available until you've downloaded it.