Interface ITopicResult<TValue>

The result of a FetchAsync(String) invocation for a single selected topic.

Inherited Members
ITopicResult.Path
ITopicResult.Type
ITopicResult.Specification
ITopicResult.ValueSize
ITopicResult.ValueCount
ITopicResult.ValueTotalSize
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public interface ITopicResult<TValue> : ITopicResult
Type Parameters
Name Description
TValue

The value type.

Properties

Value

Gets the topic value.

Declaration
TValue Value { get; }
Property Value
Type Description
TValue

The topic value or null if none available.

Back to top