Table of Contents

Interface ISnackbarMessageQueue

Namespace
HeBianGu.Control.Message
Assembly
HeBianGu.Control.Message.dll
public interface ISnackbarMessageQueue
Extension Methods

Methods

Enqueue(object)

Queues a notificaton message for display in a snackbar.

void Enqueue(object content)

Parameters

content object

Message.

Enqueue(object, bool)

Queues a notificaton message for display in a snackbar.

void Enqueue(object content, bool neverConsiderToBeDuplicate)

Parameters

content object

Message.

neverConsiderToBeDuplicate bool

Subsequent, duplicate messages queued within a short time span will be discarded. To override this behaviour and ensure the message always gets displayed set to true.

Enqueue(object, object, Action)

Queues a notificaton message for display in a snackbar.

void Enqueue(object content, object actionContent, Action actionHandler)

Parameters

content object

Message.

actionContent object

Content for the action button.

actionHandler Action

Call back to be executed if user clicks the action button.

Enqueue(object, object, Action, bool)

Queues a notificaton message for display in a snackbar.

void Enqueue(object content, object actionContent, Action actionHandler, bool promote)

Parameters

content object

Message.

actionContent object

Content for the action button.

actionHandler Action

Call back to be executed if user clicks the action button.

promote bool

The message will promoted to the front of the queue.

Enqueue(object, object, Action<object>, object, bool, bool)

Queues a notificaton message for display in a snackbar.

void Enqueue(object content, object actionContent, Action<object> actionHandler, object actionArgument, bool promote, bool neverConsiderToBeDuplicate)

Parameters

content object

Message.

actionContent object

Content for the action button.

actionHandler Action<object>

Call back to be executed if user clicks the action button.

actionArgument object

Argument to pass to actionHandler.

promote bool

The message will promoted to the front of the queue.

neverConsiderToBeDuplicate bool

The message will never be considered a duplicate.

Enqueue<TArgument>(object, object, Action<TArgument>, TArgument)

Queues a notificaton message for display in a snackbar.

void Enqueue<TArgument>(object content, object actionContent, Action<TArgument> actionHandler, TArgument actionArgument)

Parameters

content object

Message.

actionContent object

Content for the action button.

actionHandler Action<TArgument>

Call back to be executed if user clicks the action button.

actionArgument TArgument

Argument to pass to actionHandler.

Type Parameters

TArgument

Enqueue<TArgument>(object, object, Action<TArgument>, TArgument, bool)

Queues a notificaton message for display in a snackbar.

void Enqueue<TArgument>(object content, object actionContent, Action<TArgument> actionHandler, TArgument actionArgument, bool promote)

Parameters

content object

Message.

actionContent object

Content for the action button.

actionHandler Action<TArgument>

Call back to be executed if user clicks the action button.

actionArgument TArgument

Argument to pass to actionHandler.

promote bool

The message will be promoted to the front of the queue and never considered to be a duplicate.

Type Parameters

TArgument

Enqueue<TArgument>(object, object, Action<TArgument>, TArgument, bool, bool)

Queues a notificaton message for display in a snackbar.

void Enqueue<TArgument>(object content, object actionContent, Action<TArgument> actionHandler, TArgument actionArgument, bool promote, bool neverConsiderToBeDuplicate)

Parameters

content object

Message.

actionContent object

Content for the action button.

actionHandler Action<TArgument>

Call back to be executed if user clicks the action button.

actionArgument TArgument

Argument to pass to actionHandler.

promote bool

The message will be promoted to the front of the queue.

neverConsiderToBeDuplicate bool

The message will never be considered a duplicate.

Type Parameters

TArgument