/src/SampleLibrary/IOC/SamplePreprocessor.cs
C# | 14 lines | 12 code | 1 blank | 1 comment | 0 complexity | 75d6164c8a833e015c47e89c9bba7856 MD5 | raw file
1using LinFu.IoC.Configuration; 2using LinFu.IoC.Interfaces; 3 4namespace SampleLibrary.IOC 5{ 6 [Preprocessor] 7 public class SamplePreprocessor : IPreProcessor 8 { 9 public void Preprocess(IServiceRequest result) 10 { 11 // Do nothing 12 } 13 } 14}