Show / Hide Table of Contents

Class PreConfigureActionList<TOptions>

Inheritance
object
List<Action<TOptions>>
PreConfigureActionList<TOptions>
Implements
IList<Action<TOptions>>
ICollection<Action<TOptions>>
IList
ICollection
IReadOnlyList<Action<TOptions>>
IReadOnlyCollection<Action<TOptions>>
IEnumerable<Action<TOptions>>
IEnumerable
Inherited Members
List<Action<TOptions>>.Add(Action<TOptions>)
List<Action<TOptions>>.AddRange(IEnumerable<Action<TOptions>>)
List<Action<TOptions>>.AsReadOnly()
List<Action<TOptions>>.BinarySearch(int, int, Action<TOptions>, IComparer<Action<TOptions>>)
List<Action<TOptions>>.BinarySearch(Action<TOptions>)
List<Action<TOptions>>.BinarySearch(Action<TOptions>, IComparer<Action<TOptions>>)
List<Action<TOptions>>.Clear()
List<Action<TOptions>>.Contains(Action<TOptions>)
List<Action<TOptions>>.ConvertAll<TOutput>(Converter<Action<TOptions>, TOutput>)
List<Action<TOptions>>.CopyTo(Action<TOptions>[])
List<Action<TOptions>>.CopyTo(int, Action<TOptions>[], int, int)
List<Action<TOptions>>.CopyTo(Action<TOptions>[], int)
List<Action<TOptions>>.EnsureCapacity(int)
List<Action<TOptions>>.Exists(Predicate<Action<TOptions>>)
List<Action<TOptions>>.Find(Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindAll(Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindIndex(Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindIndex(int, Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindIndex(int, int, Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindLast(Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindLastIndex(Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindLastIndex(int, Predicate<Action<TOptions>>)
List<Action<TOptions>>.FindLastIndex(int, int, Predicate<Action<TOptions>>)
List<Action<TOptions>>.ForEach(Action<Action<TOptions>>)
List<Action<TOptions>>.GetEnumerator()
List<Action<TOptions>>.GetRange(int, int)
List<Action<TOptions>>.IndexOf(Action<TOptions>)
List<Action<TOptions>>.IndexOf(Action<TOptions>, int)
List<Action<TOptions>>.IndexOf(Action<TOptions>, int, int)
List<Action<TOptions>>.Insert(int, Action<TOptions>)
List<Action<TOptions>>.InsertRange(int, IEnumerable<Action<TOptions>>)
List<Action<TOptions>>.LastIndexOf(Action<TOptions>)
List<Action<TOptions>>.LastIndexOf(Action<TOptions>, int)
List<Action<TOptions>>.LastIndexOf(Action<TOptions>, int, int)
List<Action<TOptions>>.Remove(Action<TOptions>)
List<Action<TOptions>>.RemoveAll(Predicate<Action<TOptions>>)
List<Action<TOptions>>.RemoveAt(int)
List<Action<TOptions>>.RemoveRange(int, int)
List<Action<TOptions>>.Reverse()
List<Action<TOptions>>.Reverse(int, int)
List<Action<TOptions>>.Sort()
List<Action<TOptions>>.Sort(IComparer<Action<TOptions>>)
List<Action<TOptions>>.Sort(int, int, IComparer<Action<TOptions>>)
List<Action<TOptions>>.Sort(Comparison<Action<TOptions>>)
List<Action<TOptions>>.ToArray()
List<Action<TOptions>>.TrimExcess()
List<Action<TOptions>>.TrueForAll(Predicate<Action<TOptions>>)
List<Action<TOptions>>.Capacity
List<Action<TOptions>>.Count
List<Action<TOptions>>.this[int]
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Options
Assembly: Volo.Abp.Core.dll
Syntax
public class PreConfigureActionList<TOptions> : List<Action<TOptions>>, IList<Action<TOptions>>, ICollection<Action<TOptions>>, IList, ICollection, IReadOnlyList<Action<TOptions>>, IReadOnlyCollection<Action<TOptions>>, IEnumerable<Action<TOptions>>, IEnumerable
Type Parameters
Name Description
TOptions

Constructors

PreConfigureActionList()

Declaration
public PreConfigureActionList()

Methods

Configure()

Declaration
public TOptions Configure()
Returns
Type Description
TOptions

Configure(TOptions)

Declaration
public void Configure(TOptions options)
Parameters
Type Name Description
TOptions options

Implements

IList<T>
ICollection<T>
IList
ICollection
IReadOnlyList<T>
IReadOnlyCollection<T>
IEnumerable<T>
IEnumerable

Extension Methods

AbpCollectionExtensions.AddIfNotContains<T>(ICollection<T>, T)
AbpCollectionExtensions.AddIfNotContains<T>(ICollection<T>, IEnumerable<T>)
AbpCollectionExtensions.AddIfNotContains<T>(ICollection<T>, Func<T, bool>, Func<T>)
AbpCollectionExtensions.IsNullOrEmpty<T>(ICollection<T>?)
AbpCollectionExtensions.RemoveAll<T>(ICollection<T>, IEnumerable<T>)
AbpCollectionExtensions.RemoveAll<T>(ICollection<T>, Func<T, bool>)
AbpEnumerableExtensions.JoinAsString<T>(IEnumerable<T>, string)
AbpEnumerableExtensions.WhereIf<T>(IEnumerable<T>, bool, Func<T, bool>)
AbpEnumerableExtensions.WhereIf<T>(IEnumerable<T>, bool, Func<T, int, bool>)
AbpListExtensions.SortByDependencies<T>(IEnumerable<T>, Func<T, IEnumerable<T>>, IEqualityComparer<T>?)
AbpListExtensions.AddFirst<T>(IList<T>, T)
AbpListExtensions.AddLast<T>(IList<T>, T)
AbpListExtensions.FindIndex<T>(IList<T>, Predicate<T>)
AbpListExtensions.GetOrAdd<T>(IList<T>, Func<T, bool>, Func<T>)
AbpListExtensions.InsertAfter<T>(IList<T>, T, T)
AbpListExtensions.InsertAfter<T>(IList<T>, Predicate<T>, T)
AbpListExtensions.InsertBefore<T>(IList<T>, T, T)
AbpListExtensions.InsertBefore<T>(IList<T>, Predicate<T>, T)
AbpListExtensions.InsertRange<T>(IList<T>, int, IEnumerable<T>)
AbpListExtensions.ReplaceOne<T>(IList<T>, T, T)
AbpListExtensions.ReplaceOne<T>(IList<T>, Predicate<T>, T)
AbpListExtensions.ReplaceOne<T>(IList<T>, Predicate<T>, Func<T, T>)
AbpListExtensions.ReplaceWhile<T>(IList<T>, Predicate<T>, T)
AbpListExtensions.ReplaceWhile<T>(IList<T>, Predicate<T>, Func<T, T>)
AbpListExtensions.MoveItem<T>(List<T>, Predicate<T>, int)
AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform