GameSaveProvider.ContainersChangedSinceLastSync Property

Definition

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

IVectorView<String>

IReadOnlyList<String>

IVectorView<Platform::String>

IVectorView<winrt::hstring>

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.

Applies to

See also