Compartir a través de


ActivitySensor.GetSystemHistoryAsync Método

Definición

Sobrecargas

GetSystemHistoryAsync(DateTime)

Obtiene de forma asincrónica las lecturas del sensor desde un momento específico.

GetSystemHistoryAsync(DateTime, TimeSpan)

Obtiene de forma asincrónica las lecturas del sensor de un tiempo y una duración específicos.

GetSystemHistoryAsync(DateTime)

Obtiene de forma asincrónica las lecturas del sensor desde un momento específico.

public:
 static IAsyncOperation<IVectorView<ActivitySensorReading ^> ^> ^ GetSystemHistoryAsync(DateTime fromTime);
/// [Windows.Foundation.Metadata.Overload("GetSystemHistoryAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<ActivitySensorReading>> GetSystemHistoryAsync(DateTime const& fromTime);
[Windows.Foundation.Metadata.Overload("GetSystemHistoryAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<ActivitySensorReading>> GetSystemHistoryAsync(System.DateTimeOffset fromTime);
function getSystemHistoryAsync(fromTime)
Public Shared Function GetSystemHistoryAsync (fromTime As DateTimeOffset) As IAsyncOperation(Of IReadOnlyList(Of ActivitySensorReading))

Parámetros

fromTime
DateTime DateTimeOffset

Hora a la que se van a leer los sensores.

Devoluciones

Devuelve de forma asincrónica una lista de objetos ActivitySensorReading que representan información sobre el sensor.

Atributos

Consulte también

Se aplica a

GetSystemHistoryAsync(DateTime, TimeSpan)

Obtiene de forma asincrónica las lecturas del sensor de un tiempo y una duración específicos.

public:
 static IAsyncOperation<IVectorView<ActivitySensorReading ^> ^> ^ GetSystemHistoryAsync(DateTime fromTime, TimeSpan duration);
/// [Windows.Foundation.Metadata.Overload("GetSystemHistoryWithDurationAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<IVectorView<ActivitySensorReading>> GetSystemHistoryAsync(DateTime const& fromTime, TimeSpan const& duration);
[Windows.Foundation.Metadata.Overload("GetSystemHistoryWithDurationAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IReadOnlyList<ActivitySensorReading>> GetSystemHistoryAsync(System.DateTimeOffset fromTime, System.TimeSpan duration);
function getSystemHistoryAsync(fromTime, duration)
Public Shared Function GetSystemHistoryAsync (fromTime As DateTimeOffset, duration As TimeSpan) As IAsyncOperation(Of IReadOnlyList(Of ActivitySensorReading))

Parámetros

fromTime
DateTime DateTimeOffset

Hora a la que se van a leer los sensores.

duration
TimeSpan TimeSpan

Intervalo de tiempo durante el que se van a obtener lecturas del sensor.

Devoluciones

Devuelve de forma asincrónica una lista de objetos ActivitySensorReading que representan información sobre el sensor.

Atributos

Consulte también

Se aplica a