HttpApplicationState.Lock Method
.NET Framework 3.0
Locks access to an HttpApplicationState variable to facilitate access synchronization.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The HttpApplicationState class performs automatic locking and unlocking with the AllKeys and Count properties and the Add, Clear, Get, GetKey, Remove, RemoveAt and Set methods. However, explicitly using the Lock and UnLock methods when you have a series of operations may be more efficient.
| Topic | Location |
|---|---|
| How to: Save Values in Application State | Building ASP .NET Web Applications |
| How to: Save Values in Application State | Building ASP .NET Web Applications |
The following example uses the Lock method and UnLock method to prevent other sessions from changing the value of two application variables until after the local session has changed them.
get_Application().Lock();
get_Application().set_Item("MyCode", new Integer(21));
get_Application().set_Item("MyCount",
System.Convert.ToString(
Convert.ToInt32(get_Application().get_Item("MyCount")) + 1));
get_Application().UnLock();
Application.Lock() Application["MyCode"] = 21 Application["MyCount"] = Convert.ToInt32(Application["MyCount"]) + 1 Application.UnLock()
Community Additions
ADD
Show: