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

Get() public method

public Get ( string name ) : object
name string
return object
		public object Get (string name)
		{
			object ret = null;

			try {
				_Lock.EnterReadLock ();
				ret = BaseGet (name);
			}  finally {
				_Lock.ExitReadLock ();
			}

			return ret;
		}

Same methods

HttpApplicationState::Get ( int index ) : object

Usage Example

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