diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-22 07:23:19 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-22 07:23:19 -0700 |
commit | 9396711526eaeac17ba31d6ea72c99c7160d1aed (patch) | |
tree | 2e25175a7776055d2e0249218ecdee4af4c690db /src/DotNetOpenAuth.Core/Messaging/Channel.cs | |
parent | faf473b36e66dc687f37b942eb6dabbf7210d133 (diff) | |
download | DotNetOpenAuth-9396711526eaeac17ba31d6ea72c99c7160d1aed.zip DotNetOpenAuth-9396711526eaeac17ba31d6ea72c99c7160d1aed.tar.gz DotNetOpenAuth-9396711526eaeac17ba31d6ea72c99c7160d1aed.tar.bz2 |
Fixes another test
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/Channel.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/Channel.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/Channel.cs b/src/DotNetOpenAuth.Core/Messaging/Channel.cs index b3b605d..25fee17 100644 --- a/src/DotNetOpenAuth.Core/Messaging/Channel.cs +++ b/src/DotNetOpenAuth.Core/Messaging/Channel.cs @@ -154,6 +154,7 @@ namespace DotNetOpenAuth.Messaging { /// <param name="hostFactories">The host factories.</param> protected Channel(IMessageFactory messageTypeProvider, IChannelBindingElement[] bindingElements, IHostFactories hostFactories) { Requires.NotNull(messageTypeProvider, "messageTypeProvider"); + Requires.NotNull(bindingElements, "bindingElements"); Requires.NotNull(hostFactories, "hostFactories"); this.messageTypeProvider = messageTypeProvider; |