次の方法で共有


ConventionSet.Remove メソッド

定義

オーバーロード

Remove(Type)

指定された型の規則を削除します。

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

既存の規則を削除します。

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

既存の規則を削除します。

Remove(Type)

指定された型の規則を削除します。

public virtual void Remove (Type conventionType);
abstract member Remove : Type -> unit
override this.Remove : Type -> unit
Public Overridable Sub Remove (conventionType As Type)

パラメーター

conventionType
Type

削除する規則の種類。

適用対象

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

既存の規則を削除します。

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

型パラメーター

TConvention

削除される規則の種類。

パラメーター

conventionsList
IList<TConvention>

スキャンする既存の規則インスタンスの一覧。

existingConventionType
Type

既存の規則の型。

戻り値

true 規則が削除された場合は 。

適用対象

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

既存の規則を削除します。

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

型パラメーター

TConvention

削除される規則の種類。

パラメーター

conventionsList
List<TConvention>

スキャンする既存の規則インスタンスの一覧。

existingConventionType
Type

既存の規則の型。

戻り値

true 規則が削除された場合は 。

適用対象