diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-14 22:36:27 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-14 22:36:27 -0700 |
commit | 18e2f4b5277d6fd6100cbd8e95130240ecc19b80 (patch) | |
tree | e5b73f32c4943e6f53bbf51a78bcc21c47636dbb /src/DotNetOpenAuth.Core | |
parent | 85b43c815aa4fb069225ba31f9e763cd15bb6bc9 (diff) | |
download | DotNetOpenAuth-18e2f4b5277d6fd6100cbd8e95130240ecc19b80.zip DotNetOpenAuth-18e2f4b5277d6fd6100cbd8e95130240ecc19b80.tar.gz DotNetOpenAuth-18e2f4b5277d6fd6100cbd8e95130240ecc19b80.tar.bz2 |
Fixed StyleCop warnings.
Diffstat (limited to 'src/DotNetOpenAuth.Core')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/IDataBagFormatter.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/IDataBagFormatter.cs b/src/DotNetOpenAuth.Core/Messaging/IDataBagFormatter.cs index c208afc..9086ee9 100644 --- a/src/DotNetOpenAuth.Core/Messaging/IDataBagFormatter.cs +++ b/src/DotNetOpenAuth.Core/Messaging/IDataBagFormatter.cs @@ -64,7 +64,10 @@ namespace DotNetOpenAuth.Messaging { /// </summary> /// <param name="containingMessage">The message that contains the <see cref="DataBag"/> serialized value. Must not be nulll.</param> /// <param name="data">The serialized form of the <see cref="DataBag"/> to deserialize. Must not be null or empty.</param> - /// <returns>The deserialized value. Never null.</returns> + /// <param name="messagePartName">Name of the message part whose value is to be deserialized. Used for exception messages.</param> + /// <returns> + /// The deserialized value. Never null. + /// </returns> T IDataBagFormatter<T>.Deserialize(IProtocolMessage containingMessage, string data, string messagePartName) { Requires.NotNull(containingMessage, "containingMessage"); Requires.NotNullOrEmpty(data, "data"); |