Vixen
dd8b0a81
csharp
public sealed class SavedAssetSet

One named set of assets: what somebody put in it, never a query.

Read the guide page for this →

Remarks

⚠ The result and not the query, which is the whole difference between this and SavedAssetFilter. Doc 20 § B1 asks for both and they are the same storage question with opposite answers: a filter re-runs and finds what has arrived since it was named, a collection holds exactly what was put in it and goes on holding it after those files have been moved, renamed and re-imported.

⚠ Named a set although everything a person sees calls it a collection, because CA1711 reserves the Collection suffix for types that are one — this holds a list, it is not a list — and a suppression to keep the prettier name would be a rule turned off for a naming preference.

Fields and properties (2)

  • public string Name

    What the user called it.

  • public List<AssetId> Assets

    What is in it, by identity.

Used by (6)

  • AssetCollectionsVixen.Editor.App
  • BrowserCollectionTestsVixen.Editor.App.Tests
  • EditorApplicationVixen.Editor.App
  • EditorSessionVixen.Editor.Testing
  • ProjectBrowserVixen.Editor.App
  • TypeRegistrationVixen.Editor.App