Esempio n. 1
0
 /// <summary>
 /// If the key exists, calls BaseRemove on it.
 /// </summary>
 public void Remove(RijndaelExpiredKey mapping)
 {
     if (BaseIndexOf(mapping) >= 0)
     {
         BaseRemove(mapping.Key);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// If the key exists, calls BaseRemove on it.
 /// </summary>
 public void Remove(RijndaelExpiredKey encryptionKey)
 {
     if (BaseIndexOf(encryptionKey) >= 0)
     {
         BaseRemove(encryptionKey.Key);
     }
 }
Esempio n. 3
0
 /// <summary>
 /// Calls BaseAdd.
 /// </summary>
 public void Add(RijndaelExpiredKey mapping)
 {
     BaseAdd(mapping);
 }
Esempio n. 4
0
 /// <summary>
 /// Calls BaseIndexOf on the given <see cref="RijndaelExpiredKey" />.
 /// </summary>
 public int IndexOf(RijndaelExpiredKey encryptionKey)
 {
     return(BaseIndexOf(encryptionKey));
 }
 /// <summary>
 /// Calls BaseAdd.
 /// </summary>
 public void Add(RijndaelExpiredKey mapping)
 {
     BaseAdd(mapping);
 }
 /// <summary>
 /// Calls BaseIndexOf on the given <see cref="RijndaelExpiredKey"/>.
 /// </summary>
 public int IndexOf(RijndaelExpiredKey encryptionKey)
 {
     return BaseIndexOf(encryptionKey);
 }
 /// <summary>
 /// If the key exists, calls BaseRemove on it.
 /// </summary>
 public void Remove(RijndaelExpiredKey mapping)
 {
     if (BaseIndexOf(mapping) >= 0)
     {
         BaseRemove(mapping.Key);
     }
 }
Esempio n. 8
0
 /// <summary>
 /// Calls BaseAdd.
 /// </summary>
 public void Add(RijndaelExpiredKey encryptionKey)
 {
     BaseAdd(encryptionKey);
 }
Esempio n. 9
0
 public void Remove(RijndaelExpiredKey mapping)
 {
     throw new NotImplementedException();
 }
Esempio n. 10
0
 public int IndexOf(RijndaelExpiredKey encryptionKey)
 {
     throw new NotImplementedException();
 }