internal DelegateSessionCache(int capacity)
 {
     if (capacity > 10 || capacity < 1)
     {
         throw new ArgumentOutOfRangeException("capacity");
     }
     capacity      = TestBridgeManager.GetSize(capacity);
     this.capacity = capacity;
     this.dataSet  = new List <DelegateSessionEntry>(this.capacity);
 }