Table of Contents

Class NoProgressHost

Namespace
The.Web.Controls
Assembly
Instagile.Web.Client.dll
public sealed class NoProgressHost : IProgressHost, IProgress<Status>
Inheritance
NoProgressHost
Implements
Inherited Members

Fields

Instance

public static readonly NoProgressHost Instance

Field Value

NoProgressHost

Methods

Report(Status)

Reports a progress update.

public void Report(Status value)

Parameters

value Status

The value of the updated progress.

ShowNotification(MessageLevel, string, string?)

public void ShowNotification(MessageLevel level, string message, string? details = null)

Parameters

level MessageLevel
message string
details string

WithProgress<T>(Func<IProgress<Status>, Task<T>>)

public Task<T> WithProgress<T>(Func<IProgress<Status>, Task<T>> f)

Parameters

f Func<IProgress<Status>, Task<T>>

Returns

Task<T>

Type Parameters

T