AzureLogRepositoryFindAsync(String, String, CancellationToken) Method

Finds a single log entry by its Azure keys

Definition

Namespace: InnerDrive.Logging
Assembly: InnerDrive.Logging (in InnerDrive.Logging.dll) Version: 5.2.9417.0
C#
public Task<AzureLogEntry?> FindAsync(
	string partitionKey,
	string rowKey,
	CancellationToken cancellationToken = default
)

Parameters

partitionKey  String
The partition key to find
rowKey  String
The row key to find
cancellationToken  CancellationToken  (Optional)
A CancellationToken controlling the request lifetime.

Return Value

TaskAzureLogEntry
An AzureLogEntry, if found, or null

See Also