Tagged Questions
24
votes
3answers
4k views
Singleton Per Call Context (Web Request) in Unity
A few days ago I had this issue with ASP.Net threading. I wanted to have a singleton object per web request. I actually need this for my unit of work. I wanted to instantiate a unit of work per web ...
2
votes
2answers
233 views
Application lifetime in ASP.NET
This should be a simple question but I haven't managed to find the answer on google.
I would like to know, in terms an idiot can understand, exactly what application lifetime means in ASP.NET (and ...
2
votes
4answers
3k views
ASP.Net session life time issue
I am confused about ASP or ASP.Net session life time (or life cycle) concepts. More specifically, my confusions are,
how did IIS magically knows a new session starts and an existing session ends? ...
1
vote
3answers
94 views
How long does an object in the CodeBehind live?
If I create an object in the code-behind of an .aspx page, how long can I expect that object to live? Will it live across post-backs? Could I pass it somehow to another page? Could I make it live as ...
1
vote
1answer
493 views
working with generic lifetime managers in unity config section
I have the following generic lifetime manager
public class RequestLifetimeManager<T> : LifetimeManager, IDisposable
{
public override object GetValue()
{
return ...
1
vote
1answer
494 views
How is the lifetime of a static class affected in a stateless asp.net application?
I've defined a helper class to keep track of a small dictionary of items. it stores this information as a static property, which is initialized in the static constructor. the list is very small and ...
0
votes
3answers
243 views
ASP.NET session object lifetime pessimistic assumption !
I check a session object and if it does exist then call another method which would use that object indirectly. Although the second method would access this object in a few nanoseconds I was thinking ...