System.Web.HttpApplicationState.Get C# (CSharp) Method

Get() public method

public Get ( int index ) : object
index int
return object
		public object Get (int index)
		{
			try {
				_Lock.EnterReadLock ();
				return BaseGet (index);
			} finally {
				_Lock.ExitReadLock ();
			}
		}   

Same methods

HttpApplicationState::Get ( string name ) : object

Usage Example

 public override object Get(int index)
 {
     return(w.Get(index));
 }
All Usage Examples Of System.Web.HttpApplicationState::Get