Table of Contents

Interface IApizrResponse<TResult>

Namespace
Apizr
Assembly
Apizr.dll

Interface used to represent an API response managed by Apizr.

public interface IApizrResponse<out TResult> : IApizrResponse, IDisposable

Type Parameters

TResult

Deserialized request content as TResult

Inherited Members
Extension Methods

Properties

DataSource

The source of the result data (might be from the request or the cache).

ApizrResponseDataSource DataSource { get; }

Property Value

ApizrResponseDataSource

Result

Deserialized request or cache content as TResult.

TResult Result { get; }

Property Value

TResult