PageRenderTime 28ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/src/SampleLibrary/SamplePostProcessor.cs

http://github.com/philiplaureano/LinFu
C# | 19 lines | 15 code | 3 blank | 1 comment | 0 complexity | bf2c37bfef1da574d85808fd103cf273 MD5 | raw file
  1. using LinFu.IoC.Configuration;
  2. using LinFu.IoC;
  3. using LinFu.IoC.Interfaces;
  4. namespace SampleLibrary
  5. {
  6. [PostProcessor]
  7. public class SamplePostProcessor : IPostProcessor
  8. {
  9. #region IPostProcessor Members
  10. public void PostProcess(IServiceRequestResult result)
  11. {
  12. // Do nothing
  13. }
  14. #endregion
  15. }
  16. }