diff options
Diffstat (limited to 'src/DotNetOpenAuth/ICryptoKeyStore.cs')
-rw-r--r-- | src/DotNetOpenAuth/ICryptoKeyStore.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/ICryptoKeyStore.cs b/src/DotNetOpenAuth/ICryptoKeyStore.cs index 4f221be..d2a5147 100644 --- a/src/DotNetOpenAuth/ICryptoKeyStore.cs +++ b/src/DotNetOpenAuth/ICryptoKeyStore.cs @@ -45,6 +45,7 @@ namespace DotNetOpenAuth { /// <param name="bucket">The name of the bucket to store the key in. Case sensitive.</param> /// <param name="handle">The handle to the key, unique within the bucket. Case sensitive.</param> /// <param name="key">The key to store.</param> + /// <exception cref="CryptoKeyCollisionException">Thrown in the event of a conflict with an existing key in the same bucket and with the same handle.</exception> void StoreKey(string bucket, string handle, CryptoKey key); /// <summary> |