Show / Hide Table of Contents

Interface IBasicObjectExtensionPropertyInfo

Namespace: Volo.Abp.ObjectExtending
Assembly: Volo.Abp.ObjectExtending.dll
Syntax
public interface IBasicObjectExtensionPropertyInfo

Properties

Attributes

Declaration
List<Attribute> Attributes { get; }
Property Value
Type Description
List<Attribute>

DefaultValue

Uses as the default value if DefaultValueFactory was not set.

Declaration
object DefaultValue { get; set; }
Property Value
Type Description
System.Object

DefaultValueFactory

Used with the first priority to create the default value for the property. Uses to the DefaultValue if this was not set.

Declaration
Func<object> DefaultValueFactory { get; set; }
Property Value
Type Description
Func<System.Object>

DisplayName

Declaration
ILocalizableString DisplayName { get; }
Property Value
Type Description
ILocalizableString

Name

Declaration
string Name { get; }
Property Value
Type Description
System.String

Type

Declaration
Type Type { get; }
Property Value
Type Description
Type

Validators

Declaration
List<Action<ObjectExtensionPropertyValidationContext>> Validators { get; }
Property Value
Type Description
List<Action<ObjectExtensionPropertyValidationContext>>

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, 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