示例#1
0
 /// <summary>
 /// If the key exists, calls BaseRemove on it.
 /// </summary>
 public void Remove(RijndaelExpiredKey mapping)
 {
     if (BaseIndexOf(mapping) >= 0)
     {
         BaseRemove(mapping.Key);
     }
 }
示例#2
0
 /// <summary>
 /// If the key exists, calls BaseRemove on it.
 /// </summary>
 public void Remove(RijndaelExpiredKey encryptionKey)
 {
     if (BaseIndexOf(encryptionKey) >= 0)
     {
         BaseRemove(encryptionKey.Key);
     }
 }
示例#3
0
 /// <summary>
 /// Calls BaseAdd.
 /// </summary>
 public void Add(RijndaelExpiredKey mapping)
 {
     BaseAdd(mapping);
 }
示例#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);
     }
 }
示例#8
0
 /// <summary>
 /// Calls BaseAdd.
 /// </summary>
 public void Add(RijndaelExpiredKey encryptionKey)
 {
     BaseAdd(encryptionKey);
 }
示例#9
0
 public void Remove(RijndaelExpiredKey mapping)
 {
     throw new NotImplementedException();
 }
示例#10
0
 public int IndexOf(RijndaelExpiredKey encryptionKey)
 {
     throw new NotImplementedException();
 }