Share via


BarcodeScanner.RetrieveStatisticsAsync method (Handheld 8)

2/18/2014

Retrieves the requested statistics from the barcode scanner.

Syntax

public IAsyncOperation<IBuffer> RetrieveStatisticsAsync(
    IEnumerable<string> statisticsCategories
)
Public Function RetrieveStatisticsAsync(
    statisticsCategories As IEnumerable(Of String)
) As IAsyncOperation(Of IBuffer)
public:
IAsyncOperation<IBuffer>^ RetrieveStatisticsAsync(
    IIterable<String^>^ statisticsCategories
)

Parameters

  • statisticsCategories
    Type: System.Collections.Generic.IEnumerable<String> [.NET] | IIterable<String> [C++]

    Comma-separated list of statistics to retrieve.

    • An empty string ("") retrieves all statistics.
    • "U_" retrieves all UnifiedPOS-defined statistics.
    • "M_" retrieves all manufacturer-defined statistics.
    • "<name1>, <name2>" retrieves specific named statistics as defined in the XML file definitions.

Return value

Type: IAsyncOperation<IBuffer>

IBuffer representing the requested statistics.

See Also

Reference

BarcodeScanner class