Vixen
02b45cc4
csharp
public record class ImportOutcome

What happened to one asset.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (6)

  • public AssetId Asset

    Which asset.

  • public string? Importer

    Which importer claimed it, or if none did.

  • public bool WasCached

    Whether the importer was skipped because nothing had changed.

  • public bool Succeeded

    Whether it came out with no errors.

  • public ImportRecord? Record

    What it produced, or the previous record on a cache hit.

  • public IReadOnlyList<ImportDiagnostic> Diagnostics

    Everything the importer said. Empty on a cache hit.

Methods (1)

  • public ImportOutcome(AssetId Asset, string? Importer, bool WasCached, bool Succeeded, ImportRecord? Record, IReadOnlyList<ImportDiagnostic> Diagnostics)

    What happened to one asset.

Used by (6)

  • ContentPipelineVixen.Editor.Assets
  • ContentPipelineTestsVixen.Editor.Assets.Tests
  • ImportPipelineVixen.Editor.Assets
  • ImportPipelineTestsVixen.Editor.Assets.Tests
  • ImportProgressVixen.Editor.Assets
  • ImportRunnerVixen.Cli