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

GetKey() public method

public GetKey ( int index ) : string
index int
return string
		public string GetKey (int index)
		{
			try {
				_Lock.EnterReadLock ();
				return BaseGetKey (index);
			} finally {
				_Lock.ExitReadLock ();
			}
		}      

Usage Example

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