Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

TheĀ IViewModel interface now returns tasks instead of direct values to support async/await.

Updating Initialize method

Code Block
public override void Initialize()
{
    base.Initialize();
}

Must be changed in:

Code Block
public override async Task Initialize()
{
    await base.Initialize();
}

Updating Save method

Code Block
public override bool Save()
{
    return base.Save();
}

...