/src/SampleLibrary/SamplePostProcessor.cs
C# | 19 lines | 15 code | 3 blank | 1 comment | 0 complexity | bf2c37bfef1da574d85808fd103cf273 MD5 | raw file
- using LinFu.IoC.Configuration;
- using LinFu.IoC;
- using LinFu.IoC.Interfaces;
- namespace SampleLibrary
- {
- [PostProcessor]
- public class SamplePostProcessor : IPostProcessor
- {
- #region IPostProcessor Members
- public void PostProcess(IServiceRequestResult result)
- {
- // Do nothing
- }
- #endregion
- }
- }