/src/SampleLibrary/IOC/SamplePreprocessor.cs

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

  1. using LinFu.IoC.Configuration;
  2. using LinFu.IoC.Interfaces;
  3. namespace SampleLibrary.IOC
  4. {
  5. [Preprocessor]
  6. public class SamplePreprocessor : IPreProcessor
  7. {
  8. public void Preprocess(IServiceRequest result)
  9. {
  10. // Do nothing
  11. }
  12. }
  13. }