GameSaveProvider.CreateContainerInfoQuery Method
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.
Overloads
CreateContainerInfoQuery() |
Creates a GameSaveContainerInfoQuery instance that enumerates all containers in this game save provider. |
CreateContainerInfoQuery(String) |
Creates a GameSaveContainerInfoQuery instance that enumerates the containers in this game save provider that have names that begin with the specified prefix. |
CreateContainerInfoQuery()
Creates a GameSaveContainerInfoQuery instance that enumerates all containers in this game save provider.
public:
virtual GameSaveContainerInfoQuery ^ CreateContainerInfoQuery() = CreateContainerInfoQuery;
/// [Windows.Foundation.Metadata.DefaultOverload]
/// [Windows.Foundation.Metadata.Overload("CreateContainerInfoQuery")]
GameSaveContainerInfoQuery CreateContainerInfoQuery();
[Windows.Foundation.Metadata.DefaultOverload]
[Windows.Foundation.Metadata.Overload("CreateContainerInfoQuery")]
public GameSaveContainerInfoQuery CreateContainerInfoQuery();
function createContainerInfoQuery()
Public Function CreateContainerInfoQuery () As GameSaveContainerInfoQuery
Returns
Type: GameSaveContainerInfoQuery
GameSaveContainerInfoQuery instance that enumerates all containers in this game save provider.
- Attributes
Remarks
Call GetContainerInfoAsync on the returned object to retrieve container information. Containers are enumerated in order of the most recently modified first.
See also
Applies to
CreateContainerInfoQuery(String)
Creates a GameSaveContainerInfoQuery instance that enumerates the containers in this game save provider that have names that begin with the specified prefix.
public:
virtual GameSaveContainerInfoQuery ^ CreateContainerInfoQuery(Platform::String ^ containerNamePrefix) = CreateContainerInfoQuery;
/// [Windows.Foundation.Metadata.Overload("CreateContainerInfoQueryWithName")]
GameSaveContainerInfoQuery CreateContainerInfoQuery(winrt::hstring const& containerNamePrefix);
[Windows.Foundation.Metadata.Overload("CreateContainerInfoQueryWithName")]
public GameSaveContainerInfoQuery CreateContainerInfoQuery(string containerNamePrefix);
function createContainerInfoQuery(containerNamePrefix)
Public Function CreateContainerInfoQuery (containerNamePrefix As String) As GameSaveContainerInfoQuery
Parameters
- containerNamePrefix
-
String
Platform::String
winrt::hstring
Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]
String name prefix of the containers to enumerate.
Returns
Type: GameSaveContainerInfoQuery
GameSaveContainerInfoQuery instance that enumerates the containers in this game save provider that have names that begin with the specified prefix.
- Attributes
Remarks
Call GetContainerInfoAsync on the returned object to retrieve container information.