ConventionSet.AddBefore 方法

定义

重载

AddBefore<TConvention>(IList<TConvention>, TConvention, Type)

在现有约定之前添加约定。

AddBefore<TConvention>(List<TConvention>, TConvention, Type)

在现有约定之前添加约定。

AddBefore<TConvention>(IList<TConvention>, TConvention, Type)

Source:
ConventionSet.cs
Source:
ConventionSet.cs
Source:
ConventionSet.cs
Source:
ConventionSet.cs

在现有约定之前添加约定。

public static bool AddBefore<TConvention> (System.Collections.Generic.IList<TConvention> conventionsList, TConvention newConvention, Type existingConventionType);
static member AddBefore : System.Collections.Generic.IList<'Convention> * 'Convention * Type -> bool
Public Shared Function AddBefore(Of TConvention) (conventionsList As IList(Of TConvention), newConvention As TConvention, existingConventionType As Type) As Boolean

类型参数

TConvention

要添加的约定的类型。

参数

conventionsList
IList<TConvention>

要扫描的现有约定实例的列表。

newConvention
TConvention

新约定。

existingConventionType
Type

现有约定的类型。

返回

true 如果添加了约定,则为 。

适用于

AddBefore<TConvention>(List<TConvention>, TConvention, Type)

Source:
ConventionSet.cs
Source:
ConventionSet.cs
Source:
ConventionSet.cs

在现有约定之前添加约定。

public static bool AddBefore<TConvention> (System.Collections.Generic.List<TConvention> conventionsList, TConvention newConvention, Type existingConventionType);
static member AddBefore : System.Collections.Generic.List<'Convention> * 'Convention * Type -> bool
Public Shared Function AddBefore(Of TConvention) (conventionsList As List(Of TConvention), newConvention As TConvention, existingConventionType As Type) As Boolean

类型参数

TConvention

要添加的约定的类型。

参数

conventionsList
List<TConvention>

要扫描的现有约定实例的列表。

newConvention
TConvention

新约定。

existingConventionType
Type

现有约定的类型。

返回

true 如果添加了约定,则为 。

适用于