Ejemplo n.º 1
0
 /// <summary>
 /// Gets the history entry at the given index.
 /// </summary>
 /// <param name="index"></param>
 /// <returns></returns>
 public GeckoHistoryEntry this[int index]
 {
     get
     {
         return(new HistoryEntry((nsIHistoryEntry)History.GetEntryAtIndex(index, false)));
     }
     set
     {
         throw new InvalidOperationException();
     }
 }