GameSaveProvider.ContainersChangedSinceLastSync Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called on a new GameSaveProvider instance, returns the names of containers that have changed since the application last ran.
public:
property IVectorView<Platform::String ^> ^ ContainersChangedSinceLastSync { IVectorView<Platform::String ^> ^ get(); };
IVectorView<winrt::hstring> ContainersChangedSinceLastSync();
public IReadOnlyList<string> ContainersChangedSinceLastSync { get; }
var iVectorView = gameSaveProvider.containersChangedSinceLastSync;
Public ReadOnly Property ContainersChangedSinceLastSync As IReadOnlyList(Of String)
Property Value
Type: IVectorView<;String>; [JavaScript/C++] | System.Collections.Generic.IReadOnlyList<;String>; [.NET]
String names of containers that changed since the application last ran.
Remarks
Game save containers can be written to from another device while an application is suspended or terminated. When the application resumes, ContainersChangedSinceLastSync will indicate the containers that were changed.