PhoneCallHistoryStore.GetEntryReader 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
GetEntryReader() |
Retrieves a default phone call history entry that reads all entries. |
GetEntryReader(PhoneCallHistoryEntryQueryOptions) |
Retrieves an entry reader based on provided filters. |
GetEntryReader()
Retrieves a default phone call history entry that reads all entries.
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
Returns
A reader that can be used to go through the phone call log entries.
- Attributes
Windows requirements
App capabilities |
phoneCallHistory
phoneCallHistorySystem
phoneCallHistoryPublic
|
Remarks
Use GetEntryReader if you want to retrieve a reader for a limited subset of entries based on some query filters.
See also
Applies to
GetEntryReader(PhoneCallHistoryEntryQueryOptions)
Retrieves an entry reader based on provided filters.
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
Parameters
- queryOptions
- PhoneCallHistoryEntryQueryOptions
The options used to create a filtered entry reader.
Returns
A reader that can be used to go through the phone call log entries.
- Attributes
Windows requirements
App capabilities |
phoneCallHistory
phoneCallHistorySystem
phoneCallHistoryPublic
|
Remarks
Use queryOptions to create a reader that will only read the specified entries. If you want a reader that accesses all log entries, you can use GetEntryReader.