Udostępnij za pośrednictwem


FilterCollection.Add Metoda

Definicja

Przeciążenia

Add(Type)

Dodaje typ reprezentujący element IFilterMetadata.

Add(Type, Int32)

Dodaje typ reprezentujący element IFilterMetadata.

Add<TFilterType>()

Dodaje typ reprezentujący element IFilterMetadata.

Add<TFilterType>(Int32)

Dodaje typ reprezentujący element IFilterMetadata.

Add(Type)

Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs

Dodaje typ reprezentujący element IFilterMetadata.

public:
 Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata ^ Add(Type ^ filterType);
public Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata Add (Type filterType);
override this.Add : Type -> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata
Public Function Add (filterType As Type) As IFilterMetadata

Parametry

filterType
Type

Typ reprezentujący element IFilterMetadata.

Zwraca

Element IFilterMetadata reprezentujący dodany typ.

Uwagi

Wystąpienia filtru zostaną utworzone przy użyciu polecenia ActivatorUtilities. Użyj AddService(Type) polecenia , aby zarejestrować usługę jako filtr. Dodany filtr zostanie przypisany do kolejności 0.

Dotyczy

Add(Type, Int32)

Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs

Dodaje typ reprezentujący element IFilterMetadata.

public:
 Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata ^ Add(Type ^ filterType, int order);
public Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata Add (Type filterType, int order);
override this.Add : Type * int -> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata
Public Function Add (filterType As Type, order As Integer) As IFilterMetadata

Parametry

filterType
Type

Typ reprezentujący element IFilterMetadata.

order
Int32

Kolejność dodanego filtru.

Zwraca

Element IFilterMetadata reprezentujący dodany typ.

Uwagi

Wystąpienia filtru zostaną utworzone przy użyciu polecenia ActivatorUtilities. Użyj AddService(Type) polecenia , aby zarejestrować usługę jako filtr.

Dotyczy

Add<TFilterType>()

Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs

Dodaje typ reprezentujący element IFilterMetadata.

public:
generic <typename TFilterType>
 where TFilterType : Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata ^ Add();
public Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata Add<TFilterType> () where TFilterType : Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata;
override this.Add : unit -> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata (requires 'FilterType :> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata)
Public Function Add(Of TFilterType As IFilterMetadata) () As IFilterMetadata

Parametry typu

TFilterType

Typ reprezentujący element IFilterMetadata.

Zwraca

Element IFilterMetadata reprezentujący dodany typ.

Uwagi

Wystąpienia filtru zostaną utworzone przy użyciu polecenia ActivatorUtilities. Użyj AddService(Type) polecenia , aby zarejestrować usługę jako filtr. Dodany filtr zostanie przypisany do kolejności 0.

Dotyczy

Add<TFilterType>(Int32)

Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs
Źródło:
FilterCollection.cs

Dodaje typ reprezentujący element IFilterMetadata.

public:
generic <typename TFilterType>
 where TFilterType : Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata ^ Add(int order);
public Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata Add<TFilterType> (int order) where TFilterType : Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata;
override this.Add : int -> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata (requires 'FilterType :> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata)
Public Function Add(Of TFilterType As IFilterMetadata) (order As Integer) As IFilterMetadata

Parametry typu

TFilterType

Typ reprezentujący element IFilterMetadata.

Parametry

order
Int32

Kolejność dodanego filtru.

Zwraca

Element IFilterMetadata reprezentujący dodany typ.

Uwagi

Wystąpienia filtru zostaną utworzone przy użyciu polecenia ActivatorUtilities. Użyj AddService(Type) polecenia , aby zarejestrować usługę jako filtr.

Dotyczy