Table of Contents

Interface IFetchResult<TValue>

Namespace
PushTechnology.ClientInterface.Client.Features
Assembly
Diffusion.Client.dll

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

public interface IFetchResult<TValue> : IFetchResult

Type Parameters

TValue

The value type.

Inherited Members

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.

IReadOnlyCollection<ITopicResult<TValue>> Results { get; }

Property Value

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.