HttpApplicationState.Get Method (Int32)
.NET Framework 3.0
Gets an HttpApplicationState object by numerical index.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following example returns the first object (index = 0) from the HttpApplicationState collection of the intrinsic Application object and copies it to a new object variable.
Object myObject; myObject = get_Application().Get(0);
var MyObject : Object
MyObject = Application.Get(0)
Community Additions
ADD
Show: