HeaderHandler Delegar
Definição
Representa o método que tratará o processamento de cabeçalhos no fluxo durante a desserialização.Represents the method that will handle processing of headers on the stream during deserialization.
public delegate System::Object ^ HeaderHandler(cli::array <Header ^> ^ headers);
public delegate object HeaderHandler(Header[] headers);
[System.Runtime.InteropServices.ComVisible(true)]
public delegate object HeaderHandler(Header[] headers);
type HeaderHandler = delegate of Header[] -> obj
[<System.Runtime.InteropServices.ComVisible(true)>]
type HeaderHandler = delegate of Header[] -> obj
Public Delegate Function HeaderHandler(headers As Header()) As Object
Parâmetros
- headers
- Header[]
Os cabeçalhos do evento.The headers of the event.
Valor Retornado
Um Object que transmite informações sobre uma chamada de função remota.A Object that conveys information about a remote function call.
- Atributos
Comentários
Headeros objetos são usados para transmitir informações sobre uma chamada de função remota (por exemplo, ID da transação ou uma assinatura de método).Header objects are used to convey information about a remote function call (for example, transaction ID or a method signature).
Ao criar um HeaderHandler , você identifica o método que manipulará o evento.When you create a HeaderHandler, you identify the method that will handle the event. Para obter uma visão geral, consulte manipulando e gerando eventos.For an overview, see Handling and Raising Events.
Métodos de Extensão
| GetMethodInfo(Delegate) |
Obtém um objeto que representa o método representado pelo delegado especificado.Gets an object that represents the method represented by the specified delegate. |