Compartir a través de


PhoneCallHistoryStore.GetEntryReader Método

Definición

Sobrecargas

GetEntryReader()

Recupera una entrada predeterminada del historial de llamadas telefónicas que lee todas las entradas.

GetEntryReader(PhoneCallHistoryEntryQueryOptions)

Recupera un lector de entrada basado en los filtros proporcionados.

GetEntryReader()

Recupera una entrada predeterminada del historial de llamadas telefónicas que lee todas las entradas.

public:
 virtual PhoneCallHistoryEntryReader ^ GetEntryReader() = GetEntryReader;
/// [Windows.Foundation.Metadata.Overload("GetEntryReader")]
PhoneCallHistoryEntryReader GetEntryReader();
[Windows.Foundation.Metadata.Overload("GetEntryReader")]
public PhoneCallHistoryEntryReader GetEntryReader();
function getEntryReader()
Public Function GetEntryReader () As PhoneCallHistoryEntryReader

Devoluciones

Lector que se puede usar para recorrer las entradas del registro de llamadas telefónicas.

Atributos

Requisitos de Windows

Características de aplicaciones
phoneCallHistory phoneCallHistorySystem phoneCallHistoryPublic

Comentarios

Use GetEntryReader si desea recuperar un lector para un subconjunto limitado de entradas en función de algunos filtros de consulta.

Consulte también

Se aplica a

GetEntryReader(PhoneCallHistoryEntryQueryOptions)

Recupera un lector de entrada basado en los filtros proporcionados.

public:
 virtual PhoneCallHistoryEntryReader ^ GetEntryReader(PhoneCallHistoryEntryQueryOptions ^ queryOptions) = GetEntryReader;
/// [Windows.Foundation.Metadata.Overload("GetEntryReaderWithOptions")]
PhoneCallHistoryEntryReader GetEntryReader(PhoneCallHistoryEntryQueryOptions const& queryOptions);
[Windows.Foundation.Metadata.Overload("GetEntryReaderWithOptions")]
public PhoneCallHistoryEntryReader GetEntryReader(PhoneCallHistoryEntryQueryOptions queryOptions);
function getEntryReader(queryOptions)
Public Function GetEntryReader (queryOptions As PhoneCallHistoryEntryQueryOptions) As PhoneCallHistoryEntryReader

Parámetros

queryOptions
PhoneCallHistoryEntryQueryOptions

Las opciones usadas para crear un lector de entrada filtrado.

Devoluciones

Lector que se puede usar para recorrer las entradas del registro de llamadas telefónicas.

Atributos

Requisitos de Windows

Características de aplicaciones
phoneCallHistory phoneCallHistorySystem phoneCallHistoryPublic

Comentarios

Use queryOptions para crear un lector que solo leerá las entradas especificadas. Si desea un lector que tenga acceso a todas las entradas de registro, puede usar GetEntryReader.

Consulte también

Se aplica a