Skip to content

Instantly share code, notes, and snippets.

@SeanFeldman
Created January 3, 2015 06:27
Show Gist options
  • Save SeanFeldman/b852d4af675bce81f81b to your computer and use it in GitHub Desktop.
Save SeanFeldman/b852d4af675bce81f81b to your computer and use it in GitHub Desktop.
BlogPost-NSB-WebJobs
public class PongHandler : IHandleMessages<Pong>
{
private ILog logger = LogManager.GetLogger<PongHandler>();
public void Handle(Pong message)
{
logger.Info("Received Pong: " + message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment