Interface IFetchResult<TValue>

The typed results from a fetch operation issued to the server.

Inherited Members
IFetchResult.HasMore
IFetchResult.Count
IFetchResult.IsEmpty
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public interface IFetchResult<TValue> : IFetchResult
Type Parameters
Name Description
TValue

The value type.

Remarks

A fetch operation is issued using FetchAsync(String) which will return a result of this type via a Task.

Properties

Results

Gets the results from the fetch operation.

Declaration
IReadOnlyCollection<ITopicResult<TValue>> Results { get; }
Property Value
Type Description
IReadOnlyCollection<ITopicResult<TValue>>

The read-only list of topic results, each representing a single topic selected by the fetch operation.

Remarks

Results are always returned in path order.

Back to top