ClaimedPosPrinter.ResetStatisticsAsync(IIterable<String>) 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.
Resets the specified statistics to zero for all statistics for the point-of-service printer that can be reset.
public:
virtual IAsyncOperation<bool> ^ ResetStatisticsAsync(IIterable<Platform::String ^> ^ statisticsCategories) = ResetStatisticsAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> ResetStatisticsAsync(IIterable<winrt::hstring> const& statisticsCategories);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> ResetStatisticsAsync(IEnumerable<string> statisticsCategories);
function resetStatisticsAsync(statisticsCategories)
Public Function ResetStatisticsAsync (statisticsCategories As IEnumerable(Of String)) As IAsyncOperation(Of Boolean)
Parameters
A list of the names of the statistics that you want to reset.
- An empty string ("") retrieves all statistics.
- "U_" retrieves all UnifiedPOS-defined statistics.
- "M_" retrieves all manufacturer-defined statistics.
- Name1 and/or Name2 retrieves specific named statistics as defined by the UnifiedPOS or manufacturer.
- Any combination of individual and group names (Name3, "U_", "M_"). .
Returns
An operation that returns true if the reset succeeds, or otherwise returns false.
- Attributes
Remarks
This method represents a change in state.