diff options
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/CoordinatingUserAgentResponse.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/CoordinatingUserAgentResponse.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingUserAgentResponse.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingUserAgentResponse.cs index 4897e98..75c68e0 100644 --- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingUserAgentResponse.cs +++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingUserAgentResponse.cs @@ -14,6 +14,11 @@ namespace DotNetOpenAuth.Test.Mocks { internal class CoordinatingUserAgentResponse : UserAgentResponse { private CoordinatingChannel receivingChannel; + /// <summary> + /// Initializes a new instance of the <see cref="CoordinatingUserAgentResponse"/> class. + /// </summary> + /// <param name="message">The direct response message to send to the remote channel. This message will be cloned.</param> + /// <param name="receivingChannel">The receiving channel.</param> internal CoordinatingUserAgentResponse(IProtocolMessage message, CoordinatingChannel receivingChannel) { ErrorUtilities.VerifyArgumentNotNull(message, "message"); ErrorUtilities.VerifyArgumentNotNull(receivingChannel, "receivingChannel"); |