Class SnackbarMessageQueue
public class SnackbarMessageQueue : ISnackbarMessageQueue, IDisposable
- Inheritance
-
SnackbarMessageQueue
- Implements
- Inherited Members
- Extension Methods
Constructors
SnackbarMessageQueue()
public SnackbarMessageQueue()
SnackbarMessageQueue(TimeSpan)
public SnackbarMessageQueue(TimeSpan messageDuration)
Parameters
messageDuration
TimeSpan
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
Enqueue(object)
Queues a notificaton message for display in a snackbar.
public void Enqueue(object content)
Parameters
content
objectMessage.
Enqueue(object, bool)
Queues a notificaton message for display in a snackbar.
public void Enqueue(object content, bool neverConsiderToBeDuplicate)
Parameters
content
objectMessage.
neverConsiderToBeDuplicate
boolSubsequent, 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.
public void Enqueue(object content, object actionContent, Action actionHandler)
Parameters
content
objectMessage.
actionContent
objectContent for the action button.
actionHandler
ActionCall back to be executed if user clicks the action button.
Enqueue(object, object, Action, bool)
Queues a notificaton message for display in a snackbar.
public void Enqueue(object content, object actionContent, Action actionHandler, bool promote)
Parameters
content
objectMessage.
actionContent
objectContent for the action button.
actionHandler
ActionCall back to be executed if user clicks the action button.
promote
boolThe 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.
public void Enqueue(object content, object actionContent, Action<object> actionHandler, object actionArgument, bool promote, bool neverConsiderToBeDuplicate)
Parameters
content
objectMessage.
actionContent
objectContent for the action button.
actionHandler
Action<object>Call back to be executed if user clicks the action button.
actionArgument
objectArgument to pass to
actionHandler
.promote
boolThe message will promoted to the front of the queue.
neverConsiderToBeDuplicate
boolThe message will never be considered a duplicate.
Enqueue<TArgument>(object, object, Action<TArgument>, TArgument)
Queues a notificaton message for display in a snackbar.
public void Enqueue<TArgument>(object content, object actionContent, Action<TArgument> actionHandler, TArgument actionArgument)
Parameters
content
objectMessage.
actionContent
objectContent for the action button.
actionHandler
Action<TArgument>Call back to be executed if user clicks the action button.
actionArgument
TArgumentArgument to pass to
actionHandler
.
Type Parameters
TArgument
Enqueue<TArgument>(object, object, Action<TArgument>, TArgument, bool)
Queues a notificaton message for display in a snackbar.
public void Enqueue<TArgument>(object content, object actionContent, Action<TArgument> actionHandler, TArgument actionArgument, bool promote)
Parameters
content
objectMessage.
actionContent
objectContent for the action button.
actionHandler
Action<TArgument>Call back to be executed if user clicks the action button.
actionArgument
TArgumentArgument to pass to
actionHandler
.promote
boolThe 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.
public void Enqueue<TArgument>(object content, object actionContent, Action<TArgument> actionHandler, TArgument actionArgument, bool promote, bool neverConsiderToBeDuplicate)
Parameters
content
objectMessage.
actionContent
objectContent for the action button.
actionHandler
Action<TArgument>Call back to be executed if user clicks the action button.
actionArgument
TArgumentArgument to pass to
actionHandler
.promote
boolThe message will be promoted to the front of the queue.
neverConsiderToBeDuplicate
boolThe message will never be considered a duplicate.
Type Parameters
TArgument