Class EntityAction
Inheritance
object
EntityAction
Implements
System.IEquatable<T><EntityAction>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.AspNetCore.Components.Web.Extensibility.EntityActions
Assembly: Volo.Abp.AspNetCore.Components.Web.dll
Syntax
public class EntityAction : IEquatable<EntityAction>
Constructors
EntityAction()
Declaration
public EntityAction()
Properties
Clicked
Declaration
public Func<object, Task> Clicked { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Func<T, TResult><object, System.Threading.Tasks.Task> |
Color
Declaration
public object Color { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
ConfirmationMessage
Declaration
public Func<object, string> ConfirmationMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Func<T, TResult><object, string> |
Disabled
Declaration
public bool Disabled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Icon
Declaration
public string Icon { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Primary
Declaration
public bool Primary { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Text
Declaration
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Visible
Declaration
public Func<object, bool> Visible { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Func<T, TResult><object, bool> |
Methods
Equals(EntityAction)
Declaration
public bool Equals(EntityAction other)
Parameters
| Type | Name | Description |
|---|---|---|
| EntityAction | other |
Returns
| Type | Description |
|---|---|
| bool |
Implements
System.IEquatable<T>