Show / Hide Table of Contents

Interface IUiMessageService

Namespace: Volo.Abp.AspNetCore.Components.WebAssembly
Assembly: Volo.Abp.AspNetCore.Components.WebAssembly.dll
Syntax
public interface IUiMessageService

Methods

ConfirmAsync(String, String, Action<UiMessageOptions>)

Declaration
Task<bool> ConfirmAsync(string message, string title = null, Action<UiMessageOptions> options = null)
Parameters
Type Name Description
System.String message
System.String title
System.Action<UiMessageOptions> options
Returns
Type Description
System.Threading.Tasks.Task<System.Boolean>

ErrorAsync(String, String, Action<UiMessageOptions>)

Declaration
Task ErrorAsync(string message, string title = null, Action<UiMessageOptions> options = null)
Parameters
Type Name Description
System.String message
System.String title
System.Action<UiMessageOptions> options
Returns
Type Description
System.Threading.Tasks.Task

InfoAsync(String, String, Action<UiMessageOptions>)

Declaration
Task InfoAsync(string message, string title = null, Action<UiMessageOptions> options = null)
Parameters
Type Name Description
System.String message
System.String title
System.Action<UiMessageOptions> options
Returns
Type Description
System.Threading.Tasks.Task

SuccessAsync(String, String, Action<UiMessageOptions>)

Declaration
Task SuccessAsync(string message, string title = null, Action<UiMessageOptions> options = null)
Parameters
Type Name Description
System.String message
System.String title
System.Action<UiMessageOptions> options
Returns
Type Description
System.Threading.Tasks.Task

WarnAsync(String, String, Action<UiMessageOptions>)

Declaration
Task WarnAsync(string message, string title = null, Action<UiMessageOptions> options = null)
Parameters
Type Name Description
System.String message
System.String title
System.Action<UiMessageOptions> options
Returns
Type Description
System.Threading.Tasks.Task

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft