C# 클래스 SevenDigital.Messaging.EventHooks.ConsoleEventHook

Event hook that writes events to the console
상속: IEventHook
파일 보기 프로젝트 열기: i-e-b/SevenDigital.Messaging

공개 메소드들

메소드 설명
HandlerFailed ( IMessage message, Type handler, Exception ex ) : void

A message was received by this process, but a handler threw an exception

MessageReceived ( IMessage message ) : void

A message was received and handled by this process

MessageSent ( IMessage message ) : void

A message was sent from this process

메소드 상세

HandlerFailed() 공개 메소드

A message was received by this process, but a handler threw an exception
public HandlerFailed ( IMessage message, Type handler, Exception ex ) : void
message IMessage The incoming message
handler System.Type Type of the failed handler
ex System.Exception Exception thrown
리턴 void

MessageReceived() 공개 메소드

A message was received and handled by this process
public MessageReceived ( IMessage message ) : void
message IMessage The incoming message
리턴 void

MessageSent() 공개 메소드

A message was sent from this process
public MessageSent ( IMessage message ) : void
message IMessage The message sent
리턴 void