User: xtoff
Date: 2009/12/20 03:55 AM
Modified:
/Core/trunk/src/Castle.Core/Attributes/
LifestyleAttributes.cs
/Core/trunk/src/Castle.Core/Model/
ComponentModel.cs
Log:
- excluded LifestyleType.PerWebRequest for Silverlight
File Changes:
Directory: /Core/trunk/src/Castle.Core/Attributes/
==================================================
File [modified]: LifestyleAttributes.cs
Delta lines: +6 -4
===================================================================
--- Core/trunk/src/Castle.Core/Model/ComponentModel.cs 2009-12-20 10:51:46 UTC
(rev 6494)
+++ Core/trunk/src/Castle.Core/Model/ComponentModel.cs 2009-12-20 10:55:23 UTC
(rev 6495)
@@ -49,14 +49,16 @@
/// instance in a pool instead of always creating them.
/// </summary>
Pooled,
+#if (!SILVERLIGHT)
/// <summary>
- /// Any other logic to create/release components.
+ /// PerWebRequest components are created once per Http Request
/// </summary>
- Custom,
+ PerWebRequest,
+#endif
/// <summary>
- /// PerWebRequest components are created once per Http Request
+ /// Any other logic to create/release components.
/// </summary>
- PerWebRequest
+ Custom
}
Directory: /Core/trunk/src/Castle.Core/Model/
=============================================
File [modified]: ComponentModel.cs
Delta lines: +0 -0
===================================================================
--
You received this message because you are subscribed to the Google Groups
"Castle Project Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/castle-project-commits?hl=en.