Compartir a través de


ConventionSet.Remove Método

Definición

Sobrecargas

Remove(Type)

Quita la convención del tipo especificado.

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

Quita una convención existente.

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

Quita una convención existente.

Remove(Type)

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

Quita la convención del tipo especificado.

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

Parámetros

conventionType
Type

Tipo de convención que se va a quitar.

Se aplica a

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

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

Quita una convención existente.

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

Parámetros de tipo

TConvention

Tipo de convención que se va a quitar.

Parámetros

conventionsList
IList<TConvention>

Lista de instancias de convención existentes que se van a examinar.

existingConventionType
Type

Tipo de la convención existente.

Devoluciones

true si se quitó la convención.

Se aplica a

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

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

Quita una convención existente.

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

Parámetros de tipo

TConvention

Tipo de convención que se va a quitar.

Parámetros

conventionsList
List<TConvention>

Lista de instancias de convención existentes que se van a examinar.

existingConventionType
Type

Tipo de la convención existente.

Devoluciones

true si se quitó la convención.

Se aplica a