Compartilhar via


MauiHandlersCollectionExtensions.AddHandler Método

Definição

Sobrecargas

AddHandler(IMauiHandlersCollection, Type, Type)

Registra um manipulador com o contêiner de serviço subjacente por meio de AddTransient.

AddHandler<TType,TTypeRender>(IMauiHandlersCollection)

Registra um manipulador com o contêiner de serviço subjacente por meio de AddTransient.

AddHandler<TType>(IMauiHandlersCollection, Func<IServiceProvider,IElementHandler>)

Registra um manipulador com o contêiner de serviço subjacente por meio de AddTransient.

AddHandler(IMauiHandlersCollection, Type, Type)

Origem:
MauiHandlersCollectionExtensions.cs
Origem:
MauiHandlersCollectionExtensions.cs

Registra um manipulador com o contêiner de serviço subjacente por meio de AddTransient.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Hosting::IMauiHandlersCollection ^ AddHandler(Microsoft::Maui::Hosting::IMauiHandlersCollection ^ handlersCollection, Type ^ viewType, Type ^ handlerType);
public static Microsoft.Maui.Hosting.IMauiHandlersCollection AddHandler (this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection, Type viewType, Type handlerType);
static member AddHandler : Microsoft.Maui.Hosting.IMauiHandlersCollection * Type * Type -> Microsoft.Maui.Hosting.IMauiHandlersCollection
<Extension()>
Public Function AddHandler (handlersCollection As IMauiHandlersCollection, viewType As Type, handlerType As Type) As IMauiHandlersCollection

Parâmetros

handlersCollection
IMauiHandlersCollection

A coleção de elementos

viewType
Type

O tipo de exibição a ser registrado

handlerType
Type

O tipo de manipulador que representa o elemento

Retornos

A coleção de manipuladores

Aplica-se a

AddHandler<TType,TTypeRender>(IMauiHandlersCollection)

Origem:
MauiHandlersCollectionExtensions.cs
Origem:
MauiHandlersCollectionExtensions.cs

Registra um manipulador com o contêiner de serviço subjacente por meio de AddTransient.

public:
generic <typename TType, typename TTypeRender>
 where TType : Microsoft::Maui::IElement where TTypeRender : Microsoft::Maui::IElementHandler[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Hosting::IMauiHandlersCollection ^ AddHandler(Microsoft::Maui::Hosting::IMauiHandlersCollection ^ handlersCollection);
public static Microsoft.Maui.Hosting.IMauiHandlersCollection AddHandler<TType,TTypeRender> (this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) where TType : Microsoft.Maui.IElement where TTypeRender : Microsoft.Maui.IElementHandler;
static member AddHandler : Microsoft.Maui.Hosting.IMauiHandlersCollection -> Microsoft.Maui.Hosting.IMauiHandlersCollection (requires 'ype :> Microsoft.Maui.IElement and 'ypeRender :> Microsoft.Maui.IElementHandler)
<Extension()>
Public Function AddHandler(Of TType As IElement, TTypeRender As IElement) (handlersCollection As IMauiHandlersCollection) As IMauiHandlersCollection

Parâmetros de tipo

TType

O tipo de elemento a ser registrado

TTypeRender

O tipo de manipulador que representa o elemento

Parâmetros

handlersCollection
IMauiHandlersCollection

A coleção de manipuladores

Retornos

A coleção de manipuladores

Aplica-se a

AddHandler<TType>(IMauiHandlersCollection, Func<IServiceProvider,IElementHandler>)

Origem:
MauiHandlersCollectionExtensions.cs
Origem:
MauiHandlersCollectionExtensions.cs

Registra um manipulador com o contêiner de serviço subjacente por meio de AddTransient.

public:
generic <typename TType>
 where TType : Microsoft::Maui::IElement[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Hosting::IMauiHandlersCollection ^ AddHandler(Microsoft::Maui::Hosting::IMauiHandlersCollection ^ handlersCollection, Func<IServiceProvider ^, Microsoft::Maui::IElementHandler ^> ^ handlerImplementationFactory);
public static Microsoft.Maui.Hosting.IMauiHandlersCollection AddHandler<TType> (this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection, Func<IServiceProvider,Microsoft.Maui.IElementHandler> handlerImplementationFactory) where TType : Microsoft.Maui.IElement;
static member AddHandler : Microsoft.Maui.Hosting.IMauiHandlersCollection * Func<IServiceProvider, Microsoft.Maui.IElementHandler> -> Microsoft.Maui.Hosting.IMauiHandlersCollection (requires 'ype :> Microsoft.Maui.IElement)
<Extension()>
Public Function AddHandler(Of TType As IElement) (handlersCollection As IMauiHandlersCollection, handlerImplementationFactory As Func(Of IServiceProvider, IElementHandler)) As IMauiHandlersCollection

Parâmetros de tipo

TType

O tipo de elemento a ser registrado

Parâmetros

handlersCollection
IMauiHandlersCollection

A coleção de manipuladores

handlerImplementationFactory
Func<IServiceProvider,IElementHandler>

Um método de fábrica para criar o manipulador

Retornos

A coleção de manipuladores

Aplica-se a