Click here to Skip to main content
Click here to Skip to main content

simple Asp.net singleton

By , 26 Oct 2011
 
This creates a session singleton. In this example I am persisting a stringbuilder however you generally want a wrapper object in the case where you have two items that need persisting for that page. To generate the unique strings you can reflect the page name. Using this shows that you should rarely/never use Session.add ( within the same page context. ) Between pages will require some more error handling but will work as well. You can also use a per request session in some cases but that is beyond this sample.
 

 
/// <summary>
/// Persist the xml property as if it was a local variable.
/// </summary>
private StringBuilder xml
{
    get
    {
        return (HttpContext.Current.Session["UNIQUESTRINGHERE"] ??
        (HttpContext.Current.Session["UNIQUESTRINGHERE"] =
        new StringBuilder())) as StringBuilder;
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

rj45
Software Developer (Senior)
Canada Canada
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMarcus, Singleton means single instance and nothing more. In...memberrj4527 Oct '11 - 6:29 
GeneralReason for my vote of 1 This is not a singleton. This is not...memberMarcus Kramer27 Oct '11 - 4:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 26 Oct 2011
Article Copyright 2011 by rj45
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid