/src/SampleLibrary/IOC/SamplePostProcessor.cs

http://github.com/philiplaureano/LinFu · C# · 14 lines · 12 code · 1 blank · 1 comment · 0 complexity · 2e261202db497b18984583e47daebf05 MD5 · raw file

  1. using LinFu.IoC.Configuration;
  2. using LinFu.IoC.Interfaces;
  3. namespace SampleLibrary
  4. {
  5. [PostProcessor]
  6. public class SamplePostProcessor : IPostProcessor
  7. {
  8. public void PostProcess(IServiceRequestResult result)
  9. {
  10. // Do nothing
  11. }
  12. }
  13. }