Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Castle.Igloo / Castle.Igloo.Test / ScopeTest / Components / PerWebScopeComponent.cs
bloba7e10671441f89d98a5923bfb7744bed29dff6ab
2 using Castle.Igloo.Attributes;
4 namespace Castle.Igloo.Test.ScopeTest.Components
6 [Scope(Scope = ScopeType.Request)]
7 public class PerScopeWebRequestComponent : IComponent
10 #region IComponent Members
12 public int ID
14 get
16 return this.GetHashCode();
20 #endregion