Commit 850c4ed

mo khan <mo@mokhan.ca>
2010-07-17 22:21:04
replaced rhino mocks with moq.
1 parent 42503d5
product/client/server/orm/mappings/DateUserType.cs
@@ -9,7 +9,7 @@ namespace presentation.windows.server.orm.mappings
 {
     public class DateUserType : IUserType
     {
-        public bool Equals(object x, object y)
+        public new bool Equals(object x, object y)
         {
             return x != null && x.Equals(y);
         }
product/support/unit/client/presenters/AddFamilyMemberPresenterSpecs.cs
@@ -1,8 +1,7 @@
 using Machine.Specifications;
-using Moq;
 using presentation.windows;
 using presentation.windows.presenters;
-using It = Machine.Specifications.It;
+using Rhino.Mocks;
 
 namespace unit.client.presenters
 {
@@ -12,27 +11,27 @@ namespace unit.client.presenters
         {
             Establish context = () =>
             {
-                command_builder = new Mock<UICommandBuilder>();
+                command_builder = MockRepository.GenerateMock<UICommandBuilder>();
 
-                sut = new AddFamilyMemberPresenter(command_builder.Object);
+                sut = new AddFamilyMemberPresenter(command_builder);
             };
 
             static protected AddFamilyMemberPresenter sut;
-            static protected Mock<UICommandBuilder> command_builder;
+            static protected UICommandBuilder command_builder;
         }
 
         public class when_clicking_on_the_save_button : concern
         {
             It should_invoke_the_save_command = () =>
             {
-                save_command.received(x => x.Execute(null));
+                save_command.AssertWasCalled(x => x.Execute(null));
             };
 
             Establish context = () =>
             {
-                save_command = new Mock<IObservableCommand>();
+                save_command = MockRepository.GenerateMock<IObservableCommand>();
 
-                command_builder.Setup(x => x.build<AddFamilyMemberPresenter.SaveCommand>(sut)).Returns(save_command.Object);
+                command_builder.Stub(x => x.build<AddFamilyMemberPresenter.SaveCommand>(sut)).Return(save_command);
             };
 
             Because b = () =>
@@ -41,7 +40,7 @@ namespace unit.client.presenters
                 sut.Save.Execute(null);
             };
 
-            static Mock<IObservableCommand> save_command;
+            static IObservableCommand save_command;
         }
     }
 }
\ No newline at end of file
product/support/unit/client/presenters/WpfCommandBuilderSpecs.cs
@@ -1,9 +1,8 @@
 using Autofac;
 using Machine.Specifications;
-using Moq;
 using presentation.windows;
 using presentation.windows.presenters;
-using It = Machine.Specifications.It;
+using Rhino.Mocks;
 
 namespace unit.client.presenters
 {
@@ -13,40 +12,40 @@ namespace unit.client.presenters
         {
             Establish context = () =>
             {
-                container = new Mock<IContainer>();
-                sut = new WPFCommandBuilder(container.Object);
+                container = a<IContainer>();
+                sut = new WPFCommandBuilder(container);
             };
 
+            static public T a<T>() where T : class
+            {
+                return MockRepository.GenerateMock<T>();
+            }
+
             static protected WPFCommandBuilder sut;
-            static protected Mock<IContainer> container;
+            static protected IContainer container;
         }
 
         public class when_building_a_command_to_bind_to_a_presenter : concern
         {
             It should_return_a_command_that_executes_the_command_when_run = () =>
             {
-                command.received(x => x.run(presenter.Object));
+                command.received(x => x.run(presenter));
             };
 
             Establish context = () =>
             {
                 presenter = a<Presenter>();
                 command = a<UICommand>();
-                container.Setup(x => x.Resolve<UICommand>()).Returns(command.Object);
+                container.Stub(x => x.Resolve<UICommand>()).Return(command);
             };
 
-            static Mock<T> a<T>() where T : class
-            {
-                return new Mock<T>();
-            }
-
             Because b = () =>
             {
-                sut.build<UICommand>(presenter.Object).Execute(null);
+                sut.build<UICommand>(presenter).Execute(null);
             };
 
-            static Mock<Presenter> presenter;
-            static Mock<UICommand> command;
+            static Presenter presenter;
+            static UICommand command;
         }
     }
 }
\ No newline at end of file
product/support/unit/Mocking.cs
@@ -1,15 +1,13 @@
 using System;
-using System.Linq.Expressions;
-using Moq;
+using Rhino.Mocks;
 
 namespace unit
 {
-    public static class Mocking
+    static public class Mocking
     {
-        public static void received<T>(this Mock<T> mock, Expression<Action<T>> action) where T : class
-        { 
-            mock.Verify(action);
+        static public void received<T>(this T mock, Action<T> action) where T : class
+        {
+            mock.AssertWasCalled(action);
         }
-        
     }
 }
\ No newline at end of file
product/support/unit/unit.csproj
@@ -35,10 +35,10 @@
     <Reference Include="Machine.Specifications">
       <HintPath>..\..\..\thirdparty\mspec\Machine.Specifications.dll</HintPath>
     </Reference>
-    <Reference Include="Moq">
-      <HintPath>..\..\..\thirdparty\moq\Moq.dll</HintPath>
-    </Reference>
     <Reference Include="PresentationCore" />
+    <Reference Include="Rhino.Mocks">
+      <HintPath>..\..\..\thirdparty\rhino.mocks\Rhino.Mocks.dll</HintPath>
+    </Reference>
     <Reference Include="System" />
     <Reference Include="System.Core" />
     <Reference Include="System.Xml.Linq" />
thirdparty/moq/Moq.dll
Binary file
thirdparty/moq/Moq.pdb
Binary file
thirdparty/moq/Moq.xml
@@ -1,4788 +0,0 @@
-<?xml version="1.0"?>
-<doc>
-    <assembly>
-        <name>Moq</name>
-    </assembly>
-    <members>
-        <member name="T:ThisAssembly">
-            <group name="overview" title="Overview" order="0" />
-            <group name="setups" title="Specifying setups" order="1" />
-            <group name="returns" title="Returning values from members" order="2" />
-            <group name="verification" title="Verifying setups" order="3" />
-            <group name="advanced" title="Advanced scenarios" order="99" />
-            <group name="factory" title="Using MockFactory for consistency across mocks" order="4" />
-        </member>
-        <member name="T:Moq.Mock">
-            <summary>
-			Base class for mocks and static helper class with methods that
-			apply to mocked objects, such as <see cref="M:Moq.Mock.Get``1(``0)"/> to
-			retrieve a <see cref="T:Moq.Mock`1"/> from an object instance.
-		</summary>
-        </member>
-        <member name="T:Moq.IHideObjectMembers">
-            <summary>
-            Helper interface used to hide the base <see cref="T:System.Object"/> 
-            members from the fluent API to make it much cleaner 
-            in Visual Studio intellisense.
-            </summary>
-        </member>
-        <member name="M:Moq.IHideObjectMembers.GetType">
-            <summary/>
-        </member>
-        <member name="M:Moq.IHideObjectMembers.GetHashCode">
-            <summary/>
-        </member>
-        <member name="M:Moq.IHideObjectMembers.ToString">
-            <summary/>
-        </member>
-        <member name="M:Moq.IHideObjectMembers.Equals(System.Object)">
-            <summary/>
-        </member>
-        <member name="M:Moq.Mock.#ctor">
-            <summary>
-			Initializes a new instance of the <see cref="T:Moq.Mock"/> class.
-		</summary>
-        </member>
-        <member name="M:Moq.Mock.Get``1(``0)">
-            <summary>
-			Retrieves the mock object for the given object instance.
-		</summary><typeparam name="T">
-			Type of the mock to retrieve. Can be omitted as it's inferred
-			from the object instance passed in as the <paramref name="mocked"/> instance.
-		</typeparam><param name="mocked">The instance of the mocked object.</param><returns>The mock associated with the mocked object.</returns><exception cref="T:System.ArgumentException">
-			The received <paramref name="mocked"/> instance
-			was not created by Moq.
-		</exception><example group="advanced">
-			The following example shows how to add a new setup to an object
-			instance which is not the original <see cref="T:Moq.Mock`1"/> but rather
-			the object associated with it:
-			<code>
-				// Typed instance, not the mock, is retrieved from some test API.
-				HttpContextBase context = GetMockContext();
-
-				// context.Request is the typed object from the "real" API
-				// so in order to add a setup to it, we need to get
-				// the mock that "owns" it
-				Mock&lt;HttpRequestBase&gt; request = Mock.Get(context.Request);
-				mock.Setup(req =&gt; req.AppRelativeCurrentExecutionFilePath)
-					 .Returns(tempUrl);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock.OnGetObject">
-            <summary>
-			Returns the mocked object value.
-		</summary>
-        </member>
-        <member name="M:Moq.Mock.Verify">
-            <summary>
-			Verifies that all verifiable expectations have been met.
-		</summary><example group="verification">
-			This example sets up an expectation and marks it as verifiable. After
-			the mock is used, a <c>Verify()</c> call is issued on the mock
-			to ensure the method in the setup was invoked:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				this.Setup(x =&gt; x.HasInventory(TALISKER, 50)).Verifiable().Returns(true);
-				...
-				// other test code
-				...
-				// Will throw if the test code has didn't call HasInventory.
-				this.Verify();
-			</code>
-		</example><exception cref="T:Moq.MockException">Not all verifiable expectations were met.</exception>
-        </member>
-        <member name="M:Moq.Mock.VerifyAll">
-            <summary>
-			Verifies all expectations regardless of whether they have
-			been flagged as verifiable.
-		</summary><example group="verification">
-			This example sets up an expectation without marking it as verifiable. After
-			the mock is used, a <see cref="M:Moq.Mock.VerifyAll"/> call is issued on the mock
-			to ensure that all expectations are met:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				this.Setup(x =&gt; x.HasInventory(TALISKER, 50)).Returns(true);
-				...
-				// other test code
-				...
-				// Will throw if the test code has didn't call HasInventory, even
-				// that expectation was not marked as verifiable.
-				this.VerifyAll();
-			</code>
-		</example><exception cref="T:Moq.MockException">At least one expectation was not met.</exception>		
-        </member>
-        <member name="M:Moq.Mock.GetInterceptor(System.Linq.Expressions.Expression,Moq.Mock)">
-            <summary>
-            Gets the interceptor target for the given expression and root mock, 
-            building the intermediate hierarchy of mock objects if necessary.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.EventArgs)">
-            <summary>
-            Raises the associated event with the given 
-            event argument data.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.Object[])">
-            <summary>
-            Raises the associated event with the given 
-            event argument data.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock.As``1">
-            <summary>
-			Adds an interface implementation to the mock,
-			allowing setups to be specified for it.
-		</summary><remarks>
-			This method can only be called before the first use
-			of the mock <see cref="P:Moq.Mock.Object"/> property, at which
-			point the runtime type has already been generated
-			and no more interfaces can be added to it.
-			<para>
-				Also, <typeparamref name="TInterface"/> must be an
-				interface and not a class, which must be specified
-				when creating the mock instead.
-			</para>
-		</remarks><exception cref="T:System.InvalidOperationException">
-			The mock type
-			has already been generated by accessing the <see cref="P:Moq.Mock.Object"/> property.
-		</exception><exception cref="T:System.ArgumentException">
-			The <typeparamref name="TInterface"/> specified
-			is not an interface.
-		</exception><example>
-			The following example creates a mock for the main interface
-			and later adds <see cref="T:System.IDisposable"/> to it to verify
-			it's called by the consumer code:
-			<code>
-				var mock = new Mock&lt;IProcessor&gt;();
-				mock.Setup(x =&gt; x.Execute("ping"));
-
-				// add IDisposable interface
-				var disposable = mock.As&lt;IDisposable&gt;();
-				disposable.Setup(d =&gt; d.Dispose()).Verifiable();
-			</code>
-		</example><typeparam name="TInterface">Type of interface to cast the mock to.</typeparam>
-        </member>
-        <member name="P:Moq.Mock.Behavior">
-            <summary>
-			Behavior of the mock, according to the value set in the constructor.
-		</summary>
-        </member>
-        <member name="P:Moq.Mock.CallBase">
-            <summary>
-			Whether the base member virtual implementation will be called
-			for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
-		</summary>
-        </member>
-        <member name="P:Moq.Mock.DefaultValue">
-            <summary>
-			Specifies the behavior to use when returning default values for
-			unexpected invocations on loose mocks.
-		</summary>
-        </member>
-        <member name="P:Moq.Mock.Object">
-            <summary>
-			Gets the mocked object instance.
-		</summary>
-        </member>
-        <member name="P:Moq.Mock.MockedType">
-            <summary>
-            Retrieves the type of the mocked object, its generic type argument.
-            This is used in the auto-mocking of hierarchy access.
-            </summary>
-        </member>
-        <member name="P:Moq.Mock.DefaultValueProvider">
-            <summary>
-            Specifies the class that will determine the default 
-            value to return when invocations are made that 
-            have no setups and need to return a default 
-            value (for loose mocks).
-            </summary>
-        </member>
-        <member name="P:Moq.Mock.ImplementedInterfaces">
-            <summary>
-            Exposes the list of extra interfaces implemented by the mock.
-            </summary>
-        </member>
-        <member name="T:Moq.Mock`1">
-            <summary>
-			Provides a mock implementation of <typeparamref name="T"/>.
-		</summary><remarks>
-			Any interface type can be used for mocking, but for classes, only abstract and virtual members can be mocked.
-			<para>
-				The behavior of the mock with regards to the setups and the actual calls is determined
-				by the optional <see cref="T:Moq.MockBehavior"/> that can be passed to the <see cref="M:Moq.Mock`1.#ctor(Moq.MockBehavior)"/>
-				constructor.
-			</para>
-		</remarks><typeparam name="T">Type to mock, which can be an interface or a class.</typeparam><example group="overview" order="0">
-			The following example shows establishing setups with specific values
-			for method invocations:
-			<code>
-				// Arrange
-				var order = new Order(TALISKER, 50);
-				var mock = new Mock&lt;IWarehouse&gt;();
-
-				mock.Setup(x =&gt; x.HasInventory(TALISKER, 50)).Returns(true);
-
-				// Act
-				order.Fill(mock.Object);
-
-				// Assert
-				Assert.True(order.IsFilled);
-			</code>
-			The following example shows how to use the <see cref="T:Moq.It"/> class
-			to specify conditions for arguments instead of specific values:
-			<code>
-				// Arrange
-				var order = new Order(TALISKER, 50);
-				var mock = new Mock&lt;IWarehouse&gt;();
-
-				// shows how to expect a value within a range
-				mock.Setup(x =&gt; x.HasInventory(
-							It.IsAny&lt;string&gt;(),
-							It.IsInRange(0, 100, Range.Inclusive)))
-					 .Returns(false);
-
-				// shows how to throw for unexpected calls.
-				mock.Setup(x =&gt; x.Remove(
-							It.IsAny&lt;string&gt;(),
-							It.IsAny&lt;int&gt;()))
-					 .Throws(new InvalidOperationException());
-
-				// Act
-				order.Fill(mock.Object);
-
-				// Assert
-				Assert.False(order.IsFilled);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.#ctor(System.Boolean)">
-            <summary>
-            Ctor invoked by AsTInterface exclusively.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock`1.#ctor">
-            <summary>
-			Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see>.
-		</summary><example>
-			<code>var mock = new Mock&lt;IFormatProvider&gt;();</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.#ctor(System.Object[])">
-            <summary>
-			Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see> and with
-			the given constructor arguments for the class. (Only valid when <typeparamref name="T"/> is a class)
-		</summary><remarks>
-			The mock will try to find the best match constructor given the constructor arguments, and invoke that
-			to initialize the instance. This applies only for classes, not interfaces.
-		</remarks><example>
-			<code>var mock = new Mock&lt;MyProvider&gt;(someArgument, 25);</code>
-		</example><param name="args">Optional constructor arguments if the mocked type is a class.</param>
-        </member>
-        <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior)">
-            <summary>
-			Initializes an instance of the mock with the specified <see cref="T:Moq.MockBehavior">behavior</see>.
-		</summary><example>
-			<code>var mock = new Mock&lt;IFormatProvider&gt;(MockBehavior.Relaxed);</code>
-		</example><param name="behavior">Behavior of the mock.</param>
-        </member>
-        <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior,System.Object[])">
-            <summary>
-			Initializes an instance of the mock with a specific <see cref="T:Moq.MockBehavior">behavior</see> with
-			the given constructor arguments for the class.
-		</summary><remarks>
-			The mock will try to find the best match constructor given the constructor arguments, and invoke that
-			to initialize the instance. This applies only to classes, not interfaces.
-		</remarks><example>
-			<code>var mock = new Mock&lt;MyProvider&gt;(someArgument, 25);</code>
-		</example><param name="behavior">Behavior of the mock.</param><param name="args">Optional constructor arguments if the mocked type is a class.</param>
-        </member>
-        <member name="M:Moq.Mock`1.OnGetObject">
-            <summary>
-            Returns the mocked object value.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
-            <summary>
-			Specifies a setup on the mocked type for a call to
-			to a void method.
-		</summary><remarks>
-			If more than one setup is specified for the same method or property,
-			the latest one wins and is the one that will be executed.
-		</remarks><param name="expression">Lambda expression that specifies the expected method invocation.</param><example group="setups">
-			<code>
-				var mock = new Mock&lt;IProcessor&gt;();
-				mock.Setup(x =&gt; x.Execute("ping"));
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-			Specifies a setup on the mocked type for a call to
-			to a value returning method.
-		</summary><typeparam name="TResult">Type of the return value. Typically omitted as it can be inferred from the expression.</typeparam><remarks>
-			If more than one setup is specified for the same method or property,
-			the latest one wins and is the one that will be executed.
-		</remarks><param name="expression">Lambda expression that specifies the method invocation.</param><example group="setups">
-			<code>
-				mock.Setup(x =&gt; x.HasInventory("Talisker", 50)).Returns(true);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-			Specifies a setup on the mocked type for a call to
-			to a property getter.
-		</summary><remarks>
-			If more than one setup is set for the same property getter,
-			the latest one wins and is the one that will be executed.
-		</remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="expression">Lambda expression that specifies the property getter.</param><example group="setups">
-			<code>
-				mock.SetupGet(x =&gt; x.Suspended)
-					 .Returns(true);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.SetupSet``1(System.Action{`0})">
-            <summary>
-			Specifies a setup on the mocked type for a call to
-			to a property setter.
-		</summary><remarks>
-			If more than one setup is set for the same property setter,
-			the latest one wins and is the one that will be executed.
-			<para>
-				This overloads allows the use of a callback already
-				typed for the property type.
-			</para>
-		</remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="setterExpression">The Lambda expression that sets a property to a value.</param><example group="setups">
-			<code>
-				mock.SetupSet(x =&gt; x.Suspended = true);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.SetupSet(System.Action{`0})">
-            <summary>
-			Specifies a setup on the mocked type for a call to
-			to a property setter.
-		</summary><remarks>
-			If more than one setup is set for the same property setter,
-			the latest one wins and is the one that will be executed.
-		</remarks><param name="setterExpression">Lambda expression that sets a property to a value.</param><example group="setups">
-			<code>
-				mock.SetupSet(x =&gt; x.Suspended = true);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-			Specifies that the given property should have "property behavior",
-			meaning that setting its value will cause it to be saved and
-			later returned when the property is requested. (this is also
-			known as "stubbing").
-		</summary><typeparam name="TProperty">
-			Type of the property, inferred from the property
-			expression (does not need to be specified).
-		</typeparam><param name="property">Property expression to stub.</param><example>
-			If you have an interface with an int property <c>Value</c>, you might
-			stub it using the following straightforward call:
-			<code>
-				var mock = new Mock&lt;IHaveValue&gt;();
-				mock.Stub(v =&gt; v.Value);
-			</code>
-			After the <c>Stub</c> call has been issued, setting and
-			retrieving the object value will behave as expected:
-			<code>
-				IHaveValue v = mock.Object;
-
-				v.Value = 5;
-				Assert.Equal(5, v.Value);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
-            <summary>
-			Specifies that the given property should have "property behavior",
-			meaning that setting its value will cause it to be saved and
-			later returned when the property is requested. This overload
-			allows setting the initial value for the property. (this is also
-			known as "stubbing").
-		</summary><typeparam name="TProperty">
-			Type of the property, inferred from the property
-			expression (does not need to be specified).
-		</typeparam><param name="property">Property expression to stub.</param><param name="initialValue">Initial value for the property.</param><example>
-			If you have an interface with an int property <c>Value</c>, you might
-			stub it using the following straightforward call:
-			<code>
-				var mock = new Mock&lt;IHaveValue&gt;();
-				mock.SetupProperty(v =&gt; v.Value, 5);
-			</code>
-			After the <c>SetupProperty</c> call has been issued, setting and
-			retrieving the object value will behave as expected:
-			<code>
-				IHaveValue v = mock.Object;
-				// Initial value was stored
-				Assert.Equal(5, v.Value);
-
-				// New value set which changes the initial value
-				v.Value = 6;
-				Assert.Equal(6, v.Value);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.SetupAllProperties">
-            <summary>
-			Specifies that the all properties on the mock should have "property behavior",
-			meaning that setting its value will cause it to be saved and
-			later returned when the property is requested. (this is also
-			known as "stubbing"). The default value for each property will be the
-			one generated as specified by the <see cref="P:Moq.Mock.DefaultValue"/> property for the mock.
-		</summary><remarks>
-			If the mock <see cref="P:Moq.Mock.DefaultValue"/> is set to <see cref="F:Moq.DefaultValue.Mock"/>,
-			the mocked default values will also get all properties setup recursively.
-		</remarks>
-        </member>
-        <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}})">
-            <summary>
-			Verifies that a specific invocation matching the given expression was performed on the mock. Use
-			in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
-		</summary><example group="verification">
-			This example assumes that the mock has been used, and later we want to verify that a given
-			invocation with specific parameters was performed:
-			<code>
-				var mock = new Mock&lt;IProcessor&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't call Execute with a "ping" string argument.
-				mock.Verify(proc =&gt; proc.Execute("ping"));
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param>
-        </member>
-        <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times)">
-            <summary>
-			Verifies that a specific invocation matching the given expression was performed on the mock. Use
-			in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param>
-        </member>
-        <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},System.String)">
-            <summary>
-			Verifies that a specific invocation matching the given expression was performed on the mock,
-			specifying a failure error message. Use in conjuntion with the default
-			<see cref="F:Moq.MockBehavior.Loose"/>.
-		</summary><example group="verification">
-			This example assumes that the mock has been used, and later we want to verify that a given
-			invocation with specific parameters was performed:
-			<code>
-				var mock = new Mock&lt;IProcessor&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't call Execute with a "ping" string argument.
-				mock.Verify(proc =&gt; proc.Execute("ping"));
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
-        </member>
-        <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times,System.String)">
-            <summary>
-			Verifies that a specific invocation matching the given expression was performed on the mock,
-			specifying a failure error message. Use in conjuntion with the default
-			<see cref="F:Moq.MockBehavior.Loose"/>.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param>
-        </member>
-        <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-			Verifies that a specific invocation matching the given expression was performed on the mock. Use
-			in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
-		</summary><example group="verification">
-			This example assumes that the mock has been used, and later we want to verify that a given
-			invocation with specific parameters was performed:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't call HasInventory.
-				mock.Verify(warehouse =&gt; warehouse.HasInventory(TALISKER, 50));
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
-            <summary>
-			Verifies that a specific invocation matching the given
-			expression was performed on the mock. Use in conjuntion
-			with the default <see cref="F:Moq.MockBehavior.Loose"/>.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
-            <summary>
-			Verifies that a specific invocation matching the given
-			expression was performed on the mock, specifying a failure
-			error message.
-		</summary><example group="verification">
-			This example assumes that the mock has been used,
-			and later we want to verify that a given invocation
-			with specific parameters was performed:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't call HasInventory.
-				mock.Verify(warehouse =&gt; warehouse.HasInventory(TALISKER, 50), "When filling orders, inventory has to be checked");
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
-            <summary>
-			Verifies that a specific invocation matching the given
-			expression was performed on the mock, specifying a failure
-			error message.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-			Verifies that a property was read on the mock.
-		</summary><example group="verification">
-			This example assumes that the mock has been used,
-			and later we want to verify that a given property
-			was retrieved from it:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't retrieve the IsClosed property.
-				mock.VerifyGet(warehouse =&gt; warehouse.IsClosed);
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TProperty">
-			Type of the property to verify. Typically omitted as it can
-			be inferred from the expression's return type.
-		</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
-            <summary>
-			Verifies that a property was read on the mock.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><typeparam name="TProperty">
-			Type of the property to verify. Typically omitted as it can
-			be inferred from the expression's return type.
-		</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
-            <summary>
-			Verifies that a property was read on the mock, specifying a failure
-			error message.
-		</summary><example group="verification">
-			This example assumes that the mock has been used,
-			and later we want to verify that a given property
-			was retrieved from it:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't retrieve the IsClosed property.
-				mock.VerifyGet(warehouse =&gt; warehouse.IsClosed);
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
-			Type of the property to verify. Typically omitted as it can
-			be inferred from the expression's return type.
-		</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
-            <summary>
-			Verifies that a property was read on the mock, specifying a failure
-			error message.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
-			Type of the property to verify. Typically omitted as it can
-			be inferred from the expression's return type.
-		</typeparam>
-        </member>
-        <member name="M:Moq.Mock`1.VerifySet(System.Action{`0})">
-            <summary>
-			Verifies that a property was set on the mock.
-		</summary><example group="verification">
-			This example assumes that the mock has been used,
-			and later we want to verify that a given property
-			was set on it:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't set the IsClosed property.
-				mock.VerifySet(warehouse =&gt; warehouse.IsClosed = true);
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param>
-        </member>
-        <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times)">
-            <summary>
-			Verifies that a property was set on the mock.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param>
-        </member>
-        <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},System.String)">
-            <summary>
-			Verifies that a property was set on the mock, specifying
-			a failure message.
-		</summary><example group="verification">
-			This example assumes that the mock has been used,
-			and later we want to verify that a given property
-			was set on it:
-			<code>
-				var mock = new Mock&lt;IWarehouse&gt;();
-				// exercise mock
-				//...
-				// Will throw if the test code didn't set the IsClosed property.
-				mock.VerifySet(warehouse =&gt; warehouse.IsClosed = true, "Warehouse should always be closed after the action");
-			</code>
-		</example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
-        </member>
-        <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times,System.String)">
-            <summary>
-			Verifies that a property was set on the mock, specifying
-			a failure message.
-		</summary><exception cref="T:Moq.MockException">
-			The invocation was not call the times specified by
-			<paramref name="times"/>.
-		</exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
-        </member>
-        <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.EventArgs)">
-            <summary>
-			Raises the event referenced in <paramref name="eventExpression"/> using
-			the given <paramref name="args"/> argument.
-		</summary><exception cref="T:System.ArgumentException">
-			The <paramref name="args"/> argument is
-			invalid for the target event invocation, or the <paramref name="eventExpression"/> is
-			not an event attach or detach expression.
-		</exception><example>
-			The following example shows how to raise a <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event:
-			<code>
-				var mock = new Mock&lt;IViewModel&gt;();
-
-				mock.Raise(x =&gt; x.PropertyChanged -= null, new PropertyChangedEventArgs("Name"));
-			</code>
-		</example><example>
-			This example shows how to invoke an event with a custom event arguments
-			class in a view that will cause its corresponding presenter to
-			react by changing its state:
-			<code>
-				var mockView = new Mock&lt;IOrdersView&gt;();
-				var presenter = new OrdersPresenter(mockView.Object);
-
-				// Check that the presenter has no selection by default
-				Assert.Null(presenter.SelectedOrder);
-
-				// Raise the event with a specific arguments data
-				mockView.Raise(v =&gt; v.SelectionChanged += null, new OrderEventArgs { Order = new Order("moq", 500) });
-
-				// Now the presenter reacted to the event, and we have a selected order
-				Assert.NotNull(presenter.SelectedOrder);
-				Assert.Equal("moq", presenter.SelectedOrder.ProductName);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.Object[])">
-            <summary>
-			Raises the event referenced in <paramref name="eventExpression"/> using
-			the given <paramref name="args"/> argument for a non-EventHandler typed event.
-		</summary><exception cref="T:System.ArgumentException">
-			The <paramref name="args"/> arguments are
-			invalid for the target event invocation, or the <paramref name="eventExpression"/> is
-			not an event attach or detach expression.
-		</exception><example>
-			The following example shows how to raise a custom event that does not adhere to 
-			the standard <c>EventHandler</c>:
-			<code>
-				var mock = new Mock&lt;IViewModel&gt;();
-
-				mock.Raise(x =&gt; x.MyEvent -= null, "Name", bool, 25);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.Mock`1.Expect(System.Linq.Expressions.Expression{System.Action{`0}})">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock`1.Expect``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock`1.ExpectGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="P:Moq.Mock`1.Object">
-            <summary>
-			Exposes the mocked object instance.
-		</summary>
-        </member>
-        <member name="T:Moq.Protected.IProtectedMock`1">
-            <summary>
-            Allows setups to be specified for protected members by using their 
-            name as a string, rather than strong-typing them which is not possible 
-            due to their visibility.
-            </summary>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.Setup(System.String,System.Object[])">
-            <summary>
-            Specifies a setup for a void method invocation with the given 
-            <paramref name="voidMethodName"/>, optionally specifying arguments for the method call.
-            </summary>
-            <param name="voidMethodName">The name of the void method to be invoked.</param>
-            <param name="args">The optional arguments for the invocation. If argument matchers are used, 
-            remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.Setup``1(System.String,System.Object[])">
-            <summary>
-            Specifies a setup for an invocation on a property or a non void method with the given 
-            <paramref name="methodOrPropertyName"/>, optionally specifying arguments for the method call.
-            </summary>
-            <param name="methodOrPropertyName">The name of the method or property to be invoked.</param>
-            <param name="args">The optional arguments for the invocation. If argument matchers are used, 
-            remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
-            <typeparam name="TResult">The return type of the method or property.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.SetupGet``1(System.String)">
-            <summary>
-            Specifies a setup for an invocation on a property getter with the given 
-            <paramref name="propertyName"/>.
-            </summary>
-            <param name="propertyName">The name of the property.</param>
-            <typeparam name="TProperty">The type of the property.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.SetupSet``1(System.String,System.Object)">
-            <summary>
-            Specifies a setup for an invocation on a property setter with the given 
-            <paramref name="propertyName"/>.
-            </summary>
-            <param name="propertyName">The name of the property.</param>
-            <param name="value">The property value. If argument matchers are used, 
-            remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
-            <typeparam name="TProperty">The type of the property.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.Verify(System.String,Moq.Times,System.Object[])">
-            <summary>
-            Specifies a verify for a void method with the given <paramref name="methodName"/>,
-            optionally specifying arguments for the method call. Use in conjuntion with the default
-            <see cref="F:Moq.MockBehavior.Loose"/>.
-            </summary>
-            <exception cref="T:Moq.MockException">The invocation was not call the times specified by
-            <paramref name="times"/>.</exception>
-            <param name="methodName">The name of the void method to be verified.</param>
-            <param name="times">The number of times a method is allowed to be called.</param>
-            <param name="args">The optional arguments for the invocation. If argument matchers are used, 
-            remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.Verify``1(System.String,Moq.Times,System.Object[])">
-            <summary>
-            Specifies a verify for an invocation on a property or a non void method with the given 
-            <paramref name="methodName"/>, optionally specifying arguments for the method call.
-            </summary>
-            <exception cref="T:Moq.MockException">The invocation was not call the times specified by 
-            <paramref name="times"/>.</exception>
-            <param name="methodName">The name of the method or property to be invoked.</param>
-            <param name="args">The optional arguments for the invocation. If argument matchers are used, 
-            remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
-            <param name="times">The number of times a method is allowed to be called.</param>
-            <typeparam name="TResult">The type of return value from the expression.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.VerifyGet``1(System.String,Moq.Times)">
-            <summary>
-            Specifies a verify for an invocation on a property getter with the given 
-            <paramref name="propertyName"/>.
-            <exception cref="T:Moq.MockException">The invocation was not call the times specified by 
-            <paramref name="times"/>.</exception>
-            </summary>
-            <param name="propertyName">The name of the property.</param>
-            <param name="times">The number of times a method is allowed to be called.</param>
-            <typeparam name="TProperty">The type of the property.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.IProtectedMock`1.VerifySet``1(System.String,Moq.Times,System.Object)">
-            <summary>
-            Specifies a setup for an invocation on a property setter with the given 
-            <paramref name="propertyName"/>.
-            </summary>
-            <exception cref="T:Moq.MockException">The invocation was not call the times specified by 
-            <paramref name="times"/>.</exception>
-            <param name="propertyName">The name of the property.</param>
-            <param name="times">The number of times a method is allowed to be called.</param>
-            <param name="value">The property value.</param>
-            <typeparam name="TProperty">The type of the property. If argument matchers are used, 
-            remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</typeparam>
-        </member>
-        <member name="T:Moq.MockBehavior">
-            <summary>
-            Options to customize the behavior of the mock. 
-            </summary>
-        </member>
-        <member name="F:Moq.MockBehavior.Strict">
-            <summary>
-            Causes the mock to always throw 
-            an exception for invocations that don't have a 
-            corresponding setup.
-            </summary>
-        </member>
-        <member name="F:Moq.MockBehavior.Loose">
-            <summary>
-            Will never throw exceptions, returning default  
-            values when necessary (null for reference types, 
-            zero for value types or empty enumerables and arrays).
-            </summary>
-        </member>
-        <member name="F:Moq.MockBehavior.Default">
-            <summary>
-            Default mock behavior, which equals <see cref="F:Moq.MockBehavior.Loose"/>.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.IThrows">
-            <summary>
-            Defines the <c>Throws</c> verb.
-            </summary>
-        </member>
-        <member name="M:Moq.Language.IThrows.Throws(System.Exception)">
-            <summary>
-            Specifies the exception to throw when the method is invoked.
-            </summary>
-            <param name="exception">Exception instance to throw.</param>
-            <example>
-            This example shows how to throw an exception when the method is 
-            invoked with an empty string argument:
-            <code>
-            mock.Setup(x =&gt; x.Execute(""))
-                .Throws(new ArgumentException());
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IThrows.Throws``1">
-            <summary>
-            Specifies the type of exception to throw when the method is invoked.
-            </summary>
-            <typeparam name="TException">Type of exception to instantiate and throw when the setup is matched.</typeparam>
-            <example>
-            This example shows how to throw an exception when the method is 
-            invoked with an empty string argument:
-            <code>
-            mock.Setup(x =&gt; x.Execute(""))
-                .Throws&lt;ArgumentException&gt;();
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Language.Flow.IThrowsResult">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.IOccurrence">
-            <summary>
-            Defines occurrence members to constraint setups.
-            </summary>
-        </member>
-        <member name="M:Moq.Language.IOccurrence.AtMostOnce">
-            <summary>
-            The expected invocation can happen at most once.
-            </summary>
-            <example>
-            <code>
-            var mock = new Mock&lt;ICommand&gt;();
-            mock.Setup(foo => foo.Execute("ping"))
-                .AtMostOnce();
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IOccurrence.AtMost(System.Int32)">
-            <summary>
-            The expected invocation can happen at most specified number of times.
-            </summary>
-            <param name="callCount">The number of times to accept calls.</param>
-            <example>
-            <code>
-            var mock = new Mock&lt;ICommand&gt;();
-            mock.Setup(foo => foo.Execute("ping"))
-                .AtMost( 5 );
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Language.IVerifies">
-            <summary>
-            Defines the <c>Verifiable</c> verb.
-            </summary>
-        </member>
-        <member name="M:Moq.Language.IVerifies.Verifiable">
-            <summary>
-            Marks the expectation as verifiable, meaning that a call 
-            to <see cref="M:Moq.Mock.Verify"/> will check if this particular 
-            expectation was met.
-            </summary>
-            <example>
-            The following example marks the expectation as verifiable:
-            <code>
-            mock.Expect(x =&gt; x.Execute("ping"))
-                .Returns(true)
-                .Verifiable();
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IVerifies.Verifiable(System.String)">
-            <summary>
-            Marks the expectation as verifiable, meaning that a call 
-            to <see cref="M:Moq.Mock.Verify"/> will check if this particular 
-            expectation was met, and specifies a message for failures.
-            </summary>
-            <example>
-            The following example marks the expectation as verifiable:
-            <code>
-            mock.Expect(x =&gt; x.Execute("ping"))
-                .Returns(true)
-                .Verifiable("Ping should be executed always!");
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Range">
-            <summary>
-            Kind of range to use in a filter specified through 
-            <see cref="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)"/>.
-            </summary>
-        </member>
-        <member name="F:Moq.Range.Inclusive">
-            <summary>
-            The range includes the <c>to</c> and 
-            <c>from</c> values.
-            </summary>
-        </member>
-        <member name="F:Moq.Range.Exclusive">
-            <summary>
-            The range does not include the <c>to</c> and 
-            <c>from</c> values.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.Flow.ICallbackResult">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.ICallbackSetter`1">
-            <summary>
-            Defines the <c>Callback</c> verb for property setter setups.
-            </summary>
-            <typeparam name="TProperty">Type of the property.</typeparam>
-        </member>
-        <member name="M:Moq.Language.ICallbackSetter`1.Callback(System.Action{`0})">
-            <summary>
-            Specifies a callback to invoke when the property is set that receives the 
-            property value being set.
-            </summary>
-            <param name="action">Callback method to invoke.</param>
-            <example>
-            Invokes the given callback with the property value being set. 
-            <code>
-            mock.SetupSet(x => x.Suspended)
-                .Callback((bool state) => Console.WriteLine(state));
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Evaluator">
-            <summary>
-            Provides partial evaluation of subtrees, whenever they can be evaluated locally.
-            </summary>
-            <author>Matt Warren: http://blogs.msdn.com/mattwar</author>
-            <contributor>Documented by InSTEDD: http://www.instedd.org</contributor>
-        </member>
-        <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression,System.Func{System.Linq.Expressions.Expression,System.Boolean})">
-            <summary>
-            Performs evaluation and replacement of independent sub-trees
-            </summary>
-            <param name="expression">The root of the expression tree.</param>
-            <param name="fnCanBeEvaluated">A function that decides whether a given expression
-            node can be part of the local function.</param>
-            <returns>A new tree with sub-trees evaluated and replaced.</returns>
-        </member>
-        <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression)">
-            <summary>
-            Performs evaluation and replacement of independent sub-trees
-            </summary>
-            <param name="expression">The root of the expression tree.</param>
-            <returns>A new tree with sub-trees evaluated and replaced.</returns>
-        </member>
-        <member name="T:Moq.Evaluator.SubtreeEvaluator">
-            <summary>
-            Evaluates and replaces sub-trees when first candidate is reached (top-down)
-            </summary>
-        </member>
-        <member name="T:Moq.Evaluator.Nominator">
-            <summary>
-            Performs bottom-up analysis to determine which nodes can possibly
-            be part of an evaluated sub-tree.
-            </summary>
-        </member>
-        <member name="T:Moq.MethodCallReturn">
-            <devdoc>
-            We need this non-generics base class so that 
-            we can use <see cref="P:Moq.MethodCallReturn.HasReturnValue"/> from 
-            generic code.
-            </devdoc>
-        </member>
-        <member name="T:Moq.Language.Flow.ISetup`2">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.ICallback`2">
-            <summary>
-            Defines the <c>Callback</c> verb and overloads for callbacks on
-            setups that return a value.
-            </summary>
-            <typeparam name="TMock">Mocked type.</typeparam>
-            <typeparam name="TResult">Type of the return value of the setup.</typeparam>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback(System.Action)">
-            <summary>
-            Specifies a callback to invoke when the method is called.
-            </summary>
-            <param name="action">The callback method to invoke.</param>
-            <example>
-            The following example specifies a callback to set a boolean value that can be used later:
-            <code>
-            var called = false;
-            mock.Setup(x => x.Execute())
-                .Callback(() => called = true)
-                .Returns(true);
-            </code>
-            Note that in the case of value-returning methods, after the <c>Callback</c>
-            call you can still specify the return value.
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``1(System.Action{``0})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T">The type of the argument of the invoked method.</typeparam>
-            <param name="action">Callback method to invoke.</param>
-            <example>
-            Invokes the given callback with the concrete invocation argument value.
-            <para>
-            Notice how the specific string argument is retrieved by simply declaring
-            it as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(It.IsAny&lt;string&gt;()))
-                .Callback(command => Console.WriteLine(command))
-                .Returns(true);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``2(System.Action{``0,``1})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2) =&gt; Console.WriteLine(arg1 + arg2));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``3(System.Action{``0,``1,``2})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3) =&gt; Console.WriteLine(arg1 + arg2 + arg3));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``4(System.Action{``0,``1,``2,``3})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``5(System.Action{``0,``1,``2,``3,``4})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback`2.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original
-            arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
-            <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Language.Flow.IReturnsThrows`2">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.IReturns`2">
-            <summary>
-            Defines the <c>Returns</c> verb.
-            </summary>
-            <typeparam name="TMock">Mocked type.</typeparam>
-            <typeparam name="TResult">Type of the return value from the expression.</typeparam>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns(`1)">
-            <summary>
-            Specifies the value to return.
-            </summary>
-            <param name="value">The value to return, or <see langword="null"/>.</param>
-            <example>
-            Return a <c>true</c> value from the method call:
-            <code>
-            mock.Setup(x => x.Execute("ping"))
-                .Returns(true);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns(System.Func{`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method.
-            </summary>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <example group="returns">
-            Return a calculated value when the method is called:
-            <code>
-            mock.Setup(x => x.Execute("ping"))
-                .Returns(() => returnValues[0]);
-            </code>
-            The lambda expression to retrieve the return value is lazy-executed, 
-            meaning that its value may change depending on the moment the method 
-            is executed and the value the <c>returnValues</c> array has at 
-            that moment.
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``1(System.Func{``0,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T">The type of the argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <example group="returns">
-            Return a calculated value which is evaluated lazily at the time of the invocation.
-            <para>
-            The lookup list can change between invocations and the setup 
-            will return different values accordingly. Also, notice how the specific 
-            string argument is retrieved by simply declaring it as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(It.IsAny&lt;string&gt;()))
-                .Returns((string command) => returnValues[command]);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``2(System.Func{``0,``1,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2) => arg1 + arg2);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``3(System.Func{``0,``1,``2,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3) => arg1 + arg2 + arg3);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``4(System.Func{``0,``1,``2,``3,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4) => arg1 + arg2 + arg3 + arg4);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``5(System.Func{``0,``1,``2,``3,``4,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5) => arg1 + arg2 + arg3 + arg4 + arg5);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``6(System.Func{``0,``1,``2,``3,``4,``5,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``7(System.Func{``0,``1,``2,``3,``4,``5,``6,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturns`2.Returns``16(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,`1})">
-            <summary>
-            Specifies a function that will calculate the value to return from the method, 
-            retrieving the arguments for the invocation.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
-            <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
-            <example>
-            <para>
-            The return value is calculated from the value of the actual method invocation arguments. 
-            Notice how the arguments are retrieved by simply declaring them as part of the lambda 
-            expression:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;(), 
-                                 It.IsAny&lt;int&gt;()))
-                .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16);
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Language.Flow.ISetupGetter`2">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.ICallbackGetter`2">
-            <summary>
-            Defines the <c>Callback</c> verb for property getter setups.
-            </summary>
-            <seealso cref="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})"/>
-            <typeparam name="TMock">Mocked type.</typeparam>
-            <typeparam name="TProperty">Type of the property.</typeparam>
-        </member>
-        <member name="M:Moq.Language.ICallbackGetter`2.Callback(System.Action)">
-            <summary>
-            Specifies a callback to invoke when the property is retrieved.
-            </summary>
-            <param name="action">Callback method to invoke.</param>
-            <example>
-            Invokes the given callback with the property value being set. 
-            <code>
-            mock.SetupGet(x => x.Suspended)
-                .Callback(() => called = true)
-                .Returns(true);
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Language.Flow.IReturnsThrowsGetter`2">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.IReturnsGetter`2">
-            <summary>
-            Defines the <c>Returns</c> verb for property get setups.
-            </summary>
-            <typeparam name="TMock">Mocked type.</typeparam>
-            <typeparam name="TProperty">Type of the property.</typeparam>
-        </member>
-        <member name="M:Moq.Language.IReturnsGetter`2.Returns(`1)">
-            <summary>
-            Specifies the value to return.
-            </summary>
-            <param name="value">The value to return, or <see langword="null"/>.</param>
-            <example>
-            Return a <c>true</c> value from the property getter call:
-            <code>
-            mock.SetupGet(x => x.Suspended)
-                .Returns(true);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IReturnsGetter`2.Returns(System.Func{`1})">
-            <summary>
-            Specifies a function that will calculate the value to return for the property.
-            </summary>
-            <param name="valueFunction">The function that will calculate the return value.</param>
-            <example>
-            Return a calculated value when the property is retrieved:
-            <code>
-            mock.SetupGet(x => x.Suspended)
-                .Returns(() => returnValues[0]);
-            </code>
-            The lambda expression to retrieve the return value is lazy-executed, 
-            meaning that its value may change depending on the moment the property  
-            is retrieved and the value the <c>returnValues</c> array has at 
-            that moment.
-            </example>
-        </member>
-        <member name="T:Moq.Language.Flow.IReturnsResult`1">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.ICallback">
-            <summary>
-            Defines the <c>Callback</c> verb and overloads.
-            </summary>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback(System.Action)">
-            <summary>
-            Specifies a callback to invoke when the method is called.
-            </summary>
-            <param name="action">The callback method to invoke.</param>
-            <example>
-            The following example specifies a callback to set a boolean 
-            value that can be used later:
-            <code>
-            var called = false;
-            mock.Setup(x => x.Execute())
-                .Callback(() => called = true);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``1(System.Action{``0})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T">The argument type of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <example>
-            Invokes the given callback with the concrete invocation argument value. 
-            <para>
-            Notice how the specific string argument is retrieved by simply declaring 
-            it as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x => x.Execute(It.IsAny&lt;string&gt;()))
-                .Callback((string command) => Console.WriteLine(command));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``2(System.Action{``0,``1})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2) =&gt; Console.WriteLine(arg1 + arg2));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``3(System.Action{``0,``1,``2})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3) =&gt; Console.WriteLine(arg1 + arg2 + arg3));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``4(System.Action{``0,``1,``2,``3})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``5(System.Action{``0,``1,``2,``3,``4})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.ICallback.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
-            <summary>
-            Specifies a callback to invoke when the method is called that receives the original arguments.
-            </summary>
-            <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
-            <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
-            <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
-            <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
-            <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
-            <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
-            <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
-            <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
-            <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
-            <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
-            <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
-            <param name="action">The callback method to invoke.</param>
-            <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
-            <example>
-            Invokes the given callback with the concrete invocation arguments values. 
-            <para>
-            Notice how the specific arguments are retrieved by simply declaring 
-            them as part of the lambda expression for the callback:
-            </para>
-            <code>
-            mock.Setup(x =&gt; x.Execute(
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;(),
-                                 It.IsAny&lt;string&gt;()))
-                .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) =&gt; Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.Language.IRaise`1">
-            <summary>
-            Defines the <c>Raises</c> verb.
-            </summary>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)">
-            <summary>
-            Specifies the event that will be raised 
-            when the setup is met.
-            </summary>
-            <param name="eventExpression">An expression that represents an event attach or detach action.</param>
-            <param name="args">The event arguments to pass for the raised event.</param>
-            <example>
-            The following example shows how to raise an event when 
-            the setup is met:
-            <code>
-            var mock = new Mock&lt;IContainer&gt;();
-            
-            mock.Setup(add => add.Add(It.IsAny&lt;string&gt;(), It.IsAny&lt;object&gt;()))
-                .Raises(add => add.Added += null, EventArgs.Empty);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Func{System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised 
-            when the setup is matched.
-            </summary>
-            <param name="eventExpression">An expression that represents an event attach or detach action.</param>
-            <param name="func">A function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``1(System.Action{`0},System.Func{``0,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``2(System.Action{`0},System.Func{``0,``1,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``3(System.Action{`0},System.Func{``0,``1,``2,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``4(System.Action{`0},System.Func{``0,``1,``2,``3,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``5(System.Action{`0},System.Func{``0,``1,``2,``3,``4,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``6(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``7(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``8(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``9(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``10(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``11(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``12(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``13(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``14(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``15(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises``16(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,System.EventArgs})">
-            <summary>
-            Specifies the event that will be raised when the setup is matched.
-            </summary>
-            <param name="eventExpression">The expression that represents an event attach or detach action.</param>
-            <param name="func">The function that will build the <see cref="T:System.EventArgs"/> 
-            to pass when raising the event.</param>
-            <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
-            <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
-            <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
-            <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
-            <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
-            <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
-            <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
-            <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
-            <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
-            <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
-            <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
-            <typeparam name="T16">The type of the sixteenth argument received by the expected invocation.</typeparam>
-            <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
-        </member>
-        <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Object[])">
-            <summary>
-            Specifies the custom event that will be raised 
-            when the setup is matched.
-            </summary>
-            <param name="eventExpression">An expression that represents an event attach or detach action.</param>
-            <param name="args">The arguments to pass to the custom delegate (non EventHandler-compatible).</param>
-        </member>
-        <member name="T:Moq.Times">
-            <summary>
-			Defines the number of invocations allowed by a mocked method.
-		</summary>
-        </member>
-        <member name="M:Moq.Times.AtLeast(System.Int32)">
-            <summary>
-			Specifies that a mocked method should be invoked <paramref name="callCount"/> times as minimum.
-		</summary><param name="callCount">The minimun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.AtLeastOnce">
-            <summary>
-			Specifies that a mocked method should be invoked one time as minimum.
-		</summary><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.AtMost(System.Int32)">
-            <summary>
-			Specifies that a mocked method should be invoked <paramref name="callCount"/> time as maximun.
-		</summary><param name="callCount">The maximun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.AtMostOnce">
-            <summary>
-			Specifies that a mocked method should be invoked one time as maximun.
-		</summary><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.Between(System.Int32,System.Int32,Moq.Range)">
-            <summary>
-			Specifies that a mocked method should be invoked between <paramref name="callCountFrom"/> and
-			<paramref name="callCountTo"/> times.
-		</summary><param name="callCountFrom">The minimun number of times.</param><param name="callCountTo">The maximun number of times.</param><param name="rangeKind">
-			The kind of range. See <see cref="T:Moq.Range"/>.
-		</param><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.Exactly(System.Int32)">
-            <summary>
-			Specifies that a mocked method should be invoked exactly <paramref name="callCount"/> times.
-		</summary><param name="callCount">The times that a method or property can be called.</param><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.Never">
-            <summary>
-			Specifies that a mocked method should not be invoked.
-		</summary><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.Once">
-            <summary>
-			Specifies that a mocked method should be invoked exactly one time.
-		</summary><returns>An object defining the allowed number of invocations.</returns>
-        </member>
-        <member name="M:Moq.Times.Equals(System.Object)">
-            <summary>
-			Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
-		</summary><param name="obj">
-			The <see cref="T:System.Object"/> to compare with this instance.
-		</param><returns>
-			<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
-		</returns>
-        </member>
-        <member name="M:Moq.Times.GetHashCode">
-            <summary>
-			Returns a hash code for this instance.
-		</summary><returns>
-			A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
-		</returns>
-        </member>
-        <member name="M:Moq.Times.op_Equality(Moq.Times,Moq.Times)">
-            <summary>
-			Determines whether two specified <see cref="T:Moq.Times"/> objects have the same value.
-		</summary><param name="left">
-			The first <see cref="T:Moq.Times"/>.
-		</param><param name="right">
-			The second <see cref="T:Moq.Times"/>.
-		</param><returns>
-			<c>true</c> if the value of left is the same as the value of right; otherwise, <c>false</c>.
-		</returns>
-        </member>
-        <member name="M:Moq.Times.op_Inequality(Moq.Times,Moq.Times)">
-            <summary>
-			Determines whether two specified <see cref="T:Moq.Times"/> objects have different values.
-		</summary><param name="left">
-			The first <see cref="T:Moq.Times"/>.
-		</param><param name="right">
-			The second <see cref="T:Moq.Times"/>.
-		</param><returns>
-			<c>true</c> if the value of left is different from the value of right; otherwise, <c>false</c>.
-		</returns>
-        </member>
-        <member name="T:Moq.Matchers.MatcherAttributeMatcher">
-            <summary>
-            Matcher to treat static functions as matchers.
-            
-            mock.Setup(x => x.StringMethod(A.MagicString()));
-            
-            pbulic static class A 
-            {
-                [Matcher]
-                public static string MagicString() { return null; }
-                public static bool MagicString(string arg)
-                {
-                    return arg == "magic";
-                }
-            }
-            
-            Will success if: mock.Object.StringMethod("magic");
-            and fail with any other call.
-            </summary>
-        </member>
-        <member name="T:Moq.EmptyDefaultValueProvider">
-            <summary>
-            A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value 
-            for invocations that do not have setups or return values, with loose mocks.
-            This is the default behavior for a mock.
-            </summary>
-        </member>
-        <member name="T:Moq.IDefaultValueProvider">
-            <summary>
-            Interface to be implemented by classes that determine the 
-            default value of non-expected invocations.
-            </summary>
-        </member>
-        <member name="M:Moq.IDefaultValueProvider.ProvideDefault(System.Reflection.MethodInfo)">
-            <summary>
-            Provides a value for the given member and arguments.
-            </summary>
-            <param name="member">The member to provide a default 
-            value for.</param>
-        </member>
-        <member name="T:Moq.MockExtensions">
-            <summary>
-            Provides additional methods on mocks.
-            </summary>
-            <devdoc>
-            Provided as extension methods as they confuse the compiler 
-            with the overloads taking Action.
-            </devdoc>
-        </member>
-        <member name="M:Moq.MockExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
-            <summary>
-            Specifies a setup on the mocked type for a call to 
-            to a property setter, regardless of its value.
-            </summary>
-            <remarks>
-            If more than one setup is set for the same property setter, 
-            the latest one wins and is the one that will be executed.
-            </remarks>
-            <typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam>
-            <typeparam name="T">Type of the mock.</typeparam>
-            <param name="mock">The target mock for the setup.</param>
-            <param name="expression">Lambda expression that specifies the property setter.</param>
-            <example group="setups">
-            <code>
-            mock.SetupSet(x =&gt; x.Suspended);
-            </code>
-            </example>
-            <devdoc>
-            This method is not legacy, but must be on an extension method to avoid 
-            confusing the compiler with the new Action syntax.
-            </devdoc>
-        </member>
-        <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
-            <summary>
-            Verifies that a property has been set on the mock, regarless of its value.
-            </summary>
-            <example group="verification">
-            This example assumes that the mock has been used, 
-            and later we want to verify that a given invocation 
-            with specific parameters was performed:
-            <code>
-            var mock = new Mock&lt;IWarehouse&gt;();
-            // exercise mock
-            //...
-            // Will throw if the test code didn't set the IsClosed property.
-            mock.VerifySet(warehouse =&gt; warehouse.IsClosed);
-            </code>
-            </example>
-            <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
-            <param name="expression">Expression to verify.</param>
-            <param name="mock">The mock instance.</param>
-            <typeparam name="T">Mocked type.</typeparam>
-            <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can 
-            be inferred from the expression's return type.</typeparam>
-        </member>
-        <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.String)">
-            <summary>
-            Verifies that a property has been set on the mock, specifying a failure  
-            error message. 
-            </summary>
-            <example group="verification">
-            This example assumes that the mock has been used, 
-            and later we want to verify that a given invocation 
-            with specific parameters was performed:
-            <code>
-            var mock = new Mock&lt;IWarehouse&gt;();
-            // exercise mock
-            //...
-            // Will throw if the test code didn't set the IsClosed property.
-            mock.VerifySet(warehouse =&gt; warehouse.IsClosed);
-            </code>
-            </example>
-            <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
-            <param name="expression">Expression to verify.</param>
-            <param name="failMessage">Message to show if verification fails.</param>
-            <param name="mock">The mock instance.</param>
-            <typeparam name="T">Mocked type.</typeparam>
-            <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can 
-            be inferred from the expression's return type.</typeparam>
-        </member>
-        <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times)">
-            <summary>
-            Verifies that a property has been set on the mock, regardless 
-            of the value but only the specified number of times.
-            </summary>
-            <example group="verification">
-            This example assumes that the mock has been used, 
-            and later we want to verify that a given invocation 
-            with specific parameters was performed:
-            <code>
-            var mock = new Mock&lt;IWarehouse&gt;();
-            // exercise mock
-            //...
-            // Will throw if the test code didn't set the IsClosed property.
-            mock.VerifySet(warehouse =&gt; warehouse.IsClosed);
-            </code>
-            </example>
-            <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
-            <exception cref="T:Moq.MockException">The invocation was not call the times specified by
-            <paramref name="times"/>.</exception>
-            <param name="mock">The mock instance.</param>
-            <typeparam name="T">Mocked type.</typeparam>
-            <param name="times">The number of times a method is allowed to be called.</param>
-            <param name="expression">Expression to verify.</param>
-            <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can 
-            be inferred from the expression's return type.</typeparam>
-        </member>
-        <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times,System.String)">
-            <summary>
-            Verifies that a property has been set on the mock, regardless 
-            of the value but only the specified number of times, and specifying a failure  
-            error message. 
-            </summary>
-            <example group="verification">
-            This example assumes that the mock has been used, 
-            and later we want to verify that a given invocation 
-            with specific parameters was performed:
-            <code>
-            var mock = new Mock&lt;IWarehouse&gt;();
-            // exercise mock
-            //...
-            // Will throw if the test code didn't set the IsClosed property.
-            mock.VerifySet(warehouse =&gt; warehouse.IsClosed);
-            </code>
-            </example>
-            <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
-            <exception cref="T:Moq.MockException">The invocation was not call the times specified by
-            <paramref name="times"/>.</exception>
-            <param name="mock">The mock instance.</param>
-            <typeparam name="T">Mocked type.</typeparam>
-            <param name="times">The number of times a method is allowed to be called.</param>
-            <param name="failMessage">Message to show if verification fails.</param>
-            <param name="expression">Expression to verify.</param>
-            <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can 
-            be inferred from the expression's return type.</typeparam>
-        </member>
-        <member name="T:Moq.Language.Flow.ISetup`1">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.DefaultValue">
-            <summary>
-            Determines the way default values are generated 
-            calculated for loose mocks.
-            </summary>
-        </member>
-        <member name="F:Moq.DefaultValue.Empty">
-            <summary>
-            Default behavior, which generates empty values for 
-            value types (i.e. default(int)), empty array and 
-            enumerables, and nulls for all other reference types.
-            </summary>
-        </member>
-        <member name="F:Moq.DefaultValue.Mock">
-            <summary>
-            Whenever the default value generated by <see cref="F:Moq.DefaultValue.Empty"/> 
-            is null, replaces this value with a mock (if the type 
-            can be mocked). 
-            </summary>
-            <remarks>
-            For sealed classes, a null value will be generated.
-            </remarks>
-        </member>
-        <member name="T:Moq.IMocked`1">
-            <summary>
-            Implemented by all generated mock object instances.
-            </summary>
-        </member>
-        <member name="T:Moq.IMocked">
-            <summary>
-            Implemented by all generated mock object instances.
-            </summary>
-        </member>
-        <member name="P:Moq.IMocked.Mock">
-            <summary>
-            Reference the Mock that contains this as the <c>mock.Object</c> value.
-            </summary>
-        </member>
-        <member name="P:Moq.IMocked`1.Mock">
-            <summary>
-            Reference the Mock that contains this as the <c>mock.Object</c> value.
-            </summary>
-        </member>
-        <member name="T:Moq.MatcherAttribute">
-            <summary>
-            Marks a method as a matcher, which allows complete replacement 
-            of the built-in <see cref="T:Moq.It"/> class with your own argument 
-            matching rules.
-            </summary>
-            <remarks>
-            <b>This feature has been deprecated in favor of the new 
-            and simpler <see cref="T:Moq.Match`1"/>.
-            </b>
-            <para>
-            The argument matching is used to determine whether a concrete 
-            invocation in the mock matches a given setup. This 
-            matching mechanism is fully extensible. 
-            </para>
-            <para>
-            There are two parts of a matcher: the compiler matcher 
-            and the runtime matcher.
-            <list type="bullet">
-            <item>
-            <term>Compiler matcher</term>
-            <description>Used to satisfy the compiler requirements for the 
-            argument. Needs to be a method optionally receiving any arguments 
-            you might need for the matching, but with a return type that 
-            matches that of the argument. 
-            <para>
-            Let's say I want to match a lists of orders that contains 
-            a particular one. I might create a compiler matcher like the following:
-            </para>
-            <code>
-            public static class Orders
-            {
-              [Matcher]
-              public static IEnumerable&lt;Order&gt; Contains(Order order)
-              {
-                return null;
-              }
-            }
-            </code>
-            Now we can invoke this static method instead of an argument in an 
-            invocation:
-            <code>
-            var order = new Order { ... };
-            var mock = new Mock&lt;IRepository&lt;Order&gt;&gt;();
-            
-            mock.Setup(x =&gt; x.Save(Orders.Contains(order)))
-                .Throws&lt;ArgumentException&gt;();
-            </code>
-            Note that the return value from the compiler matcher is irrelevant. 
-            This method will never be called, and is just used to satisfy the 
-            compiler and to signal Moq that this is not a method that we want 
-            to be invoked at runtime.
-            </description>
-            </item>
-            <item>
-            <term>Runtime matcher</term>
-            <description>
-            The runtime matcher is the one that will actually perform evaluation 
-            when the test is run, and is defined by convention to have the 
-            same signature as the compiler matcher, but where the return 
-            value is the first argument to the call, which contains the 
-            object received by the actual invocation at runtime:
-            <code>
-              public static bool Contains(IEnumerable&lt;Order&gt; orders, Order order)
-              {
-                return orders.Contains(order);
-              }
-            </code>
-            At runtime, the mocked method will be invoked with a specific 
-            list of orders. This value will be passed to this runtime 
-            matcher as the first argument, while the second argument is the 
-            one specified in the setup (<c>x.Save(Orders.Contains(order))</c>).
-            <para>
-            The boolean returned determines whether the given argument has been 
-            matched. If all arguments to the expected method are matched, then 
-            the setup matches and is evaluated.
-            </para>
-            </description>
-            </item>
-            </list>
-            </para>
-            Using this extensible infrastructure, you can easily replace the entire 
-            <see cref="T:Moq.It"/> set of matchers with your own. You can also avoid the 
-            typical (and annoying) lengthy expressions that result when you have 
-            multiple arguments that use generics.
-            </remarks>
-            <example>
-            The following is the complete example explained above:
-            <code>
-            public static class Orders
-            {
-              [Matcher]
-              public static IEnumerable&lt;Order&gt; Contains(Order order)
-              {
-                return null;
-              }
-              
-              public static bool Contains(IEnumerable&lt;Order&gt; orders, Order order)
-              {
-                return orders.Contains(order);
-              }
-            }
-            </code>
-            And the concrete test using this matcher:
-            <code>
-            var order = new Order { ... };
-            var mock = new Mock&lt;IRepository&lt;Order&gt;&gt;();
-            
-            mock.Setup(x =&gt; x.Save(Orders.Contains(order)))
-                .Throws&lt;ArgumentException&gt;();
-                
-            // use mock, invoke Save, and have the matcher filter.
-            </code>
-            </example>
-        </member>
-        <member name="T:Moq.MockException">
-            <summary>
-            Exception thrown by mocks when setups are not matched, 
-            the mock is not properly setup, etc.
-            </summary>
-            <remarks>
-            A distinct exception type is provided so that exceptions 
-            thrown by the mock can be differentiated in tests that 
-            expect other exceptions to be thrown (i.e. ArgumentException).
-            <para>
-            Richer exception hierarchy/types are not provided as 
-            tests typically should <b>not</b> catch or expect exceptions 
-            from the mocks. These are typically the result of changes 
-            in the tested class or its collaborators implementation, and 
-            result in fixes in the mock setup so that they dissapear and 
-            allow the test to pass.
-            </para>
-            </remarks>
-        </member>
-        <member name="M:Moq.MockException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
-            <summary>
-            Supports the serialization infrastructure.
-            </summary>
-            <param name="info">Serialization information.</param>
-            <param name="context">Streaming context.</param>
-        </member>
-        <member name="M:Moq.MockException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
-            <summary>
-            Supports the serialization infrastructure.
-            </summary>
-            <param name="info">Serialization information.</param>
-            <param name="context">Streaming context.</param>
-        </member>
-        <member name="T:Moq.MockException.ExceptionReason">
-            <summary>
-            Made internal as it's of no use for 
-            consumers, but it's important for 
-            our own tests.
-            </summary>
-        </member>
-        <member name="T:Moq.MockVerificationException">
-            <devdoc>
-            Used by the mock factory to accumulate verification 
-            failures.
-            </devdoc>
-        </member>
-        <member name="M:Moq.MockVerificationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
-            <summary>
-            Supports the serialization infrastructure.
-            </summary>
-        </member>
-        <member name="T:Moq.Interceptor">
-            <summary>
-            Implements the actual interception and method invocation for 
-            all mocks.
-            </summary>
-        </member>
-        <member name="M:Moq.Interceptor.GetEventFromName(System.String)">
-            <summary>
-            Get an eventInfo for a given event name.  Search type ancestors depth first if necessary.
-            </summary>
-            <param name="eventName">Name of the event, with the set_ or get_ prefix already removed</param>
-        </member>
-        <member name="M:Moq.Interceptor.GetAncestorTypes(System.Type)">
-            <summary>
-            Given a type return all of its ancestors, both types and interfaces.
-            </summary>
-            <param name="initialType">The type to find immediate ancestors of</param>
-        </member>
-        <member name="T:Moq.Protected.ProtectedExtension">
-            <summary>
-            Enables the <c>Protected()</c> method on <see cref="T:Moq.Mock`1"/>, 
-            allowing setups to be set for protected members by using their 
-            name as a string, rather than strong-typing them which is not possible 
-            due to their visibility.
-            </summary>
-        </member>
-        <member name="M:Moq.Protected.ProtectedExtension.Protected``1(Moq.Mock{``0})">
-            <summary>
-            Enable protected setups for the mock.
-            </summary>
-            <typeparam name="T">Mocked object type. Typically omitted as it can be inferred from the mock instance.</typeparam>
-            <param name="mock">The mock to set the protected setups on.</param>
-        </member>
-        <member name="M:Moq.Guard.NotNull``1(System.Linq.Expressions.Expression{System.Func{``0}},``0)">
-            <summary>
-            Ensures the given <paramref name="value"/> is not null.
-            Throws <see cref="T:System.ArgumentNullException"/> otherwise.
-            </summary>
-        </member>
-        <member name="M:Moq.Guard.NotNullOrEmpty(System.Linq.Expressions.Expression{System.Func{System.String}},System.String)">
-            <summary>
-            Ensures the given string <paramref name="value"/> is not null or empty.
-            Throws <see cref="T:System.ArgumentNullException"/> in the first case, or 
-            <see cref="T:System.ArgumentException"/> in the latter.
-            </summary>
-        </member>
-        <member name="M:Moq.Guard.NotOutOfRangeInclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
-            <summary>
-            Checks an argument to ensure it is in the specified range including the edges.
-            </summary>
-            <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
-            </typeparam>
-            <param name="reference">The expression containing the name of the argument.</param>
-            <param name="value">The argument value to check.</param>
-            <param name="from">The minimun allowed value for the argument.</param>
-            <param name="to">The maximun allowed value for the argument.</param>
-        </member>
-        <member name="M:Moq.Guard.NotOutOfRangeExclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
-            <summary>
-            Checks an argument to ensure it is in the specified range excluding the edges.
-            </summary>
-            <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
-            </typeparam>
-            <param name="reference">The expression containing the name of the argument.</param>
-            <param name="value">The argument value to check.</param>
-            <param name="from">The minimun allowed value for the argument.</param>
-            <param name="to">The maximun allowed value for the argument.</param>
-        </member>
-        <member name="T:Moq.Match">
-            <summary>
-			Allows creation custom value matchers that can be used on setups and verification,
-			completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
-			matching rules.
-		</summary>
-        </member>
-        <member name="M:Moq.Match.Matcher``1">
-            <devdoc>
-            Provided for the sole purpose of rendering the delegate passed to the 
-            matcher constructor if no friendly render lambda is provided.
-            </devdoc>
-        </member>
-        <member name="M:Moq.Match.Create``1(System.Predicate{``0})">
-            <summary>
-			Initializes the match with the condition that
-			will be checked in order to match invocation
-			values.
-		</summary><param name="condition">The condition to match against actual values.</param><remarks>
-			 <seealso cref="T:Moq.Match`1"/>
-		</remarks>
-        </member>
-        <member name="M:Moq.Match.Create``1(System.Predicate{``0},System.Linq.Expressions.Expression{System.Func{``0}})">
-            <!-- No matching elements were found for the following include tag --><include file="Match.xdoc" path="docs/doc[@for=&quot;Match.Create{T}(condition,renderExpression&quot;]/*"/>
-        </member>
-        <member name="M:Moq.Match.SetLastMatch``1(Moq.Match{``0})">
-            <devdoc>
-            This method is used to set an expression as the last matcher invoked, 
-            which is used in the SetupSet to allow matchers in the prop = value 
-            delegate expression. This delegate is executed in "fluent" mode in 
-            order to capture the value being set, and construct the corresponding 
-            methodcall.
-            This is also used in the MatcherFactory for each argument expression.
-            This method ensures that when we execute the delegate, we 
-            also track the matcher that was invoked, so that when we create the 
-            methodcall we build the expression using it, rather than the null/default 
-            value returned from the actual invocation.
-            </devdoc>
-        </member>
-        <member name="T:Moq.Match`1">
-            <summary>
-			Allows creation custom value matchers that can be used on setups and verification,
-			completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
-			matching rules.
-		</summary><typeparam name="T">Type of the value to match.</typeparam><remarks>
-			The argument matching is used to determine whether a concrete
-			invocation in the mock matches a given setup. This
-			matching mechanism is fully extensible.
-		</remarks><example>
-			Creating a custom matcher is straightforward. You just need to create a method
-			that returns a value from a call to <see cref="M:Moq.Match.Create``1(System.Predicate{``0})"/> with 
-			your matching condition and optional friendly render expression:
-			<code>
-				public Order IsBigOrder()
-				{
-					return Match&lt;Order&gt;.Create(
-						o =&gt; o.GrandTotal &gt;= 5000, 
-						/* a friendly expression to render on failures */
-						() =&gt; IsBigOrder());
-				}
-			</code>
-			This method can be used in any mock setup invocation:
-			<code>
-				mock.Setup(m =&gt; m.Submit(IsBigOrder()).Throws&lt;UnauthorizedAccessException&gt;();
-			</code>
-			At runtime, Moq knows that the return value was a matcher and
-			evaluates your predicate with the actual value passed into your predicate.
-			<para>
-				Another example might be a case where you want to match a lists of orders
-				that contains a particular one. You might create matcher like the following:
-			</para>
-			<code>
-				public static class Orders
-				{
-					public static IEnumerable&lt;Order&gt; Contains(Order order)
-					{
-						return Match&lt;IEnumerable&lt;Order&gt;&gt;.Create(orders =&gt; orders.Contains(order));
-					}
-				}
-			</code>
-			Now we can invoke this static method instead of an argument in an
-			invocation:
-			<code>
-				var order = new Order { ... };
-				var mock = new Mock&lt;IRepository&lt;Order&gt;&gt;();
-
-				mock.Setup(x =&gt; x.Save(Orders.Contains(order)))
-					 .Throws&lt;ArgumentException&gt;();
-			</code>
-		</example>
-        </member>
-        <member name="F:Moq.Linq.FluentMockVisitor.isFirst">
-            <summary>
-            The first method call or member access will be the 
-            last segment of the expression (depth-first traversal), 
-            which is the one we have to Setup rather than FluentMock.
-            And the last one is the one we have to Mock.Get rather 
-            than FluentMock.
-            </summary>
-        </member>
-        <member name="T:Moq.Linq.MockQueryable`1">
-            <summary>
-            A default implementation of IQueryable for use with QueryProvider
-            </summary>
-        </member>
-        <member name="T:Moq.MockFactory">
-            <summary>
-            Utility factory class to use to construct multiple 
-            mocks when consistent verification is 
-            desired for all of them.
-            </summary>
-            <remarks>
-            If multiple mocks will be created during a test, passing 
-            the desired <see cref="T:Moq.MockBehavior"/> (if different than the 
-            <see cref="F:Moq.MockBehavior.Default"/> or the one 
-            passed to the factory constructor) and later verifying each
-            mock can become repetitive and tedious.
-            <para>
-            This factory class helps in that scenario by providing a 
-            simplified creation of multiple mocks with a default 
-            <see cref="T:Moq.MockBehavior"/> (unless overriden by calling 
-            <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
-            </para>
-            </remarks>
-            <example group="factory">
-            The following is a straightforward example on how to 
-            create and automatically verify strict mocks using a <see cref="T:Moq.MockFactory"/>:
-            <code>
-            var factory = new MockFactory(MockBehavior.Strict);
-            
-            var foo = factory.Create&lt;IFoo&gt;();
-            var bar = factory.Create&lt;IBar&gt;();
-            
-            // no need to call Verifiable() on the setup 
-            // as we'll be validating all of them anyway.
-            foo.Setup(f =&gt; f.Do());
-            bar.Setup(b =&gt; b.Redo());
-            
-            // exercise the mocks here
-            
-            factory.VerifyAll(); 
-            // At this point all setups are already checked 
-            // and an optional MockException might be thrown. 
-            // Note also that because the mocks are strict, any invocation 
-            // that doesn't have a matching setup will also throw a MockException.
-            </code>
-            The following examples shows how to setup the factory 
-            to create loose mocks and later verify only verifiable setups:
-            <code>
-            var factory = new MockFactory(MockBehavior.Loose);
-            
-            var foo = factory.Create&lt;IFoo&gt;();
-            var bar = factory.Create&lt;IBar&gt;();
-            
-            // this setup will be verified when we verify the factory
-            foo.Setup(f =&gt; f.Do()).Verifiable();
-            	
-            // this setup will NOT be verified 
-            foo.Setup(f =&gt; f.Calculate());
-            	
-            // this setup will be verified when we verify the factory
-            bar.Setup(b =&gt; b.Redo()).Verifiable();
-            
-            // exercise the mocks here
-            // note that because the mocks are Loose, members 
-            // called in the interfaces for which no matching
-            // setups exist will NOT throw exceptions, 
-            // and will rather return default values.
-            
-            factory.Verify();
-            // At this point verifiable setups are already checked 
-            // and an optional MockException might be thrown.
-            </code>
-            The following examples shows how to setup the factory with a 
-            default strict behavior, overriding that default for a 
-            specific mock:
-            <code>
-            var factory = new MockFactory(MockBehavior.Strict);
-            
-            // this particular one we want loose
-            var foo = factory.Create&lt;IFoo&gt;(MockBehavior.Loose);
-            var bar = factory.Create&lt;IBar&gt;();
-            
-            // specify setups
-            
-            // exercise the mocks here
-            
-            factory.Verify();
-            </code>
-            </example>
-            <seealso cref="T:Moq.MockBehavior"/>
-        </member>
-        <member name="M:Moq.MockFactory.#ctor(Moq.MockBehavior)">
-            <summary>
-            Initializes the factory with the given <paramref name="defaultBehavior"/> 
-            for newly created mocks from the factory.
-            </summary>
-            <param name="defaultBehavior">The behavior to use for mocks created 
-            using the <see cref="M:Moq.MockFactory.Create``1"/> factory method if not overriden 
-            by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
-        </member>
-        <member name="M:Moq.MockFactory.Create``1">
-            <summary>
-            Creates a new mock with the default <see cref="T:Moq.MockBehavior"/> 
-            specified at factory construction time.
-            </summary>
-            <typeparam name="T">Type to mock.</typeparam>
-            <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
-            <example ignore="true">
-            <code>
-            var factory = new MockFactory(MockBehavior.Strict);
-            
-            var foo = factory.Create&lt;IFoo&gt;();
-            // use mock on tests
-            
-            factory.VerifyAll();
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.MockFactory.Create``1(System.Object[])">
-            <summary>
-            Creates a new mock with the default <see cref="T:Moq.MockBehavior"/> 
-            specified at factory construction time and with the 
-            the given constructor arguments for the class.
-            </summary>
-            <remarks>
-            The mock will try to find the best match constructor given the 
-            constructor arguments, and invoke that to initialize the instance. 
-            This applies only to classes, not interfaces.
-            </remarks>
-            <typeparam name="T">Type to mock.</typeparam>
-            <param name="args">Constructor arguments for mocked classes.</param>
-            <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
-            <example ignore="true">
-            <code>
-            var factory = new MockFactory(MockBehavior.Default);
-            
-            var mock = factory.Create&lt;MyBase&gt;("Foo", 25, true);
-            // use mock on tests
-            
-            factory.Verify();
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior)">
-            <summary>
-            Creates a new mock with the given <paramref name="behavior"/>.
-            </summary>
-            <typeparam name="T">Type to mock.</typeparam>
-            <param name="behavior">Behavior to use for the mock, which overrides 
-            the default behavior specified at factory construction time.</param>
-            <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
-            <example group="factory">
-            The following example shows how to create a mock with a different 
-            behavior to that specified as the default for the factory:
-            <code>
-            var factory = new MockFactory(MockBehavior.Strict);
-            
-            var foo = factory.Create&lt;IFoo&gt;(MockBehavior.Loose);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior,System.Object[])">
-            <summary>
-            Creates a new mock with the given <paramref name="behavior"/> 
-            and with the the given constructor arguments for the class.
-            </summary>
-            <remarks>
-            The mock will try to find the best match constructor given the 
-            constructor arguments, and invoke that to initialize the instance. 
-            This applies only to classes, not interfaces.
-            </remarks>
-            <typeparam name="T">Type to mock.</typeparam>
-            <param name="behavior">Behavior to use for the mock, which overrides 
-            the default behavior specified at factory construction time.</param>
-            <param name="args">Constructor arguments for mocked classes.</param>
-            <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
-            <example group="factory">
-            The following example shows how to create a mock with a different 
-            behavior to that specified as the default for the factory, passing 
-            constructor arguments:
-            <code>
-            var factory = new MockFactory(MockBehavior.Default);
-            
-            var mock = factory.Create&lt;MyBase&gt;(MockBehavior.Strict, "Foo", 25, true);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.MockFactory.CreateMock``1(Moq.MockBehavior,System.Object[])">
-            <summary>
-            Implements creation of a new mock within the factory.
-            </summary>
-            <typeparam name="T">Type to mock.</typeparam>
-            <param name="behavior">The behavior for the new mock.</param>
-            <param name="args">Optional arguments for the construction of the mock.</param>
-        </member>
-        <member name="M:Moq.MockFactory.Verify">
-            <summary>
-            Verifies all verifiable expectations on all mocks created 
-            by this factory.
-            </summary>
-            <seealso cref="M:Moq.Mock.Verify"/>
-            <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
-        </member>
-        <member name="M:Moq.MockFactory.VerifyAll">
-            <summary>
-            Verifies all verifiable expectations on all mocks created 
-            by this factory.
-            </summary>
-            <seealso cref="M:Moq.Mock.Verify"/>
-            <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
-        </member>
-        <member name="M:Moq.MockFactory.VerifyMocks(System.Action{Moq.Mock})">
-            <summary>
-            Invokes <paramref name="verifyAction"/> for each mock 
-            in <see cref="P:Moq.MockFactory.Mocks"/>, and accumulates the resulting 
-            <see cref="T:Moq.MockVerificationException"/> that might be 
-            thrown from the action.
-            </summary>
-            <param name="verifyAction">The action to execute against 
-            each mock.</param>
-        </member>
-        <member name="P:Moq.MockFactory.CallBase">
-            <summary>
-            Whether the base member virtual implementation will be called 
-            for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
-            </summary>
-        </member>
-        <member name="P:Moq.MockFactory.DefaultValue">
-            <summary>
-            Specifies the behavior to use when returning default values for 
-            unexpected invocations on loose mocks.
-            </summary>
-        </member>
-        <member name="P:Moq.MockFactory.Mocks">
-            <summary>
-            Gets the mocks that have been created by this factory and 
-            that will get verified together.
-            </summary>
-        </member>
-        <member name="T:Moq.FluentMockContext">
-            <summary>
-            Tracks the current mock and interception context.
-            </summary>
-        </member>
-        <member name="P:Moq.FluentMockContext.IsActive">
-            <summary>
-            Having an active fluent mock context means that the invocation 
-            is being performed in "trial" mode, just to gather the 
-            target method and arguments that need to be matched later 
-            when the actual invocation is made.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.ToLambda(System.Linq.Expressions.Expression)">
-            <summary>
-            Casts the expression to a lambda expression, removing 
-            a cast if there's any.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.ToMethodCall(System.Linq.Expressions.LambdaExpression)">
-            <summary>
-            Casts the body of the lambda expression to a <see cref="T:System.Linq.Expressions.MethodCallExpression"/>.
-            </summary>
-            <exception cref="T:System.ArgumentException">If the body is not a method call.</exception>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.ToPropertyInfo(System.Linq.Expressions.LambdaExpression)">
-            <summary>
-            Converts the body of the lambda expression into the <see cref="T:System.Reflection.PropertyInfo"/> referenced by it.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.LambdaExpression)">
-            <summary>
-            Checks whether the body of the lambda expression is a property access.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.Expression)">
-            <summary>
-            Checks whether the expression is a property access.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.LambdaExpression)">
-            <summary>
-            Checks whether the body of the lambda expression is a property indexer, which is true 
-            when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose 
-            <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/> 
-            equal to <see langword="true"/>.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.Expression)">
-            <summary>
-            Checks whether the expression is a property indexer, which is true 
-            when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose 
-            <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/> 
-            equal to <see langword="true"/>.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.CastTo``1(System.Linq.Expressions.Expression)">
-            <summary>
-            Creates an expression that casts the given expression to the <typeparamref name="T"/> 
-            type.
-            </summary>
-        </member>
-        <member name="M:Moq.ExpressionExtensions.ToStringFixed(System.Linq.Expressions.Expression)">
-            <devdoc>
-            TODO: remove this code when https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=331583 
-            is fixed.
-            </devdoc>
-        </member>
-        <member name="T:Moq.MockLegacyExtensions">
-            <summary>
-            Provides legacy API members as extensions so that 
-            existing code continues to compile, but new code 
-            doesn't see then.
-            </summary>
-        </member>
-        <member name="M:Moq.MockLegacyExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
-            <summary>
-            Obsolete.
-            </summary>
-        </member>
-        <member name="T:Moq.Language.Flow.ISetupSetter`2">
-            <summary>
-            Implements the fluent API.
-            </summary>
-        </member>
-        <member name="T:Moq.It">
-            <summary>
-			Allows the specification of a matching condition for an
-			argument in a method invocation, rather than a specific
-			argument value. "It" refers to the argument being matched.
-		</summary><remarks>
-			This class allows the setup to match a method invocation
-			with an arbitrary value, with a value in a specified range, or
-			even one that matches a given predicate.
-		</remarks>
-        </member>
-        <member name="M:Moq.It.IsAny``1">
-            <summary>
-			Matches any value of the given <typeparamref name="TValue"/> type.
-		</summary><remarks>
-			Typically used when the actual argument value for a method
-			call is not relevant.
-		</remarks><example>
-			<code>
-				// Throws an exception for a call to Remove with any string value.
-				mock.Setup(x =&gt; x.Remove(It.IsAny&lt;string&gt;())).Throws(new InvalidOperationException());
-			</code>
-		</example><typeparam name="TValue">Type of the value.</typeparam>
-        </member>
-        <member name="M:Moq.It.Is``1(System.Linq.Expressions.Expression{System.Predicate{``0}})">
-            <summary>
-			Matches any value that satisfies the given predicate.
-		</summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="match">The predicate used to match the method argument.</param><remarks>
-			Allows the specification of a predicate to perform matching
-			of method call arguments.
-		</remarks><example>
-			This example shows how to return the value <c>1</c> whenever the argument to the
-			<c>Do</c> method is an even number.
-			<code>
-				mock.Setup(x =&gt; x.Do(It.Is&lt;int&gt;(i =&gt; i % 2 == 0)))
-				.Returns(1);
-			</code>
-			This example shows how to throw an exception if the argument to the
-			method is a negative number:
-			<code>
-				mock.Setup(x =&gt; x.GetUser(It.Is&lt;int&gt;(i =&gt; i &lt; 0)))
-				.Throws(new ArgumentException());
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)">
-            <summary>
-			Matches any value that is in the range specified.
-		</summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="from">The lower bound of the range.</param><param name="to">The upper bound of the range.</param><param name="rangeKind">
-			The kind of range. See <see cref="T:Moq.Range"/>.
-		</param><example>
-			The following example shows how to expect a method call
-			with an integer argument within the 0..100 range.
-			<code>
-				mock.Setup(x =&gt; x.HasInventory(
-				It.IsAny&lt;string&gt;(),
-				It.IsInRange(0, 100, Range.Inclusive)))
-				.Returns(false);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.It.IsRegex(System.String)">
-            <summary>
-			Matches a string argument if it matches the given regular expression pattern.
-		</summary><param name="regex">The pattern to use to match the string argument value.</param><example>
-			The following example shows how to expect a call to a method where the
-			string argument matches the given regular expression:
-			<code>
-				mock.Setup(x =&gt; x.Check(It.IsRegex("[a-z]+"))).Returns(1);
-			</code>
-		</example>
-        </member>
-        <member name="M:Moq.It.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
-            <summary>
-			Matches a string argument if it matches the given regular expression pattern.
-		</summary><param name="regex">The pattern to use to match the string argument value.</param><param name="options">The options used to interpret the pattern.</param><example>
-			The following example shows how to expect a call to a method where the
-			string argument matches the given regular expression, in a case insensitive way:
-			<code>
-				mock.Setup(x =&gt; x.Check(It.IsRegex("[a-z]+", RegexOptions.IgnoreCase))).Returns(1);
-			</code>
-		</example>
-        </member>
-        <member name="T:Moq.MockDefaultValueProvider">
-            <summary>
-            A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value 
-            for non-mockeable types, and mocks for all other types (interfaces and 
-            non-sealed classes) that can be mocked.
-            </summary>
-        </member>
-        <member name="T:Moq.Properties.Resources">
-            <summary>
-              A strongly-typed resource class, for looking up localized strings, etc.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.ResourceManager">
-            <summary>
-              Returns the cached ResourceManager instance used by this class.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.Culture">
-            <summary>
-              Overrides the current thread's CurrentUICulture property for all
-              resource lookups using this strongly typed resource class.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.AlreadyInitialized">
-            <summary>
-              Looks up a localized string similar to Mock type has already been initialized by accessing its Object property. Adding interfaces must be done before that..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.ArgumentCannotBeEmpty">
-            <summary>
-              Looks up a localized string similar to Value cannot be an empty string..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.AsMustBeInterface">
-            <summary>
-              Looks up a localized string similar to Can only add interfaces to the mock..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.CantSetReturnValueForVoid">
-            <summary>
-              Looks up a localized string similar to Can&apos;t set return value for void method {0}..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.ConstructorArgsForInterface">
-            <summary>
-              Looks up a localized string similar to Constructor arguments cannot be passed for interface mocks..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.ConstructorNotFound">
-            <summary>
-              Looks up a localized string similar to A matching constructor for the given arguments was not found on the mocked type..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.FieldsNotSupported">
-            <summary>
-              Looks up a localized string similar to Expression {0} involves a field access, which is not supported. Use properties instead..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.InvalidMockClass">
-            <summary>
-              Looks up a localized string similar to Type to mock must be an interface or an abstract or non-sealed class. .
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.InvalidMockGetType">
-             <summary>
-               Looks up a localized string similar to Cannot retrieve a mock with the given object type {0} as it&apos;s not the main type of the mock or any of its additional interfaces.
-            Please cast the argument to one of the supported types: {1}.
-            Remember that there&apos;s no generics covariance in the CLR, so your object must be one of these types in order for the call to succeed..
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.LinqMethodNotSupported">
-            <summary>
-              Looks up a localized string similar to LINQ method &apos;{0}&apos; not supported..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.MemberMissing">
-            <summary>
-              Looks up a localized string similar to Member {0}.{1} does not exist..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.MethodIsPublic">
-             <summary>
-               Looks up a localized string similar to Method {0}.{1} is public. Use strong-typed Expect overload instead:
-            mock.Setup(x =&gt; x.{1}());
-            .
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.MockExceptionMessage">
-             <summary>
-               Looks up a localized string similar to {0} invocation failed with mock behavior {1}.
-            {2}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.MoreThanNCalls">
-            <summary>
-              Looks up a localized string similar to Expected only {0} calls to {1}..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.MoreThanOneCall">
-            <summary>
-              Looks up a localized string similar to Expected only one call to {0}..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeast">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock at least {2} times, but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeastOnce">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock at least once, but was never performed: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMost">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock at most {3} times, but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMostOnce">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock at most once, but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenExclusive">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock between {2} and {3} times (Exclusive), but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenInclusive">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock between {2} and {3} times (Inclusive), but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsExactly">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock exactly {2} times, but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsNever">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock should never have been performed, but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoMatchingCallsOnce">
-             <summary>
-               Looks up a localized string similar to {0}
-            Expected invocation on the mock once, but was {4} times: {1}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.NoSetup">
-            <summary>
-              Looks up a localized string similar to All invocations on the mock must have a corresponding setup..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.ObjectInstanceNotMock">
-            <summary>
-              Looks up a localized string similar to Object instance was not created by Moq..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.OutExpressionMustBeConstantValue">
-            <summary>
-              Looks up a localized string similar to Out expression must evaluate to a constant value..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.PropertyMissing">
-            <summary>
-              Looks up a localized string similar to Property {0}.{1} does not exist..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.PropertyNotReadable">
-            <summary>
-              Looks up a localized string similar to Property {0}.{1} is write-only..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.PropertyNotWritable">
-            <summary>
-              Looks up a localized string similar to Property {0}.{1} is read-only..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.RaisedUnassociatedEvent">
-            <summary>
-              Looks up a localized string similar to Cannot raise a mocked event unless it has been associated (attached) to a concrete event in a mocked object..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.RefExpressionMustBeConstantValue">
-            <summary>
-              Looks up a localized string similar to Ref expression must evaluate to a constant value..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.ReturnValueRequired">
-            <summary>
-              Looks up a localized string similar to Invocation needs to return a value and therefore must have a corresponding setup that provides it..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupLambda">
-            <summary>
-              Looks up a localized string similar to A lambda expression is expected as the argument to It.Is&lt;T&gt;..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupNever">
-            <summary>
-              Looks up a localized string similar to Invocation {0} should not have been made..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupNotMethod">
-            <summary>
-              Looks up a localized string similar to Expression is not a method invocation: {0}.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupNotProperty">
-            <summary>
-              Looks up a localized string similar to Expression is not a property access: {0}.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupNotSetter">
-            <summary>
-              Looks up a localized string similar to Expression is not a property setter invocation..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupOnNonMemberMethod">
-             <summary>
-               Looks up a localized string similar to Invalid setup on a non-member method:
-            {0}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.SetupOnNonOverridableMember">
-             <summary>
-               Looks up a localized string similar to Invalid setup on a non-overridable member:
-            {0}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.TypeNotImplementInterface">
-            <summary>
-              Looks up a localized string similar to Type {0} does not implement required interface {1}.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.TypeNotInheritFromType">
-            <summary>
-              Looks up a localized string similar to Type {0} does not from required type {1}.
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnexpectedPublicProperty">
-             <summary>
-               Looks up a localized string similar to To specify a setup for public property {0}.{1}, use the typed overloads, such as:
-            mock.Setup(x =&gt; x.{1}).Returns(value);
-            mock.SetupGet(x =&gt; x.{1}).Returns(value); //equivalent to previous one
-            mock.SetupSet(x =&gt; x.{1}).Callback(callbackDelegate);
-            .
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnsupportedExpression">
-            <summary>
-              Looks up a localized string similar to Expression {0} is not supported..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnsupportedIntermediateExpression">
-            <summary>
-              Looks up a localized string similar to Only property accesses are supported in intermediate invocations on a setup. Unsupported expression {0}..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnsupportedIntermediateType">
-            <summary>
-              Looks up a localized string similar to Expression contains intermediate property access {0}.{1} which is of type {2} and cannot be mocked. Unsupported expression {3}..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnsupportedMatcherParamsForSetter">
-            <summary>
-              Looks up a localized string similar to Setter expression cannot use argument matchers that receive parameters..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnsupportedMember">
-            <summary>
-              Looks up a localized string similar to Member {0} is not supported for protected mocking..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.UnsupportedNonStaticMatcherForSetter">
-            <summary>
-              Looks up a localized string similar to Setter expression can only use static custom matchers..
-            </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.VerficationFailed">
-             <summary>
-               Looks up a localized string similar to The following setups were not matched:
-            {0}.
-             </summary>
-        </member>
-        <member name="P:Moq.Properties.Resources.VerifyOnNonVirtualMember">
-             <summary>
-               Looks up a localized string similar to Invalid verify on a non-virtual member:
-            {0}.
-             </summary>
-        </member>
-        <member name="T:Moq.Mocks">
-            <summary>
-            Allows querying the universe of mocks for those that behave 
-            according to the LINQ query specification.
-            </summary>
-        </member>
-        <member name="M:Moq.Mocks.Of``1">
-            <summary>
-            Access the universe of mocks of the given type, to retrieve those 
-            that behave according to the LINQ query specification.
-            </summary>
-            <typeparam name="T">The type of the mocked object to query.</typeparam>
-        </member>
-        <member name="M:Moq.Mocks.OneOf``1">
-            <summary>
-            Creates an mock object of the indicated type.
-            </summary>
-            <typeparam name="T">The type of the mocked object.</typeparam>
-            <returns>The mocked object created.</returns>
-        </member>
-        <member name="M:Moq.Mocks.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
-            <summary>
-            Creates an mock object of the indicated type.
-            </summary>
-            <param name="predicate">The predicate with the setup expressions.</param>
-            <typeparam name="T">The type of the mocked object.</typeparam>
-            <returns>The mocked object created.</returns>
-        </member>
-        <member name="M:Moq.Mocks.CreateQueryable``1">
-            <summary>
-            Wraps the enumerator inside a queryable.
-            </summary>
-        </member>
-        <member name="M:Moq.Mocks.CreateEnumerable``1">
-            <summary>
-            Method that is turned into the actual call from .Query{T}, to 
-            transform the queryable query into a normal enumerable query.
-            This method should not be used by consumers.
-            </summary>
-        </member>
-        <member name="T:Moq.QueryableMockExtensions">
-            <summary>
-            Helper extensions that are used by the query translator.
-            </summary>
-        </member>
-        <member name="M:Moq.QueryableMockExtensions.FluentMock``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
-            <summary>
-            Retrieves a fluent mock from the given setup expression.
-            </summary>
-        </member>
-        <member name="T:Moq.Protected.ItExpr">
-            <summary>
-            Allows the specification of a matching condition for an 
-            argument in a protected member setup, rather than a specific 
-            argument value. "ItExpr" refers to the argument being matched.
-            </summary>
-            <remarks>
-            <para>Use this variant of argument matching instead of 
-            <see cref="T:Moq.It"/> for protected setups.</para>
-            This class allows the setup to match a method invocation 
-            with an arbitrary value, with a value in a specified range, or 
-            even one that matches a given predicate, or null.
-            </remarks>
-        </member>
-        <member name="M:Moq.Protected.ItExpr.IsNull``1">
-            <summary>
-            Matches a null value of the given <typeparamref name="TValue"/> type.
-            </summary>
-            <remarks>
-            Required for protected mocks as the null value cannot be used 
-            directly as it prevents proper method overload selection.
-            </remarks>
-            <example>
-            <code>
-            // Throws an exception for a call to Remove with a null string value.
-            mock.Protected()
-                .Setup("Remove", ItExpr.IsNull&lt;string&gt;())
-                .Throws(new InvalidOperationException());
-            </code>
-            </example>
-            <typeparam name="TValue">Type of the value.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.ItExpr.IsAny``1">
-            <summary>
-            Matches any value of the given <typeparamref name="TValue"/> type.
-            </summary>
-            <remarks>
-            Typically used when the actual argument value for a method 
-            call is not relevant.
-            </remarks>
-            <example>
-            <code>
-            // Throws an exception for a call to Remove with any string value.
-            mock.Protected()
-                .Setup("Remove", ItExpr.IsAny&lt;string&gt;())
-                .Throws(new InvalidOperationException());
-            </code>
-            </example>
-            <typeparam name="TValue">Type of the value.</typeparam>
-        </member>
-        <member name="M:Moq.Protected.ItExpr.Is``1(System.Linq.Expressions.Expression{System.Predicate{``0}})">
-            <summary>
-            Matches any value that satisfies the given predicate.
-            </summary>
-            <typeparam name="TValue">Type of the argument to check.</typeparam>
-            <param name="match">The predicate used to match the method argument.</param>
-            <remarks>
-            Allows the specification of a predicate to perform matching 
-            of method call arguments.
-            </remarks>
-            <example>
-            This example shows how to return the value <c>1</c> whenever the argument to the 
-            <c>Do</c> method is an even number.
-            <code>
-            mock.Protected()
-                .Setup("Do", ItExpr.Is&lt;int&gt;(i =&gt; i % 2 == 0))
-                .Returns(1);
-            </code>
-            This example shows how to throw an exception if the argument to the 
-            method is a negative number:
-            <code>
-            mock.Protected()
-                .Setup("GetUser", ItExpr.Is&lt;int&gt;(i =&gt; i &lt; 0))
-                .Throws(new ArgumentException());
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Protected.ItExpr.IsInRange``1(``0,``0,Moq.Range)">
-            <summary>
-            Matches any value that is in the range specified.
-            </summary>
-            <typeparam name="TValue">Type of the argument to check.</typeparam>
-            <param name="from">The lower bound of the range.</param>
-            <param name="to">The upper bound of the range.</param>
-            <param name="rangeKind">The kind of range. See <see cref="T:Moq.Range"/>.</param>
-            <example>
-            The following example shows how to expect a method call 
-            with an integer argument within the 0..100 range.
-            <code>
-            mock.Protected()
-                .Setup("HasInventory",
-                        ItExpr.IsAny&lt;string&gt;(),
-                        ItExpr.IsInRange(0, 100, Range.Inclusive))
-                .Returns(false);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Protected.ItExpr.IsRegex(System.String)">
-            <summary>
-            Matches a string argument if it matches the given regular expression pattern.
-            </summary>
-            <param name="regex">The pattern to use to match the string argument value.</param>
-            <example>
-            The following example shows how to expect a call to a method where the 
-            string argument matches the given regular expression:
-            <code>
-            mock.Protected()
-                .Setup("Check", ItExpr.IsRegex("[a-z]+"))
-                .Returns(1);
-            </code>
-            </example>
-        </member>
-        <member name="M:Moq.Protected.ItExpr.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
-            <summary>
-            Matches a string argument if it matches the given regular expression pattern.
-            </summary>
-            <param name="regex">The pattern to use to match the string argument value.</param>
-            <param name="options">The options used to interpret the pattern.</param>
-            <example>
-            The following example shows how to expect a call to a method where the 
-            string argument matches the given regular expression, in a case insensitive way:
-            <code>
-            mock.Protected()
-                .Setup("Check", ItExpr.IsRegex("[a-z]+", RegexOptions.IgnoreCase))
-                .Returns(1);
-            </code>
-            </example>
-        </member>
-    </members>
-</doc>
thirdparty/rhino.mocks/acknowledgements.txt
@@ -0,0 +1,2 @@
+Rhino Mocks is using Castle Dynamic Proxy (http://www.castleproject.org/dynamicproxy/index.html) to handle proxying the types it needs to mock.
+The Dynamic Proxy project has been invaluable resource and made creating Rhino Mocks possible.
\ No newline at end of file
thirdparty/rhino.mocks/license.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2005 - 2009 Ayende Rahien (ayende@ayende.com)
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice,
+    this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright notice,
+    this list of conditions and the following disclaimer in the documentation
+    and/or other materials provided with the distribution.
+    * Neither the name of Ayende Rahien nor the names of its
+    contributors may be used to endorse or promote products derived from this
+    software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
thirdparty/rhino.mocks/Rhino.Mocks.dll
Binary file
thirdparty/rhino.mocks/Rhino.Mocks.xml
@@ -0,0 +1,5413 @@
+<?xml version="1.0"?>
+<doc>
+    <assembly>
+        <name>Rhino.Mocks</name>
+    </assembly>
+    <members>
+        <member name="T:Rhino.Mocks.Arg`1">
+            <summary>
+            Defines constraints and return values for arguments of a mock.
+            Only use Arg inside a method call on a mock that is recording.
+            Example: 
+              ExpectCall( 
+                mock.foo(
+                  Arg&lt;int&gt;.Is.GreaterThan(2),
+                  Arg&lt;string&gt;.Is.Anything
+                ));
+            Use Arg.Text for string specific constraints
+            Use Arg&lt;ListClass&gt;.List for list specific constraints
+            </summary>
+            <typeparam name="T"></typeparam>
+        </member>
+        <member name="M:Rhino.Mocks.Arg`1.Matches(System.Linq.Expressions.Expression{System.Predicate{`0}})">
+            <summary>
+            Register the predicate as a constraint for the current call.
+            </summary>
+            <param name="predicate">The predicate.</param>
+            <returns>default(T)</returns>
+            <example>
+            Allow you to use code to create constraints
+            <code>
+            demo.AssertWasCalled(x => x.Bar(Arg{string}.Matches(a => a.StartsWith("b") &amp;&amp; a.Contains("ba"))));
+            </code>
+            </example>
+        </member>
+        <member name="M:Rhino.Mocks.Arg`1.Matches(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Define a complex constraint for this argument by passing several constraints
+            combined with operators. (Use Is in simple cases.)
+            Example: Arg&lt;string&gt;.Matches(Is.Equal("Hello") || Text.EndsWith("u"));
+            </summary>
+            <param name="constraint">Constraints using Is, Text and List</param>
+            <returns>Dummy to satisfy the compiler</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Arg`1.Ref(Rhino.Mocks.Constraints.AbstractConstraint,`0)">
+            <summary>
+            Define a Ref argument.
+            </summary>
+            <param name="constraint">Constraints for this argument</param>
+            <param name="returnValue">value returned by the mock</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Arg`1.Out(`0)">
+            <summary>
+            Define a out parameter. Use it together with the keyword out and use the
+            Dummy field available by the return value.
+            Example:  mock.foo( out Arg&lt;string&gt;.Out("hello").Dummy );
+            </summary>
+            <param name="returnValue"></param>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Arg`1.Is">
+            <summary>
+            Define a simple constraint for this argument. (Use Matches in simple cases.)
+            Example: 
+              Arg&lt;int&gt;.Is.Anthing
+              Arg&lt;string&gt;.Is.Equal("hello")
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Arg`1.List">
+            <summary>
+            Define Constraints on list arguments.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Arg">
+            <summary>
+            Use the Arg class (without generic) to define Text constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Arg.Is``1(``0)">
+            <summary>
+            Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="arg">The object the parameter should equal to</param>
+        </member>
+        <member name="P:Rhino.Mocks.Arg.Text">
+            <summary>
+            Define constraints on text arguments.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.ArgManager">
+            <summary>
+            Used to manage the static state of the Arg&lt;T&gt; class"/>
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.ArgManager.Clear">
+            <summary>
+            Resets the static state
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.ArgManager.GetAllReturnValues">
+            <summary>
+            Returns return values for the out and ref parameters
+            Note: the array returned has the size of the number of out and ref 
+            argument definitions
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.ArgManager.GetAllConstraints">
+            <summary>
+            Returns the constraints for all arguments.
+            Out arguments have an Is.Anything constraint and are also in the list.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="T:Rhino.Mocks.BackToRecordOptions">
+            <summary>
+            What should BackToRecord clear
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.BackToRecordOptions.None">
+            <summary>
+            Retain all expectations and behaviors and return to mock
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.BackToRecordOptions.Expectations">
+            <summary>
+            All expectations
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.BackToRecordOptions.EventSubscribers">
+            <summary>
+            Event subscribers for this instance
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.BackToRecordOptions.OriginalMethodsToCall">
+            <summary>
+            Methods that should be forwarded to the base class implementation
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.BackToRecordOptions.PropertyBehavior">
+            <summary>
+            Properties that should behave like properties
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.BackToRecordOptions.All">
+            <summary>
+            Remove all the behavior of the object
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.AbstractConstraint">
+            <summary>
+            Interface for constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseAnd(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            And operator for constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_LogicalNot(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Not operator for constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseOr(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Or operator for constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_False(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Allow overriding of || or &amp;&amp;
+            </summary>
+            <param name="c"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_True(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Allow overriding of || or &amp;&amp;
+            </summary>
+            <param name="c"></param>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.AbstractConstraint.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.PublicFieldIs">
+            <summary>
+            Constrain that the public field has a specified value
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.PublicFieldConstraint">
+            <summary>
+            Constrain that the public field matches another constraint.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldConstraint"/> instance.
+            </summary>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="constraint">Constraint to place on the public field value.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldConstraint"/> instance, specifying a disambiguating
+            <paramref name="declaringType"/> for the public field.
+            </summary>
+            <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="constraint">Constraint to place on the public field value.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.Eval(System.Object)">
+            <summary>
+            Determines if the object passes the constraint.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.PublicFieldConstraint.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicFieldIs.#ctor(System.String,System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldIs"/> instance.
+            </summary>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="expectedValue">Expected value.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicFieldIs.#ctor(System.Type,System.String,System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldIs"/> instance, specifying a disambiguating
+            <paramref name="declaringType"/> for the public field.
+            </summary>
+            <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="expectedValue">Expected value.</param>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.PropertyIs">
+            <summary>
+            Constrain that the property has a specified value
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.PropertyConstraint">
+            <summary>
+            Constrain that the property matches another constraint.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance.
+            </summary>
+            <param name="propertyName">Name of the property.</param>
+            <param name="constraint">Constraint to place on the property value.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance, specifying a disambiguating
+            <paramref name="declaringType"/> for the property.
+            </summary>
+            <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
+            <param name="propertyName">Name of the property.</param>
+            <param name="constraint">Constraint to place on the property value.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.Eval(System.Object)">
+            <summary>
+            Determines if the object passes the constraint.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.PropertyConstraint.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.String,System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance.
+            </summary>
+            <param name="propertyName">Name of the property.</param>
+            <param name="expectedValue">Expected value.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.Type,System.String,System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance, specifying a disambiguating
+            <paramref name="declaringType"/> for the property.
+            </summary>
+            <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
+            <param name="propertyName">Name of the property.</param>
+            <param name="expectedValue">Expected value.</param>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.TypeOf">
+            <summary>
+            Constrain that the parameter must be of the specified type
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TypeOf.#ctor(System.Type)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.TypeOf"/> instance.
+            </summary>
+            <param name="type">Type.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TypeOf.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.TypeOf.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Same">
+            <summary>
+            Constraint that determines whether an object is the same object as another.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Same.#ctor(System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
+            </summary>
+            <param name="obj">Obj.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Same.Eval(System.Object)">
+            <summary>
+            Determines if the object passes the constraints.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Same.Message">
+            <summary>
+            Gets the message for this constraint.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.PredicateConstraint`1">
+            <summary>
+            Evaluate a parameter using constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
+            <summary>
+            Create new instance 
+            </summary>
+            <param name="predicate"></param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PredicateConstraint`1.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.PredicateConstraint`1.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.LambdaConstraint">
+            <summary>
+            A constraint based on lambda expression, we are using Expression{T} 
+            because we want to be able to get good error reporting on that.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.LambdaConstraint.#ctor(System.Linq.Expressions.LambdaExpression)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Constraints.LambdaConstraint"/> class.
+            </summary>
+            <param name="expr">The expr.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.LambdaConstraint.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+            <param name="obj"></param>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.LambdaConstraint.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.CollectionEqual">
+            <summary>
+            Constrain that the list contains the same items as the parameter list
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.CollectionEqual.#ctor(System.Collections.IEnumerable)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionEqual"/> instance.
+            </summary>
+            <param name="collection">In list.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.CollectionEqual.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.CollectionEqual.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.OneOf">
+            <summary>
+            Constrain that the parameter is one of the items in the list
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.OneOf.#ctor(System.Collections.IEnumerable)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.OneOf"/> instance.
+            </summary>
+            <param name="collection">In list.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.OneOf.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.OneOf.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.IsIn">
+            <summary>
+            Constrain that the object is inside the parameter list
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsIn.#ctor(System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.IsIn"/> instance.
+            </summary>
+            <param name="inList">In list.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsIn.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.IsIn.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.CollectionCount">
+            <summary>
+            Applies another AbstractConstraint to the collection count.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.CollectionCount.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionCount"/> instance.
+            </summary>
+            <param name="constraint">The constraint that should be applied to the collection count.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.CollectionCount.Eval(System.Object)">
+            <summary>
+            Determines if the parameter conforms to this constraint.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.CollectionCount.Message">
+            <summary>
+            Gets the message for this constraint.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.ListElement">
+            <summary>
+            Applies another AbstractConstraint to a specific list element.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListElement.#ctor(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.ListElement"/> instance.
+            </summary>
+            <param name="index">The zero-based index of the list element.</param>
+            <param name="constraint">The constraint that should be applied to the list element.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListElement.Eval(System.Object)">
+            <summary>
+            Determines if the parameter conforms to this constraint.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.ListElement.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.KeyedListElement`1">
+            <summary>
+            Applies another AbstractConstraint to a specific generic keyed list element.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.KeyedListElement`1.#ctor(`0,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:KeyedListElement"/> instance.
+            </summary>
+            <param name="key">The key of the list element.</param>
+            <param name="constraint">The constraint that should be applied to the list element.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.KeyedListElement`1.Eval(System.Object)">
+            <summary>
+            Determines if the parameter conforms to this constraint.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.KeyedListElement`1.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.ContainsAll">
+            <summary>
+            Constrains that all elements are in the parameter list
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ContainsAll.#ctor(System.Collections.IEnumerable)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Constraints.ContainsAll"/> class.
+            </summary>
+            <param name="these">The these.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ContainsAll.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+            <param name="obj"></param>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.ContainsAll.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Or">
+            <summary>
+            Combines two constraints, constraint pass if either is fine.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Or.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
+            </summary>
+            <param name="c1">C1.</param>
+            <param name="c2">C2.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Or.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Or.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Not">
+            <summary>
+            Negate a constraint
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Not.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
+            </summary>
+            <param name="c1">C1.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Not.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Not.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.And">
+            <summary>
+            Combines two constraints
+            </summary>
+            <remarks></remarks>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.And.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
+            </summary>
+            <param name="c1">C1.</param>
+            <param name="c2">C2.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.And.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.And.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Like">
+            <summary>
+            Constrain the argument to validate according to regex pattern
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Like.#ctor(System.String)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.Like"/> instance.
+            </summary>
+            <param name="pattern">Pattern.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Like.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Like.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Contains">
+            <summary>
+            Constraint that evaluate whatever an argument contains the specified string.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Contains.#ctor(System.String)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.Contains"/> instance.
+            </summary>
+            <param name="innerString">Inner string.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Contains.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Contains.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.EndsWith">
+            <summary>
+            Constraint that evaluate whatever an argument ends with the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.EndsWith.#ctor(System.String)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.EndsWith"/> instance.
+            </summary>
+            <param name="end">End.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.EndsWith.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.EndsWith.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.StartsWith">
+            <summary>
+            Constraint that evaluate whatever an argument start with the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.StartsWith.#ctor(System.String)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.StartsWith"/> instance.
+            </summary>
+            <param name="start">Start.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.StartsWith.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.StartsWith.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Equal">
+            <summary>
+            Constraint that evaluate whatever an object equals another
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Equal.#ctor(System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
+            </summary>
+            <param name="obj">Obj.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Equal.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Equal.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Anything">
+            <summary>
+            Constraint that always returns true
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Anything.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.Anything.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.ComparingConstraint">
+            <summary>
+            Constraint that evaluate whatever a comparable is greater than another
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ComparingConstraint.#ctor(System.IComparable,System.Boolean,System.Boolean)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Constraints.ComparingConstraint"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ComparingConstraint.Eval(System.Object)">
+            <summary>
+            Determines if the object pass the constraints
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.ComparingConstraint.Message">
+            <summary>
+            Gets the message for this constraint
+            </summary>
+            <value></value>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.#ctor(System.Object)">
+            <summary>
+            Initializes a new constraint object.
+            </summary>
+            <param name="expected">The expected object, The actual object is passed in as a parameter to the <see cref="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Eval(System.Object)"/> method</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Eval(System.Object)">
+            <summary>
+            Evaluate this constraint.
+            </summary>
+            <param name="obj">The actual object that was passed in the method call to the mock.</param>
+            <returns>True when the constraint is met, else false.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckReferenceType(System.Object,System.Object)">
+            <summary>
+            Checks if the properties of the <paramref name="actual"/> object
+            are the same as the properies of the <paramref name="expected"/> object.
+            </summary>
+            <param name="expected">The expected object</param>
+            <param name="actual">The actual object</param>
+            <returns>True when both objects have the same values, else False.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckValue(System.Object,System.Object)">
+            <summary>
+            
+            </summary>
+            <param name="expected"></param>
+            <param name="actual"></param>
+            <returns></returns>
+            <remarks>This is the real heart of the beast.</remarks>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckProperties(System.Object,System.Object)">
+            <summary>
+            Used by CheckReferenceType to check all properties of the reference type.
+            </summary>
+            <param name="expected">The expected object</param>
+            <param name="actual">The actual object</param>
+            <returns>True when both objects have the same values, else False.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckFields(System.Object,System.Object)">
+            <summary>
+            Used by CheckReferenceType to check all fields of the reference type.
+            </summary>
+            <param name="expected">The expected object</param>
+            <param name="actual">The actual object</param>
+            <returns>True when both objects have the same values, else False.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckCollection(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+            <summary>
+            Checks the items of both collections
+            </summary>
+            <param name="expectedCollection">The expected collection</param>
+            <param name="actualCollection"></param>
+            <returns>True if both collections contain the same items in the same order.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.BuildPropertyName">
+            <summary>
+            Builds a propertyname from the Stack _properties like 'Order.Product.Price'
+            to be used in the error message.
+            </summary>
+            <returns>A nested property name.</returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Message">
+            <summary>
+            Rhino.Mocks uses this property to generate an error message.
+            </summary>
+            <value>
+            A message telling the tester why the constraint failed.
+            </value>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.IsArg`1">
+            <summary>
+            Provides access to the constraintes defined in the class <see cref="T:Rhino.Mocks.Constraints.Is"/> to be used in context
+            with the <see cref="T:Rhino.Mocks.Arg`1"/> syntax.
+            </summary>
+            <typeparam name="T">The type of the argument</typeparam>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.GreaterThan(System.IComparable)">
+            <summary>
+            Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be greater than</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.LessThan(System.IComparable)">
+            <summary>
+            Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be less than</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.LessThanOrEqual(System.IComparable)">
+            <summary>
+            Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be less than or equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.GreaterThanOrEqual(System.IComparable)">
+            <summary>
+            Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be greater than or equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.Equal(System.Object)">
+            <summary>
+            Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="obj">The object the parameter should equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.NotEqual(System.Object)">
+            <summary>
+            Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="obj">The object the parameter should not equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.Same(System.Object)">
+            <summary>
+            Evaluate a same as constraint.
+            </summary>
+            <param name="obj">The object the parameter should the same as.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.NotSame(System.Object)">
+            <summary>
+            Evaluate a not same as constraint.
+            </summary>
+            <param name="obj">The object the parameter should not be the same as.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.Equals(System.Object)">
+            <summary>
+            Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
+            </summary>
+            <param name="obj"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.IsArg`1.GetHashCode">
+            <summary>
+            Serves as a hash function for a particular type.
+            </summary>
+            <returns>
+            A hash code for the current <see cref="T:System.Object"/>.
+            </returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.IsArg`1.Anything">
+            <summary>
+            A constraints that accept anything
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.IsArg`1.Null">
+            <summary>
+            A constraint that accept only nulls
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.IsArg`1.NotNull">
+            <summary>
+            A constraint that accept only non null values
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Constraints.IsArg`1.TypeOf">
+            <summary>
+            A constraint that accept only value of the specified type.
+            The check is performed on the type that has been defined
+            as the argument type.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.ListArg`1">
+            <summary>
+            Provides access to the constraints defined in the class <see cref="T:Rhino.Mocks.Constraints.Text"/> to be used in context
+            with the <see cref="T:Rhino.Mocks.Arg`1"/> syntax.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.IsIn(System.Object)">
+            <summary>
+            Determines whether the specified object is in the parameter.
+            The parameter must be IEnumerable.
+            </summary>
+            <param name="obj">Obj.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.OneOf(System.Collections.IEnumerable)">
+            <summary>
+            Determines whatever the parameter is in the collection.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.Equal(System.Collections.IEnumerable)">
+            <summary>
+            Determines that the parameter collection is identical to the specified collection
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.Count(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Determines that the parameter collection has the specified number of elements.
+            </summary>
+            <param name="constraint">The constraint that should be applied to the collection count.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.Element(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Determines that an element of the parameter collections conforms to another AbstractConstraint.
+            </summary>
+            <param name="index">The zero-based index of the list element.</param>
+            <param name="constraint">The constraint which should be applied to the list element.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.ContainsAll(System.Collections.IEnumerable)">
+            <summary>
+             Determines that all elements of the specified collection are in the the parameter collection 
+            </summary>
+            <param name="collection">The collection to compare against</param>
+            <returns>The constraint which should be applied to the list parameter.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.Equals(System.Object)">
+            <summary>
+            Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
+            </summary>
+            <param name="obj"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.ListArg`1.GetHashCode">
+            <summary>
+            Serves as a hash function for a particular type.
+            </summary>
+            <returns>
+            A hash code for the current <see cref="T:System.Object"/>.
+            </returns>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.OutRefArgDummy`1">
+            <summary>
+            Provides a dummy field to pass as out or ref argument.
+            </summary>
+            <typeparam name="T"></typeparam>
+        </member>
+        <member name="F:Rhino.Mocks.Constraints.OutRefArgDummy`1.Dummy">
+            <summary>
+            Dummy field to satisfy the compiler. Used for out and ref arguments.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.PublicField">
+            <summary>
+            Central location for constraints for object's public fields
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.Value(System.String,System.Object)">
+            <summary>
+            Constrains the parameter to have a public field with the specified value
+            </summary>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="expectedValue">Expected value.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.Value(System.Type,System.String,System.Object)">
+            <summary>
+            Constrains the parameter to have a public field with the specified value.
+            </summary>
+            <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="expectedValue">Expected value.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.ValueConstraint(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Constrains the parameter to have a public field satisfying a specified constraint.
+            </summary>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="publicFieldConstraint">Constraint for the public field.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.ValueConstraint(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Constrains the parameter to have a public field satisfying a specified constraint.
+            </summary>
+            <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
+            <param name="publicFieldName">Name of the public field.</param>
+            <param name="publicFieldConstraint">Constraint for the public field.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.IsNull(System.String)">
+            <summary>
+            Determines whether the parameter has the specified public field and that it is null.
+            </summary>
+            <param name="publicFieldName">Name of the public field.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.IsNull(System.Type,System.String)">
+            <summary>
+            Determines whether the parameter has the specified public field and that it is null.
+            </summary>
+            <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
+            <param name="publicFieldName">Name of the public field.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.IsNotNull(System.String)">
+            <summary>
+            Determines whether the parameter has the specified public field and that it is not null.
+            </summary>
+            <param name="publicFieldName">Name of the public field.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.PublicField.IsNotNull(System.Type,System.String)">
+            <summary>
+            Determines whether the parameter has the specified public field and that it is not null.
+            </summary>
+            <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
+            <param name="publicFieldName">Name of the public field.</param>
+            <returns></returns>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Is">
+            <summary>
+            Central location for constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.GreaterThan(System.IComparable)">
+            <summary>
+            Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be greater than</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.LessThan(System.IComparable)">
+            <summary>
+            Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be less than</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.LessThanOrEqual(System.IComparable)">
+            <summary>
+            Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be less than or equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.GreaterThanOrEqual(System.IComparable)">
+            <summary>
+            Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="objToCompare">The object the parameter should be greater than or equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.Equal(System.Object)">
+            <summary>
+            Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="obj">The object the parameter should equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.NotEqual(System.Object)">
+            <summary>
+            Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
+            </summary>
+            <param name="obj">The object the parameter should not equal to</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.Same(System.Object)">
+            <summary>
+            Evaluate a same as constraint.
+            </summary>
+            <param name="obj">The object the parameter should the same as.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.NotSame(System.Object)">
+            <summary>
+            Evaluate a not same as constraint.
+            </summary>
+            <param name="obj">The object the parameter should not be the same as.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.Anything">
+            <summary>
+            A constraints that accept anything
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.Null">
+            <summary>
+            A constraint that accept only nulls
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.NotNull">
+            <summary>
+            A constraint that accept only non null values
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.TypeOf(System.Type)">
+            <summary>
+            A constraint that accept only value of the specified type
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.TypeOf``1">
+            <summary>
+            A constraint that accept only value of the specified type
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Is.Matching``1(System.Predicate{``0})">
+            <summary>
+            Evaluate a parameter using a predicate
+            </summary>
+            <param name="predicate">The predicate to use</param>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.List">
+            <summary>
+            Central location for constraints about lists and collections
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.IsIn(System.Object)">
+            <summary>
+            Determines whether the specified obj is in the parameter.
+            The parameter must be IEnumerable.
+            </summary>
+            <param name="obj">Obj.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.OneOf(System.Collections.IEnumerable)">
+            <summary>
+            Determines whatever the parameter is in the collection.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.Equal(System.Collections.IEnumerable)">
+            <summary>
+            Determines that the parameter collection is identical to the specified collection
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.Count(Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Determines that the parameter collection has the specified number of elements.
+            </summary>
+            <param name="constraint">The constraint that should be applied to the collection count.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.Element(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Determines that an element of the parameter collections conforms to another AbstractConstraint.
+            </summary>
+            <param name="index">The zero-based index of the list element.</param>
+            <param name="constraint">The constraint which should be applied to the list element.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.Element``1(``0,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Determines that an element of the parameter collections conforms to another AbstractConstraint.
+            </summary>
+            <param name="key">The key of the element.</param>
+            <param name="constraint">The constraint which should be applied to the element.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.List.ContainsAll(System.Collections.IEnumerable)">
+            <summary>
+             Determines that all elements of the specified collection are in the the parameter collection 
+            </summary>
+            <param name="collection">The collection to compare against</param>
+            <returns>The constraint which should be applied to the list parameter.</returns>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Property">
+            <summary>
+            Central location for constraints for object's properties
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.Value(System.String,System.Object)">
+            <summary>
+            Constrains the parameter to have property with the specified value
+            </summary>
+            <param name="propertyName">Name of the property.</param>
+            <param name="expectedValue">Expected value.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.Value(System.Type,System.String,System.Object)">
+            <summary>
+            Constrains the parameter to have property with the specified value.
+            </summary>
+            <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
+            <param name="propertyName">Name of the property.</param>
+            <param name="expectedValue">Expected value.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.ValueConstraint(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Constrains the parameter to have a property satisfying a specified constraint.
+            </summary>
+            <param name="propertyName">Name of the property.</param>
+            <param name="propertyConstraint">Constraint for the property.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.ValueConstraint(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
+            <summary>
+            Constrains the parameter to have a property satisfying a specified constraint.
+            </summary>
+            <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
+            <param name="propertyName">Name of the property.</param>
+            <param name="propertyConstraint">Constraint for the property.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.IsNull(System.String)">
+            <summary>
+            Determines whether the parameter has the specified property and that it is null.
+            </summary>
+            <param name="propertyName">Name of the property.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.IsNull(System.Type,System.String)">
+            <summary>
+            Determines whether the parameter has the specified property and that it is null.
+            </summary>
+            <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
+            <param name="propertyName">Name of the property.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.IsNotNull(System.String)">
+            <summary>
+            Determines whether the parameter has the specified property and that it is not null.
+            </summary>
+            <param name="propertyName">Name of the property.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.IsNotNull(System.Type,System.String)">
+            <summary>
+            Determines whether the parameter has the specified property and that it is not null.
+            </summary>
+            <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
+            <param name="propertyName">Name of the property.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Property.AllPropertiesMatch(System.Object)">
+            <summary>
+            constraints the parameter to have the exact same property values as the expected object.
+            </summary>
+            <param name="expected">An object, of the same type as the parameter, whose properties are set with the expected values.</param>
+            <returns>An instance of the constraint that will do the actual check.</returns>
+            <remarks>
+            The parameter's public property values and public field values will be matched against the expected object's
+            public property values and public field values. The first mismatch will be reported and no further matching is done.
+            The matching is recursive for any property or field that has properties or fields of it's own.
+            Collections are supported through IEnumerable, which means the constraint will check if the actual and expected
+            collection contain the same values in the same order, where the values contained by the collection can have properties
+            and fields of their own that will be checked as well because of the recursive nature of this constraint.
+            </remarks>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.Text">
+            <summary>
+            Central location for all text related constraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Text.StartsWith(System.String)">
+            <summary>
+            Constrain the argument to starts with the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Text.EndsWith(System.String)">
+            <summary>
+            Constrain the argument to end with the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Text.Contains(System.String)">
+            <summary>
+            Constrain the argument to contain the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.Text.Like(System.String)">
+            <summary>
+            Constrain the argument to validate according to regex pattern
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Constraints.TextArg">
+            <summary>
+            Provides access to the constraintes defined in the class <see cref="T:Rhino.Mocks.Constraints.Text"/> to be used in context
+            with the <see cref="T:Rhino.Mocks.Arg"/> syntax.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TextArg.StartsWith(System.String)">
+            <summary>
+            Constrain the argument to starts with the specified string
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TextArg.EndsWith(System.String)">
+            <summary>
+            Constrain the argument to end with the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TextArg.Contains(System.String)">
+            <summary>
+            Constrain the argument to contain the specified string
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TextArg.Like(System.String)">
+            <summary>
+            Constrain the argument to validate according to regex pattern
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TextArg.Equals(System.Object)">
+            <summary>
+            Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
+            </summary>
+            <param name="obj"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Constraints.TextArg.GetHashCode">
+            <summary>
+            Serves as a hash function for a particular type.
+            </summary>
+            <returns>
+            A hash code for the current <see cref="T:System.Object"/>.
+            </returns>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates">
+            <summary>
+            This class defines a lot of method signatures, which we will use
+            to allow compatability on net-2.0
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`1">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`2">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`2">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`3">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`3">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`4">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`4">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`5">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`5">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`6">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`6">
+            <summary>
+            dummy
+            </summary>
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`7">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`7">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`8">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`8">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`9">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`9">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`10">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Action`10">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Delegates.Function`11">
+            <summary>
+            dummy
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.DoNotExpect">
+            <summary>
+            Allows expectations to be set on methods that should never be called.
+            For methods with void return value, you need to use LastCall or
+            DoNotExpect.Call() with a delegate.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.DoNotExpect.Call(System.Object)">
+            <summary>
+            Sets LastCall.Repeat.Never() on /any/ proxy on /any/ repository on the current thread.
+            This method if not safe for multi threading scenarios.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.DoNotExpect.Call(Rhino.Mocks.Expect.Action)">
+            <summary>
+            Accepts a delegate that will execute inside the method which
+            LastCall.Repeat.Never() will be applied to.
+            It is expected to be used with anonymous delegates / lambda expressions and only one
+            method should be called.
+            </summary>
+            <example>
+            IService mockSrv = mocks.CreateMock(typeof(IService)) as IService;
+            DoNotExpect.Call(delegate{ mockSrv.Stop(); });
+            ...
+            </example>
+        </member>
+        <member name="T:Rhino.Mocks.Exceptions.ExpectationViolationException">
+            <summary>
+            An expectaton violation was detected.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Exceptions.ExpectationViolationException.#ctor(System.String)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Exceptions.ExpectationViolationException"/> instance.
+            </summary>
+            <param name="message">Message.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Exceptions.ExpectationViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+            <summary>
+            Serialization constructor
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException">
+            <summary>
+            Signals that an object was call on a mock repository which doesn't
+            belong to this mock repository or not a mock
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException.#ctor(System.String)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException"/> instance.
+            </summary>
+            <param name="message">Message.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+            <summary>
+            Serialization constructor
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Expect">
+            <summary>
+            Allows to set expectation on methods that has return values.
+            For methods with void return value, you need to use LastCall
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expect.Call``1(``0)">
+            <summary>
+            The method options for the last call on /any/ proxy on /any/ repository on the current thread.
+            This method if not safe for multi threading scenarios, use <see cref="M:Rhino.Mocks.Expect.On(System.Object)"/>.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expect.Call(Rhino.Mocks.Expect.Action)">
+            <summary>
+            Accepts a delegate that will execute inside the method, and then return the resulting
+            <see cref="T:Rhino.Mocks.Interfaces.IMethodOptions`1"/> instance.
+            It is expected to be used with anonymous delegates / lambda expressions and only one
+            method should be called.
+            </summary>
+            <example>
+            IService mockSrv = mocks.CreateMock(typeof(IService)) as IService;
+            Expect.Call(delegate{ mockSrv.Start(); }).Throw(new NetworkException());
+            ...
+            </example>
+        </member>
+        <member name="M:Rhino.Mocks.Expect.On(System.Object)">
+            <summary>
+            Get the method options for the last method call on the mockInstance.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Expect.Action">
+            <summary>
+            A delegate that can be used to get better syntax on Expect.Call(delegate { foo.DoSomething(); });
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Expectations.AbstractExpectation">
+            <summary>
+            Abstract class that holds common information for 
+            expectations.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IExpectation">
+            <summary>
+            Interface to validate that a method call is correct.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectation.IsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method.
+            This method can be called numerous times, so be careful about side effects
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectation.AddActualCall">
+            <summary>
+            Add an actual method call to this expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectation.ReturnOrThrow(Castle.Core.Interceptor.IInvocation,System.Object[])">
+            <summary>
+            Returns the return value or throw the exception and setup any output / ref parameters
+            that has been set.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectation.BuildVerificationFailureMessage">
+            <summary>
+            Builds the verification failure message.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ErrorMessage">
+            <summary>
+            Gets the error message.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.Expected">
+            <summary>
+            Range of expected calls
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActualCallsCount">
+            <summary>
+            Number of call actually made for this method
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.CanAcceptCalls">
+            <summary>
+            If this expectation is still waiting for calls.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ReturnValue">
+            <summary>
+            The return value for a method matching this expectation
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ExceptionToThrow">
+            <summary>
+            Gets or sets the exception to throw on a method matching this expectation.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActionsSatisfied">
+            <summary>
+            Gets a value indicating whether this instance's action is staisfied.
+            A staisfied instance means that there are no more requirements from
+            this method. A method with non void return value must register either
+            a return value or an exception to throw.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.Method">
+            <summary>
+            Gets the method this expectation is for.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.RepeatableOption">
+            <summary>
+            Gets or sets what special condtions there are for this method
+            repeating.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ExpectationSatisfied">
+            <summary>
+            Gets a value indicating whether this expectation was satisfied
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.HasReturnValue">
+            <summary>
+            Specify whatever this expectation has a return value set
+            You can't check ReturnValue for this because a valid return value include null.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActionToExecute">
+            <summary>
+            An action to execute when the method is matched.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.OutRefParams">
+            <summary>
+            Set the out / ref parameters for the method call.
+            The indexing is zero based and ignores any non out/ref parameter.
+            It is possible not to pass all the parameters. This method can be called only once.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.Message">
+            <summary>
+            Documentation Message
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.Originalinvocation">
+            <summary>
+            Gets the invocation for this expectation
+            </summary>
+            <value>The invocation.</value>
+        </member>
+        <member name="E:Rhino.Mocks.Interfaces.IExpectation.WhenCalled">
+            <summary>
+            Occurs when the exceptation is match on a method call
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IExpectation.AllowTentativeReturn">
+            <summary>
+            Allow to set the return value in the future, if it was already set.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.actualCallsCount">
+            <summary>
+            Number of actuall calls made that passed this expectation
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.expected">
+            <summary>
+            Range of expected calls that should pass this expectation.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.returnValue">
+            <summary>
+            The return value for a method matching this expectation
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.exceptionToThrow">
+            <summary>
+            The exception to throw on a method matching this expectation.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.method">
+            <summary>
+            The method this expectation is for.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.returnValueSet">
+            <summary>
+            The return value for this method was set
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.repeatableOption">
+            <summary>
+            Whether this method will repeat
+            unlimited number of times.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.actionToExecute">
+            <summary>
+            A delegate that will be run when the 
+            expectation is matched.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.matchingArgs">
+            <summary>
+            The arguments that matched this expectation.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.message">
+            <summary>
+            Documentation message
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.originalInvocation">
+            <summary>
+            The method originalInvocation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.GetHashCode">
+            <summary>
+            Get the hash code
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.AddActualCall">
+            <summary>
+            Add an actual actualMethodCall call to this expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.BuildVerificationFailureMessage">
+            <summary>
+            Builds the verification failure message.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.ReturnOrThrow(Castle.Core.Interceptor.IInvocation,System.Object[])">
+            <summary>
+            Returns the return value or throw the exception and setup output / ref parameters
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.IsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method on the child methods
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.#ctor(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Impl.Range)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.AbstractExpectation"/> instance.
+            </summary>
+            <param name="invocation">The originalInvocation for this method, required because it contains the generic type infromation</param>
+            <param name="expectedRange">Number of method calls for this expectations</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.AbstractExpectation"/> instance.
+            </summary>
+            <param name="expectation">Expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.DoIsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method on the child methods
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.Equals(System.Object)">
+            <summary>
+            Determines if this object equal to obj
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.CreateErrorMessage(System.String)">
+            <summary>
+            The error message for these arguments
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.AssertDelegateArgumentsMatchMethod(System.Delegate)">
+            <summary>
+            Asserts that the delegate has the same parameters as the expectation's method call
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.OutRefParams">
+            <summary>
+            Setter for the outpur / ref parameters for this expecataion.
+            Can only be set once.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.HasReturnValue">
+            <summary>
+            Specify whether this expectation has a return value set
+            You can't check ReturnValue for this because a valid return value include null.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Method">
+            <summary>
+            Gets the method this expectation is for.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Originalinvocation">
+            <summary>
+            Gets the originalInvocation for this expectation
+            </summary>
+            <value>The originalInvocation.</value>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.RepeatableOption">
+            <summary>
+            Gets or sets what special condtions there are for this method
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Expected">
+            <summary>
+            Range of expected calls
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActualCallsCount">
+            <summary>
+            Number of call actually made for this method
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.CanAcceptCalls">
+            <summary>
+            If this expectation is still waiting for calls.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ExpectationSatisfied">
+            <summary>
+            Gets a value indicating whether this expectation was satisfied
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ReturnValue">
+            <summary>
+            The return value for a method matching this expectation
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActionToExecute">
+            <summary>
+            An action to execute when the method is matched.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ExceptionToThrow">
+            <summary>
+            Gets or sets the exception to throw on a method matching this expectation.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActionsSatisfied">
+            <summary>
+            Gets a value indicating whether this instance's action is staisfied.
+            A staisfied instance means that there are no more requirements from
+            this method. A method with non void return value must register either
+            a return value or an exception to throw or an action to execute.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Message">
+            <summary>
+            Documentation message
+            </summary>
+        </member>
+        <member name="E:Rhino.Mocks.Expectations.AbstractExpectation.WhenCalled">
+            <summary>
+            Occurs when the exceptation is match on a method call
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.AllowTentativeReturn">
+            <summary>
+            Allow to set the return value in the future, if it was already set.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ErrorMessage">
+            <summary>
+            Gets the error message.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Expectations.AnyArgsExpectation">
+            <summary>
+            Expectation that matches any arguments for the method.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.#ctor(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Impl.Range)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.AnyArgsExpectation"/> instance.
+            </summary>
+            <param name="invocation">Invocation for this expectation</param>
+            <param name="expectedRange">Number of method calls for this expectations</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.AnyArgsExpectation"/> instance.
+            </summary>
+            <param name="expectation">Expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.DoIsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method.
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.Equals(System.Object)">
+            <summary>
+            Determines if the object equal to expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.GetHashCode">
+            <summary>
+            Get the hash code
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.AnyArgsExpectation.ErrorMessage">
+            <summary>
+            Gets the error message.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Expectations.ArgsEqualExpectation">
+            <summary>
+            Summary description for ArgsEqualExpectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.#ctor(Castle.Core.Interceptor.IInvocation,System.Object[],Rhino.Mocks.Impl.Range)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.ArgsEqualExpectation"/> instance.
+            </summary>
+            <param name="expectedArgs">Expected args.</param>
+            <param name="invocation">The invocation for this expectation</param>
+            <param name="expectedRange">Number of method calls for this expectations</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.DoIsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method.
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.Equals(System.Object)">
+            <summary>
+            Determines if the object equal to expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.GetHashCode">
+            <summary>
+            Get the hash code
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.ArgsEqualExpectation.ErrorMessage">
+            <summary>
+            Gets the error message.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.ArgsEqualExpectation.ExpectedArgs">
+            <summary>
+            Get the expected args.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Expectations.CallbackExpectation">
+            <summary>
+            Call a specified callback to verify the expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation,System.Delegate)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.CallbackExpectation"/> instance.
+            </summary>
+            <param name="expectation">Expectation.</param>
+            <param name="callback">Callback.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.#ctor(Castle.Core.Interceptor.IInvocation,System.Delegate,Rhino.Mocks.Impl.Range)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.CallbackExpectation"/> instance.
+            </summary>
+            <param name="invocation">Invocation for this expectation</param>
+            <param name="callback">Callback.</param>
+            <param name="expectedRange">Number of method calls for this expectations</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.DoIsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method on the child methods
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.Equals(System.Object)">
+            <summary>
+            Determines if the object equal to expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.GetHashCode">
+            <summary>
+            Get the hash code
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.CallbackExpectation.ErrorMessage">
+            <summary>
+            Gets the error message.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Expectations.ConstraintsExpectation">
+            <summary>
+            Expect the method's arguments to match the contraints
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.#ctor(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Constraints.AbstractConstraint[],Rhino.Mocks.Impl.Range)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.ConstraintsExpectation"/> instance.
+            </summary>
+            <param name="invocation">Invocation for this expectation</param>
+            <param name="constraints">Constraints.</param>
+            <param name="expectedRange">Number of method calls for this expectations</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Constraints.AbstractConstraint[])">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Expectations.ConstraintsExpectation"/> instance.
+            </summary>
+            <param name="expectation">Expectation.</param>
+            <param name="constraints">Constraints.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.DoIsExpected(System.Object[])">
+            <summary>
+            Validate the arguments for the method.
+            </summary>
+            <param name="args">The arguments with which the method was called</param>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.Equals(System.Object)">
+            <summary>
+            Determines if the object equal to expectation
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.GetHashCode">
+            <summary>
+            Get the hash code
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Expectations.ConstraintsExpectation.ErrorMessage">
+            <summary>
+            Gets the error message.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.NullLogger">
+            <summary>
+            Doesn't log anything, just makes happy noises
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IExpectationLogger">
+            <summary>
+            Log expectations - allows to see what is going on inside Rhino Mocks
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectationLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as is was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectationLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as it was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IExpectationLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
+            <summary>
+            Logs the unexpected method call.
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="message">The message.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.NullLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as is was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.NullLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as it was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.NullLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
+            <summary>
+            Logs the unexpected method call.
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="message">The message.</param>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RemotingMock.IRemotingProxyOperation">
+            <summary>
+            Operation on a remoting proxy
+            </summary>
+            <remarks>
+            It is not possible to directly communicate to a real proxy via transparent proxy.
+            Transparent proxy impersonates a user type and only methods of that user type are callable.
+            The only methods that are guaranteed to exist on any transparent proxy are methods defined
+            in Object: namely ToString(), GetHashCode(), and Equals()).
+            
+            These three methods are the only way to tell the real proxy to do something.
+            Equals() is the most suitable of all, since it accepts an arbitrary object parameter.
+            The RemotingProxy code is built so that if it is compared to an IRemotingProxyOperation,
+            transparentProxy.Equals(operation) will call operation.Process(realProxy).
+            This way we can retrieve a real proxy from transparent proxy and perform
+            arbitrary operation on it. 
+            </remarks>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator">
+            <summary>
+            Generates remoting proxies and provides utility functions
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator.CreateRemotingMock(System.Type,Castle.Core.Interceptor.IInterceptor,Rhino.Mocks.Interfaces.IMockedObject)">
+            <summary>
+             Create the proxy using remoting
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator.IsRemotingProxy(System.Object)">
+            <summary>
+            Check whether an object is a transparent proxy with a RemotingProxy behind it
+            </summary>
+            <param name="obj">Object to check</param>
+            <returns>true if the object is a transparent proxy with a RemotingProxy instance behind it, false otherwise</returns>
+            <remarks>We use Equals() method to communicate with the real proxy behind the object.
+            See IRemotingProxyOperation for more details</remarks>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator.GetMockedObjectFromProxy(System.Object)">
+            <summary>
+            Retrieve a mocked object from a transparent proxy
+            </summary>
+            <param name="proxy">Transparent proxy with a RemotingProxy instance behind it</param>
+            <returns>Mocked object associated with the proxy</returns>
+            <remarks>We use Equals() method to communicate with the real proxy behind the object.
+            See IRemotingProxyOperation for more details</remarks>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RemotingMock.RemotingInvocation">
+            <summary>
+            Implementation of IInvocation based on remoting proxy
+            </summary>
+            <remarks>Some methods are marked NotSupported since they either don't make sense
+            for remoting proxies, or they are never called by Rhino Mocks</remarks>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.TextWriterExpectationLogger">
+            <summary>
+            Rudimetry implementation that simply logs methods calls as text.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.#ctor(System.IO.TextWriter)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.TextWriterExpectationLogger"/> class.
+            </summary>
+            <param name="writer">The writer.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as it was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as it was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
+            <summary>
+            Logs the unexpected method call.
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="message">The message.</param>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.StubRecordMockState">
+            <summary>
+            Behave like a stub, all properties and events acts normally, methods calls
+            return default values by default (but can use expectations to set them up), etc.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RecordMockState">
+            <summary>
+            Records all the expectations for a mock
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IMockState">
+            <summary>
+            Different actions on this mock
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.Verify">
+            <summary>
+            Verify that this mock expectations have passed.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.Replay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.GetLastMethodOptions``1">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.SetExceptionToThrowOnVerify(System.Exception)">
+            <summary>
+            Set the exception to throw when Verify is called.
+            This is used to report exception that may have happened but where caught in the code.
+            This way, they are reported anyway when Verify() is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockState.NotifyCallOnPropertyBehavior">
+            <summary>
+            This method is called to indicate that a property behavior call.
+            This is done so we generate good error message in the common case of people using
+            Stubbed properties with Return().
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockState.VerifyState">
+            <summary>
+            Gets the matching verify state for this state
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockState.LastMethodOptions">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.GetLastMethodOptions``1">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.SetExceptionToThrowOnVerify(System.Exception)">
+            <summary>
+            Set the exception to throw when Verify is called.
+            This is used to report exception that may have happened but where caught in the code.
+            This way, they are reported anyway when Verify() is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.NotifyCallOnPropertyBehavior">
+            <summary>
+            This method is called to indicate that a property behavior call.
+            This is done so we generate good error message in the common case of people using
+            Stubbed properties with Return().
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.RecordMockState"/> instance.
+            </summary>
+            <param name="repository">Repository.</param>
+            <param name="mockedObject">The proxy that generates the method calls</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.Replay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.DoReplay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.Verify">
+            <summary>
+            Verify that this mock expectations have passed.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.AssertPreviousMethodIsClose">
+            <summary>
+            Asserts the previous method is closed (had an expectation set on it so we can replay it correctly)
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordMockState.GetDefaultCallCountRangeExpectation">
+            <summary>
+            Get the default call count range expectation
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.RecordMockState.LastExpectation">
+            <summary>
+            Gets the last expectation.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.RecordMockState.MethodCallsCount">
+            <summary>
+            Gets the total method calls count.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.RecordMockState.LastMethodOptions">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.RecordMockState.VerifyState">
+            <summary>
+            Gets the matching verify state for this state
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubRecordMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.StubRecordMockState"/> class.
+            </summary>
+            <param name="mockedObject">The proxy that generates the method calls</param>
+            <param name="repository">Repository.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubRecordMockState.AssertPreviousMethodIsClose">
+            <summary>
+            We don't care much about expectations here, so we will remove the expectation if
+            it is not closed.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubRecordMockState.Replay">
+            <summary>
+            Verify that we can move to replay state and move
+            to the reply state.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubRecordMockState.GetDefaultCallCountRangeExpectation">
+            <summary>
+            Get the default call count range expectation
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.StubReplayMockState">
+            <summary>
+            Validate expectations on recorded methods, but in general completely ignoring them.
+            Similar to <seealso cref="T:Rhino.Mocks.Impl.ReplayDynamicMockState"/> except that it would return a 
+            <seealso cref="T:Rhino.Mocks.Impl.StubRecordMockState"/> when BackToRecord is called.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.ReplayMockState">
+            <summary>
+            Validate all expectations on a mock
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.ReplayMockState.repository">
+            <summary>
+            The repository for this state
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.ReplayMockState.proxy">
+            <summary>
+            The proxy object for this state
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.GetLastMethodOptions``1">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.#ctor(Rhino.Mocks.Impl.RecordMockState)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.ReplayMockState"/> instance.
+            </summary>
+            <param name="previousState">The previous state for this method</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            This allows derived method to cleanly get a the setupresult behavior while adding
+            their own.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.SetExceptionToThrowOnVerify(System.Exception)">
+            <summary>
+            Set the exception to throw when Verify is called.
+            This is used to report exception that may have happened but where caught in the code.
+            This way, they are reported anyway when Verify() is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.NotifyCallOnPropertyBehavior">
+            <summary>
+            not relevant
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.Verify">
+            <summary>
+            Verify that this mock expectations have passed.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.Replay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ReplayMockState.LastMethodOptions">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ReplayMockState.VerifyState">
+            <summary>
+            Gets the matching verify state for this state
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubReplayMockState.#ctor(Rhino.Mocks.Impl.RecordMockState)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.StubReplayMockState"/> class.
+            </summary>
+            <param name="previousState">The previous state for this method</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubReplayMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.StubReplayMockState.BackToRecord">
+            <summary>
+            Gets a mock state that matches the original mock state of the object.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.TraceWriterExpectationLogger">
+            <summary>
+            Write rhino mocks log info to the trace
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.#ctor">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.TraceWriterExpectationLogger"/> class.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.#ctor(System.Boolean,System.Boolean,System.Boolean)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.TraceWriterExpectationLogger"/> class.
+            </summary>
+            <param name="logRecorded">if set to <c>true</c> [log recorded].</param>
+            <param name="logReplayed">if set to <c>true</c> [log replayed].</param>
+            <param name="logUnexpected">if set to <c>true</c> [log unexpected].</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as is was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as it was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
+            <summary>
+            Logs the unexpected method call.
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="message">The message.</param>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter">
+            <summary>
+            Writes log information as stack traces about rhino mocks activity
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.AlternativeWriter">
+            <summary>
+            Allows to redirect output to a different location.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as is was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Logs the expectation as it was recorded
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="expectation">The expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
+            <summary>
+            Logs the unexpected method call.
+            </summary>
+            <param name="invocation">The invocation.</param>
+            <param name="message">The message.</param>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IPartialMockMarker">
+            <summary>
+            Marker interface used to indicate that this is a partial mock.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.OriginalCallOptions">
+            <summary>
+            Options for CallOriginalMethod
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Interfaces.OriginalCallOptions.NoExpectation">
+            <summary>
+            No expectation is created, the method will be called directly
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Interfaces.OriginalCallOptions.CreateExpectation">
+            <summary>
+            Normal expectation is created, but when the method is later called, it will also call the original method
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.MethodInvocation">
+            <summary>
+            This is a data structure that is used by 
+            <seealso cref="M:Rhino.Mocks.Interfaces.IMethodOptions`1.WhenCalled(System.Action{Rhino.Mocks.MethodInvocation})"/> to pass
+            the current method to the relevant delegate
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodInvocation.#ctor(Castle.Core.Interceptor.IInvocation)">
+            <summary>
+            Initializes a new instance of the <see cref="T:Rhino.Mocks.MethodInvocation"/> class.
+            </summary>
+            <param name="invocation">The invocation.</param>
+        </member>
+        <member name="P:Rhino.Mocks.MethodInvocation.Arguments">
+            <summary>
+            Gets the args for this method invocation
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.MethodInvocation.Method">
+            <summary>
+            Get the method that was caused this invocation
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.MethodInvocation.ReturnValue">
+            <summary>
+            Gets or sets the return value for this method invocation
+            </summary>
+            <value>The return value.</value>
+        </member>
+        <member name="T:Rhino.Mocks.MockRepository">
+            <summary>
+             Adds optional new usage:
+               using(mockRepository.Record()) {
+                  Expect.Call(mock.Method()).Return(retVal);
+               }
+               using(mockRepository.Playback()) {
+                  // Execute code
+               }
+             N.B. mockRepository.ReplayAll() and mockRepository.VerifyAll()
+                  calls are taken care of by Record/Playback
+            </summary>
+            <summary>
+            Creates proxied instances of types.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStub``1(System.Object[])">
+            <summary>Generates a stub without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
+            <typeparam name="T">The <see cref="T:System.Type"/> of stub to create.</typeparam>
+            <returns>The stub</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.Stub``1(System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStub(System.Type,System.Object[])">
+            <summary>Generates a stub without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="type">The <see cref="T:System.Type"/> of stub.</param>
+            <param name="argumentsForConstructor">Arguments for the <paramref name="type"/>'s constructor.</param>
+            <returns>The stub</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.Stub(System.Type,System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateMock``1(System.Object[])">
+            <summary>Generate a mock object without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <typeparam name="T">type <see cref="T:System.Type"/> of mock object to create.</typeparam>
+            <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
+            <returns>the mock object</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMock``1(System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateMock``2(System.Object[])">
+            <summary>Generate a multi-mock object without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <typeparam name="T">The <c>typeof</c> object to generate a mock for.</typeparam>
+            <typeparam name="TMultiMockInterface1">A second interface to generate a multi-mock for.</typeparam>
+            <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
+            <returns>the multi-mock object</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateMock``3(System.Object[])">
+            <summary>Generate a multi-mock object without without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <typeparam name="T">The <c>typeof</c> object to generate a mock for.</typeparam>
+            <typeparam name="TMultiMockInterface1">An interface to generate a multi-mock for.</typeparam>
+            <typeparam name="TMultiMockInterface2">A second interface to generate a multi-mock for.</typeparam>
+            <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
+            <returns>the multi-mock object</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateMock(System.Type,System.Type[],System.Object[])">
+            <summary>Creates a multi-mock without without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="type">The type of mock to create, this can be a class</param>
+            <param name="extraTypes">Any extra interfaces to add to the multi-mock, these can only be interfaces.</param>
+            <param name="argumentsForConstructor">Arguments for <paramref name="type"/>'s constructor</param>
+            <returns>the multi-mock object</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock``1(System.Object[])">
+            <summary>Creates a strict mock without without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="argumentsForConstructor">Any arguments required for the <typeparamref name="T"/>'s constructor</param>
+            <typeparam name="T">The type of mock object to create.</typeparam>
+            <returns>The mock object with strict replay semantics</returns>
+             <seealso cref="M:Rhino.Mocks.MockRepository.StrictMock``1(System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock``2(System.Object[])">
+            <summary>Creates a strict multi-mock without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="argumentsForConstructor">Any arguments required for the <typeparamref name="T"/>'s constructor</param>
+            <typeparam name="T">The type of mock object to create, this can be a class.</typeparam>
+            <typeparam name="TMultiMockInterface1">An interface to generate a multi-mock for, this must be an interface!</typeparam>
+            <returns>The multi-mock object with strict replay semantics</returns>
+             <seealso cref="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock``3(System.Object[])">
+            <summary>Creates a strict multi-mock without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="argumentsForConstructor">Any arguments required for the <typeparamref name="T"/>'s constructor</param>
+            <typeparam name="T">The type of mock object to create, this can be a class.</typeparam>
+            <typeparam name="TMultiMockInterface1">An interface to generate a multi-mock for, this must be an interface!</typeparam>
+            <typeparam name="TMultiMockInterface2">A second interface to generate a multi-mock for, this must be an interface!</typeparam>
+            <returns>The multi-mock object with strict replay semantics</returns>
+            <seealso cref="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock(System.Type,System.Type[],System.Object[])">
+            <summary>Creates a strict multi-mock without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
+            <param name="type">The type of mock object to create, this can be a class</param>
+            <param name="extraTypes">Any extra interfaces to generate a multi-mock for, these must be interaces!</param>
+            <param name="argumentsForConstructor">Any arguments for the <paramref name="type"/>'s constructor</param>
+            <returns>The strict multi-mock object</returns>
+             <seealso cref="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])"/>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock``1(System.Object[])">
+            <summary>
+            </summary>
+            <param name="argumentsForConstructor"></param>
+            <typeparam name="T"></typeparam>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock``2(System.Object[])">
+            <summary>
+            </summary>
+            <param name="argumentsForConstructor"></param>
+            <typeparam name="T"></typeparam>
+            <typeparam name="TMultiMockInterface1"></typeparam>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock``3(System.Object[])">
+            <summary>
+            </summary>
+            <param name="argumentsForConstructor"></param>
+            <typeparam name="T"></typeparam>
+            <typeparam name="TMultiMockInterface1"></typeparam>
+            <typeparam name="TMultiMockInterface2"></typeparam>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock(System.Type,System.Type[],System.Object[])">
+            <summary>
+            </summary>
+            <param name="type"></param>
+            <param name="extraTypes"></param>
+            <param name="argumentsForConstructor"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateDynamicMockWithRemoting``1(System.Object[])">
+            <summary>
+            Generate a mock object with dynamic replay semantics and remoting without needing the mock repository
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMockWithRemoting``1(System.Object[])">
+            <summary>
+            Generate a mock object with strict replay semantics and remoting without needing the mock repository
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMockInReplay``1(System.Func{Rhino.Mocks.MockRepository,``0})">
+            <summary>Helper method to create a mock object without a repository instance and put the object back into replay mode.</summary>
+            <typeparam name="T">The type of mock object to create</typeparam>
+            <param name="createMock">A delegate that uses a mock repository instance to create the underlying mock</param>
+            <returns>The mock object in the replay mode.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Record">
+            <summary>
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Playback">
+            <summary>
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="F:Rhino.Mocks.MockRepository.generatorMap">
+            <summary>
+            This is a map of types to ProxyGenerators.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MockRepository.lastRepository">
+            <summary>
+            This is used to record the last repository that has a method called on it.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MockRepository.lastMockedObject">
+            <summary>
+            this is used to get to the last proxy on this repository.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MockRepository.delegateProxies">
+            <summary>
+            For mock delegates, maps the proxy instance from intercepted invocations
+            back to the delegate that was originally returned to client code, if any.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MockRepository.proxies">
+            <summary>
+            All the proxies in the mock repositories
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MockRepository.repeatableMethods">
+            <summary>
+            This is here because we can't put it in any of the recorders, since repeatable methods
+            have no orderring, and if we try to handle them using the usual manner, we would get into
+            wierd situations where repeatable method that was defined in an orderring block doesn't
+            exists until we enter this block.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.#ctor">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MockRepository"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Ordered">
+            <summary>
+            Move the repository to ordered mode
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Unordered">
+            <summary>
+            Move the repository to un-ordered mode
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMock(System.Type,System.Object[])">
+            <summary>
+            Creates a mock for the specified type.
+            </summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMock(System.Type,System.Object[])">
+            <summary>
+            Creates a strict mock for the specified type.
+            </summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMockWithRemoting(System.Type,System.Object[])">
+            <summary>
+            Creates a remoting mock for the specified type.
+            </summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMockWithRemoting(System.Type,System.Object[])">
+            <summary>
+            Creates a strict remoting mock for the specified type.
+            </summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMockWithRemoting``1(System.Object[])">
+            <summary>
+            Creates a remoting mock for the specified type.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMockWithRemoting``1(System.Object[])">
+            <summary>
+            Creates a strict remoting mock for the specified type.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock(System.Type,System.Type[])">
+            <summary>
+            Creates a mock from several types, with strict semantics.
+            Only <paramref name="mainType"/> may be a class.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[])">
+            <summary>
+            Creates a strict mock from several types, with strict semantics.
+            Only <paramref name="mainType"/> may be a class.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock(System.Type,System.Type[],System.Object[])">
+            <summary>
+            Creates a mock from several types, with strict semantics.
+            Only <paramref name="mainType"/> may be a class.
+            </summary>
+            <param name="mainType">The main type to mock.</param>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])">
+            <summary>
+            Creates a strict mock from several types, with strict semantics.
+            Only <paramref name="mainType"/> may be a class.
+            </summary>
+            <param name="mainType">The main type to mock.</param>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[])">
+            <summary>
+            Creates a mock from several types, with dynamic semantics.
+            Only <paramref name="mainType"/> may be a class.
+            </summary>
+            <param name="mainType">The main type to mock.</param>
+            <param name="extraTypes">Extra interface types to mock.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])">
+            <summary>
+            Creates a mock from several types, with dynamic semantics.
+            Only <paramref name="mainType"/> may be a class.
+            </summary>
+            <param name="mainType">The main type to mock.</param>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMock(System.Type,System.Object[])">
+            <summary>Creates a dynamic mock for the specified type.</summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMockWithRemoting(System.Type,System.Object[])">
+            <summary>Creates a dynamic mock for the specified type.</summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMockWithRemoting``1(System.Object[])">
+            <summary>Creates a dynamic mock for the specified type.</summary>
+            <typeparam name="T"></typeparam>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PartialMock(System.Type,System.Object[])">
+            <summary>Creates a mock object that defaults to calling the class methods if no expectation is set on the method.</summary>
+            <param name="type">Type.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock(System.Type,System.Type[])">
+            <summary>Creates a mock object that defaults to calling the class methods.</summary>
+            <param name="type">Type.</param>
+            <param name="extraTypes">Extra interface types to mock.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock(System.Type,System.Type[],System.Object[])">
+            <summary>Creates a mock object that defaults to calling the class methods.</summary>
+            <param name="type">Type.</param>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.RemotingMock(System.Type,Rhino.Mocks.MockRepository.CreateMockState)">
+            <summary>Creates a mock object using remoting proxies</summary>
+            <param name="type">Type to mock - must be MarshalByRefObject</param>
+            <returns>Mock object</returns>
+            <remarks>Proxy mock can mock non-virtual methods, but not static methods</remarks>
+            <param name="factory">Creates the mock state for this proxy</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Replay(System.Object)">
+            <summary>
+            Cause the mock state to change to replay, any further call is compared to the 
+            ones that were called in the record state.
+            </summary>
+            <remarks>This method *cannot* be called from inside an ordering.</remarks>
+            <param name="obj">the object to move to replay state</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.ReplayCore(System.Object,System.Boolean)">
+            <summary>
+            Cause the mock state to change to replay, any further call is compared to the 
+            ones that were called in the record state.
+            </summary>
+            <param name="obj">the object to move to replay state</param>
+            <param name="checkInsideOrdering"></param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.BackToRecord(System.Object)">
+            <summary>Move the mocked object back to record state.<para>You can (and it's recommended) to run {Verify()} before you use this method.</para></summary>
+            <remarks>Will delete all current expectations!</remarks>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.BackToRecord(System.Object,Rhino.Mocks.BackToRecordOptions)">
+            <summary>
+            Move the mocked object back to record state.
+            Optionally, can delete all current expectations, but allows more granularity about how
+            it would behave with regard to the object state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Verify(System.Object)">
+            <summary>
+            Verify that all the expectations for this object were fulfilled.
+            </summary>
+            <param name="obj">the object to verify the expectations for</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.LastMethodCall``1(System.Object)">
+            <summary>
+            Get the method options for the last call on
+            mockedInstance.
+            </summary>
+            <param name="mockedInstance">The mock object</param>
+            <returns>Method options for the last call</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GetMockObjectFromInvocationProxy(System.Object)">
+            <summary>
+            Maps an invocation proxy back to the mock object instance that was originally
+            returned to client code which might have been a delegate to this proxy.
+            </summary>
+            <param name="invocationProxy">The mock object proxy from the intercepted invocation</param>
+            <returns>The mock object</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMockObject(System.Type,Rhino.Mocks.MockRepository.CreateMockState,System.Type[],System.Object[])">
+            <summary>This is provided to allow advance extention functionality, where Rhino Mocks standard functionality is not enough.</summary>
+            <param name="type">The type to mock</param>
+            <param name="factory">Delegate that create the first state of the mocked object (usualy the record state).</param>
+            <param name="extras">Additional types to be implemented, this can be only interfaces </param>
+            <param name="argumentsForConstructor">optional arguments for the constructor</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GetMockedObject(System.Object)">
+            <summary>
+             Method: GetMockedObject
+             Get an IProxy from a mocked object instance, or throws if the 
+             object is not a mock object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GetMockedObjectOrNull(System.Object)">
+            <summary>
+            Method: GetMockedObjectOrNull
+            Get an IProxy from a mocked object instance, or null if the
+            object is not a mock object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PopRecorder">
+            <summary>Pops the recorder.</summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PushRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>Pushes the recorder.</summary>
+            <param name="newRecorder">New recorder.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.BackToRecordAll">
+            <summary>
+            All the mock objects in this repository will be moved
+            to record state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.BackToRecordAll(Rhino.Mocks.BackToRecordOptions)">
+            <summary>
+            All the mock objects in this repository will be moved
+            to record state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.ReplayAll">
+            <summary>
+            Replay all the mocks from this repository
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.VerifyAll">
+            <summary>
+            Verify all the mocks from this repository
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.GetProxyGenerator(System.Type)">
+            <summary>
+            Gets the proxy generator for a specific type. Having a single ProxyGenerator
+            with multiple types linearly degrades the performance so this implementation
+            keeps one ProxyGenerator per type. 
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.SetExceptionToBeThrownOnVerify(System.Object,Rhino.Mocks.Exceptions.ExpectationViolationException)">
+            <summary>Set the exception to be thrown when verified is called.</summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMock``1(System.Object[])">
+            <summary>
+            Creates a mock for the spesified type with strict mocking semantics.
+            <para>Strict semantics means that any call that wasn't explicitly recorded is considered an error and would cause an exception to be thrown.</para>
+            </summary>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMock``1(System.Object[])">
+            <summary>
+            Creates a mock for the spesified type with strict mocking semantics.
+            <para>Strict semantics means that any call that wasn't explicitly recorded is considered an error and would cause an exception to be thrown.</para>
+            </summary>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMock``1(System.Object[])">
+            <summary>
+            Creates a dynamic mock for the specified type.
+            </summary>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock``1(System.Type[])">
+            <summary>
+            Creates a mock object from several types.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock``1(System.Type[])">
+            <summary>
+            Creates a strict mock object from several types.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock``1(System.Type[])">
+            <summary>
+            Create a mock object from several types with dynamic semantics.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock``1(System.Type[])">
+            <summary>
+            Create a mock object from several types with partial semantics.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock``1(System.Type[],System.Object[])">
+            <summary>
+            Create a mock object from several types with strict semantics.
+            </summary>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock``1(System.Type[],System.Object[])">
+            <summary>
+            Create a strict mock object from several types with strict semantics.
+            </summary>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock``1(System.Type[],System.Object[])">
+            <summary>
+            Create a mock object from several types with dynamic semantics.
+            </summary>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock``1(System.Type[],System.Object[])">
+            <summary>
+            Create a mock object from several types with partial semantics.
+            </summary>
+            <param name="extraTypes">Extra interface types to mock.</param>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.PartialMock``1(System.Object[])">
+            <summary>
+            Create a mock object with from a class that defaults to calling the class methods
+            </summary>
+            <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Stub``1(System.Object[])">
+            <summary>
+            Create a stub object, one that has properties and events ready for use, and 
+            can have methods called on it. It requires an explicit step in order to create 
+            an expectation for a stub.
+            </summary>
+            <param name="argumentsForConstructor">The arguments for constructor.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.Stub(System.Type,System.Object[])">
+            <summary>
+            Create a stub object, one that has properties and events ready for use, and
+            can have methods called on it. It requires an explicit step in order to create
+            an expectation for a stub.
+            </summary>
+            <param name="type">The type.</param>
+            <param name="argumentsForConstructor">The arguments for constructor.</param>
+            <returns>The stub</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.IsInReplayMode(System.Object)">
+            <summary>
+            Returns true if the passed mock is currently in replay mode.
+            </summary>
+            <param name="mock">The mock to test.</param>
+            <returns>True if the mock is in replay mode, false otherwise.</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.IsStub(System.Object)">
+            <summary>
+            Determines whether the specified proxy is a stub.
+            </summary>
+            <param name="proxy">The proxy.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MockRepository.RegisterPropertyBehaviorOn(Rhino.Mocks.Interfaces.IMockedObject)">
+            <summary>
+            Register a call on a prperty behavior 
+            </summary>
+            <param name="instance"></param>
+        </member>
+        <member name="P:Rhino.Mocks.MockRepository.Recorder">
+            <summary>
+            Gets the recorder.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.MockRepository.Replayer">
+            <summary>
+            Gets the replayer for this repository.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.MockRepository.LastMockedObject">
+            <summary>
+            Gets the last proxy which had a method call.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.MockRepository.CreateMockState">
+            <summary>
+             Delegate: CreateMockState
+             This is used internally to cleanly handle the creation of different 
+             RecordMockStates.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.RhinoMocksExtensions">
+            <summary>
+            A set of extension methods that adds Arrange Act Assert mode to Rhino Mocks
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Expect``1(``0,System.Action{``0})">
+            <summary>
+            Create an expectation on this mock for this action to occur
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.BackToRecord``1(``0)">
+            <summary>
+            Reset all expectations on this mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.BackToRecord``1(``0,Rhino.Mocks.BackToRecordOptions)">
+            <summary>
+            Reset the selected expectation on this mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="options">The options to reset the expectations on this mock.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Replay``1(``0)">
+            <summary>
+            Cause the mock state to change to replay, any further call is compared to the 
+            ones that were called in the record state.
+            </summary>
+            <param name="mock">the mocked object to move to replay state</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetMockRepository``1(``0)">
+            <summary>
+            Gets the mock repository for this specificied mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Expect``2(``0,Rhino.Mocks.Function{``0,``1})">
+            <summary>
+            Create an expectation on this mock for this action to occur
+            </summary>
+            <typeparam name="T"></typeparam>
+            <typeparam name="R"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Stub``1(``0,System.Action{``0})">
+            <summary>
+            Tell the mock object to perform a certain action when a matching 
+            method is called.
+            Does not create an expectation for this method.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Stub``2(``0,Rhino.Mocks.Function{``0,``1})">
+            <summary>
+            Tell the mock object to perform a certain action when a matching
+            method is called.
+            Does not create an expectation for this method.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <typeparam name="R"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetArgumentsForCallsMadeOn``1(``0,System.Action{``0})">
+            <summary>
+            Gets the arguments for calls made on this mock object and the method that was called
+            in the action.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <returns></returns>
+            <example>
+            Here we will get all the arguments for all the calls made to DoSomething(int)
+            <code>
+            var argsForCalls = foo54.GetArgumentsForCallsMadeOn(x =&gt; x.DoSomething(0))
+            </code>
+            </example>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetArgumentsForCallsMadeOn``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
+            <summary>
+            Gets the arguments for calls made on this mock object and the method that was called
+            in the action and matches the given constraints
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <param name="setupConstraints">The setup constraints.</param>
+            <returns></returns>
+            <example>
+            Here we will get all the arguments for all the calls made to DoSomething(int)
+            <code>
+            var argsForCalls = foo54.GetArgumentsForCallsMadeOn(x =&gt; x.DoSomething(0))
+            </code>
+            </example>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Action{``0})">
+            <summary>
+            Asserts that a particular method was called on this mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
+            <summary>
+            Asserts that a particular method was called on this mock object that match
+            a particular constraint set.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <param name="setupConstraints">The setup constraints.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Func{``0,System.Object})">
+            <summary>
+            Asserts that a particular method was called on this mock object that match
+            a particular constraint set.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Func{``0,System.Object},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
+            <summary>
+            Asserts that a particular method was called on this mock object that match
+            a particular constraint set.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <param name="setupConstraints">The setup constraints.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Action{``0})">
+            <summary>
+            Asserts that a particular method was NOT called on this mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
+            <summary>
+            Asserts that a particular method was NOT called on this mock object that match
+            a particular constraint set.
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <param name="setupConstraints">The setup constraints.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Func{``0,System.Object})">
+            <summary>
+            Asserts that a particular method was NOT called on this mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Func{``0,System.Object},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
+            <summary>
+            Asserts that a particular method was NOT called on this mock object
+            </summary>
+            <typeparam name="T"></typeparam>
+            <param name="mock">The mock.</param>
+            <param name="action">The action.</param>
+            <param name="setupConstraints">The setup constraints.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.FindAppropriteType``1(Rhino.Mocks.Interfaces.IMockedObject)">
+            <summary>
+            Finds the approprite implementation type of this item.
+            This is the class or an interface outside of the rhino mocks.
+            </summary>
+            <param name="mockedObj">The mocked obj.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.VerifyAllExpectations(System.Object)">
+            <summary>
+            Verifies all expectations on this mock object
+            </summary>
+            <param name="mockObject">The mock object.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetEventRaiser``1(``0,System.Action{``0})">
+            <summary>
+            Gets the event raiser for the event that was called in the action passed
+            </summary>
+            <typeparam name="TEventSource">The type of the event source.</typeparam>
+            <param name="mockObject">The mock object.</param>
+            <param name="eventSubscription">The event subscription.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Raise``1(``0,System.Action{``0},System.Object,System.EventArgs)">
+            <summary>
+            Raise the specified event using the passed arguments.
+            The even is extracted from the passed labmda
+            </summary>
+            <typeparam name="TEventSource">The type of the event source.</typeparam>
+            <param name="mockObject">The mock object.</param>
+            <param name="eventSubscription">The event subscription.</param>
+            <param name="sender">The sender.</param>
+            <param name="args">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.Raise``1(``0,System.Action{``0},System.Object[])">
+            <summary>
+            Raise the specified event using the passed arguments.
+            The even is extracted from the passed labmda
+            </summary>
+            <typeparam name="TEventSource">The type of the event source.</typeparam>
+            <param name="mockObject">The mock object.</param>
+            <param name="eventSubscription">The event subscription.</param>
+            <param name="args">The args.</param>
+        </member>
+        <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertExactlySingleExpectaton``1(Rhino.Mocks.MockRepository,``0)">
+            <summary>TODO: Make this better!  It currently breaks down when mocking classes or
+            ABC's that call other virtual methods which are getting intercepted too.  I wish
+            we could just walk Expression{Action{Action{T}} to assert only a single
+            method is being made.
+            
+            The workaround is to not call foo.AssertWasCalled .. rather foo.VerifyAllExpectations()</summary>
+            <typeparam name="T">The type of mock object</typeparam>
+            <param name="mocks">The mock repository</param>
+            <param name="mockToRecordExpectation">The actual mock object to assert expectations on.</param>
+        </member>
+        <member name="T:Rhino.Mocks.RhinoMocksExtensions.VoidType">
+            <summary>
+            Fake type that disallow creating it.
+            Should have been System.Type, but we can't use it.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Utilities.GenericsUtil">
+            <summary>
+            Utility class for dealing with messing generics scenarios.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Utilities.GenericsUtil.HasOpenGenericParam(System.Type)">
+            <summary>
+            There are issues with trying to get this to work correctly with open generic types, since this is an edge case, 
+            I am letting the runtime handle it.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Utilities.GenericsUtil.GetRealType(System.Type,Castle.Core.Interceptor.IInvocation)">
+            <summary>
+            Gets the real type, including de-constructing and constructing the type of generic
+            methods parameters.
+            </summary>
+            <param name="type">The type.</param>
+            <param name="invocation">The invocation.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Utilities.GenericsUtil.ReconstructGenericType(System.Type,System.Collections.Generic.Dictionary{System.String,System.Type})">
+            <summary>
+            Because we need to support complex types here (simple generics were handled above) we
+            need to be aware of the following scenarios:
+            List[T] and List[Foo[T]]
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Generated.ExpectationsList">
+            <summary>
+            ExpectationsList
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary">
+            <summary>
+            Dictionary
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Generated.ProxyStateDictionary">
+            <summary>
+            Dictionary class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Generated.ProxyStateDictionary.#ctor">
+            <summary>
+            Create a new instance of <c>ProxyStateDictionary</c>
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.CreateMethodExpectation">
+            <summary>
+            Allows to call a method and immediately get it's options.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.ICreateMethodExpectation">
+            <summary>
+            Interface to allow calling a method and immediately get it's options.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.ICreateMethodExpectation.Call``1(``0)">
+            <summary>
+            Get the method options for the call
+            </summary>
+            <param name="ignored">The method call should go here, the return value is ignored</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.CreateMethodExpectation.#ctor(Rhino.Mocks.Interfaces.IMockedObject,System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.CreateMethodExpectation"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.CreateMethodExpectation.Call``1(``0)">
+            <summary>
+            Get the method options for the call
+            </summary>
+            <param name="ignored">The method call should go here, the return value is ignored</param>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult">
+            <summary>
+            Allows to call a method and immediately get it's options.
+            Set the expected number for the call to Any() 
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult.#ctor(Rhino.Mocks.Interfaces.IMockedObject,System.Object)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult"/> instance.
+            </summary>
+            <param name="mockedObject">Proxy.</param>
+            <param name="mockedInstance">Mocked instance.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult.Call``1(``0)">
+            <summary>
+            Get the method options for the call
+            </summary>
+            <param name="ignored">The method call should go here, the return value is ignored</param>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.DelegateTargetInterfaceCreator">
+            <summary>
+            This class is reponsible for taking a delegate and creating a wrapper
+            interface around it, so it can be mocked.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.DelegateTargetInterfaceCreator.moduleScope">
+            <summary>
+            The scope for all the delegate interfaces create by this mock repository.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.DelegateTargetInterfaceCreator.GetDelegateTargetInterface(System.Type)">
+            <summary>
+            Gets a type with an "Invoke" method suitable for use as a target of the
+            specified delegate type.
+            </summary>
+            <param name="delegateType"></param>
+            <returns></returns>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.EventRaiser">
+            <summary>
+            Raise events for all subscribers for an event
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IEventRaiser">
+            <summary>
+            Raise events for all subscribers for an event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IEventRaiser.Raise(System.Object[])">
+            <summary>
+            Raise the event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IEventRaiser.Raise(System.Object,System.EventArgs)">
+            <summary>
+            The most common form for the event handler signature
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.EventRaiser.Create(System.Object,System.String)">
+            <summary>
+             Create an event raiser for the specified event on this instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.EventRaiser.#ctor(Rhino.Mocks.Interfaces.IMockedObject,System.String)">
+            <summary>
+            Creates a new instance of <c>EventRaiser</c>
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.EventRaiser.Raise(System.Object[])">
+            <summary>
+            Raise the event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.EventRaiser.Raise(System.Object,System.EventArgs)">
+            <summary>
+            The most common signature for events
+            Here to allow intellisense to make better guesses about how 
+            it should suggest parameters.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.MethodOptions`1">
+            <summary>
+            Allows to define what would happen when a method 
+            is called.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IMethodOptions`1">
+            <summary>
+            Allows to define what would happen when a method 
+            is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Return(`0)">
+            <summary>
+            Set the return value for the method.
+            </summary>
+            <param name="objToReturn">The object the method will return</param>
+            <returns>IRepeat that defines how many times the method will return this value</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.TentativeReturn">
+            <summary>
+            Allow to override this return value in the future
+            </summary>
+            <returns>IRepeat that defines how many times the method will return this value</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Throw(System.Exception)">
+            <summary>
+            Throws the specified exception when the method is called.
+            </summary>
+            <param name="exception">Exception to throw</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.IgnoreArguments">
+            <summary>
+            Ignores the arguments for this method. Any argument will be matched
+            againt this method.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Constraints(Rhino.Mocks.Constraints.AbstractConstraint[])">
+            <summary>
+            Add constraints for the method's arguments.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback(System.Delegate)">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback(Rhino.Mocks.Delegates.Function{System.Boolean})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``1(Rhino.Mocks.Delegates.Function{System.Boolean,``0})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``2(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``3(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``4(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``5(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``6(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``7(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``8(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``9(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``10(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Do(System.Delegate)">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.WhenCalled(System.Action{Rhino.Mocks.MethodInvocation})">
+            <summary>
+            Set a delegate to be called when the expectation is matched
+            and allow to optionally modify the invocation as needed
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.CallOriginalMethod">
+            <summary>
+            Call the original method on the class, bypassing the mocking layers.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.CallOriginalMethod(Rhino.Mocks.Interfaces.OriginalCallOptions)">
+            <summary>
+            Call the original method on the class, optionally bypassing the mocking layers.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.PropertyBehavior">
+            <summary>
+            Use the property as a simple property, getting/setting the values without
+            causing mock expectations.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.SetPropertyAndIgnoreArgument">
+            <summary>
+            Expect last (property) call as property setting, ignore the argument given
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.SetPropertyWithArgument(`0)">
+            <summary>
+            Expect last (property) call as property setting with a given argument.
+            </summary>
+            <param name="argument"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.GetEventRaiser">
+            <summary>
+            Get an event raiser for the last subscribed event.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.OutRef(System.Object[])">
+            <summary>
+            Set the parameter values for out and ref parameters.
+            This is done using zero based indexing, and _ignoring_ any non out/ref parameter.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Message(System.String)">
+            <summary>
+            Documentation message for the expectation
+            </summary>
+            <param name="documentationMessage">Message</param>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMethodOptions`1.Repeat">
+            <summary>
+            Better syntax to define repeats. 
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IRepeat`1">
+            <summary>
+            Allows to specify the number of time for method calls
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Twice">
+            <summary>
+            Repeat the method twice.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Once">
+            <summary>
+            Repeat the method once.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.AtLeastOnce">
+            <summary>
+            Repeat the method at least once, then repeat as many time as it would like.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Any">
+            <summary>
+            Repeat the method any number of times.
+            This has special affects in that this method would now ignore orderring.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Times(System.Int32,System.Int32)">
+            <summary>
+            Set the range to repeat an action.
+            </summary>
+            <param name="min">Min.</param>
+            <param name="max">Max.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Times(System.Int32)">
+            <summary>
+            Set the amount of times to repeat an action.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Never">
+            <summary>
+            This method must not appear in the replay state.
+            This has special affects in that this method would now ignore orderring.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.#ctor(Rhino.Mocks.MockRepository,Rhino.Mocks.Impl.RecordMockState,Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Interfaces.IMethodOptions`1"/> instance.
+            </summary>
+            <param name="repository">the repository for this expectation</param>
+            <param name="record">the recorder for this proxy</param>
+            <param name="proxy">the proxy for this expectation</param>
+            <param name="expectation">Expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Constraints(Rhino.Mocks.Constraints.AbstractConstraint[])">
+            <summary>
+            Add constraints for the method's arguments.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback(System.Delegate)">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback(Rhino.Mocks.Delegates.Function{System.Boolean})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``1(Rhino.Mocks.Delegates.Function{System.Boolean,``0})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``2(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``3(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``4(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``5(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``6(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``7(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``8(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``9(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``10(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Do(System.Delegate)">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.WhenCalled(System.Action{Rhino.Mocks.MethodInvocation})">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Return(`0)">
+            <summary>
+            Set the return value for the method.
+            </summary>
+            <param name="objToReturn">The object the method will return</param>
+            <returns>IRepeat that defines how many times the method will return this value</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.TentativeReturn">
+            <summary>
+            Set the return value for the method, but allow to override this return value in the future
+            </summary>
+            <returns>IRepeat that defines how many times the method will return this value</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Throw(System.Exception)">
+            <summary>
+            Throws the specified exception when the method is called.
+            </summary>
+            <param name="exception">Exception to throw</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.IgnoreArguments">
+            <summary>
+            Ignores the arguments for this method. Any argument will be matched
+            againt this method.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.CallOriginalMethod">
+            <summary>
+            Call the original method on the class, bypassing the mocking layers.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.CallOriginalMethod(Rhino.Mocks.Interfaces.OriginalCallOptions)">
+            <summary>
+            Call the original method on the class, optionally bypassing the mocking layers
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.PropertyBehavior">
+            <summary>
+            Use the property as a simple property, getting/setting the values without
+            causing mock expectations.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.SetPropertyAndIgnoreArgument">
+            <summary>
+            Expect last (property) call as property setting, ignore the argument given
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.SetPropertyWithArgument(`0)">
+            <summary>
+            Expect last (property) call as property setting with a given argument.
+            </summary>
+            <param name="argument"></param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.GetEventRaiser">
+            <summary>
+            Gets the event raiser for the last event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.OutRef(System.Object[])">
+            <summary>
+            Set the parameter values for out and ref parameters.
+            This is done using zero based indexing, and _ignoring_ any non out/ref parameter.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Twice">
+            <summary>
+            Repeat the method twice.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Once">
+            <summary>
+            Repeat the method once.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.AtLeastOnce">
+            <summary>
+            Repeat the method at least once, then repeat as many time as it would like.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Never">
+            <summary>
+            This method must not appear in the replay state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Message(System.String)">
+            <summary>
+            Documentation message for the expectation
+            </summary>
+            <param name="documentationMessage">Message</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Any">
+            <summary>
+            Repeat the method any number of times.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Times(System.Int32,System.Int32)">
+            <summary>
+            Set the range to repeat an action.
+            </summary>
+            <param name="min">Min.</param>
+            <param name="max">Max.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Times(System.Int32)">
+            <summary>
+            Set the amount of times to repeat an action.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.MethodOptions`1.Repeat">
+            <summary>
+            Better syntax to define repeats. 
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.MockedObjectsEquality">
+            <summary>
+            This class will provide hash code for hashtables without needing
+            to call the GetHashCode() on the object, which may very well be mocked.
+            This class has no state so it is a singelton to avoid creating a lot of objects 
+            that does the exact same thing. See flyweight patterns.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MockedObjectsEquality.GetHashCode(System.Object)">
+            <summary>
+            Get the hash code for a proxy object without calling GetHashCode()
+            on the object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MockedObjectsEquality.Compare(System.Object,System.Object)">
+            <summary>
+            Compares two instances of mocked objects
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.MockedObjectsEquality.Equals(System.Object,System.Object)">
+            <summary>
+            Compare two mocked objects
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.MockedObjectsEquality.NextHashCode">
+            <summary>
+            The next hash code value for a mock object.
+            This is safe for multi threading.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.MockedObjectsEquality.Instance">
+            <summary>
+            The sole instance of <see cref="T:Rhino.Mocks.Impl.MockedObjectsEquality"/>
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.ProxyInstance">
+            <summary>
+            This is a dummy type that is used merely to give DynamicProxy the proxy instance that
+            it needs to create IProxy's types.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IMockedObject">
+            <summary>
+            Interface to find the repository of a mocked object
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.ShouldCallOriginal(System.Reflection.MethodInfo)">
+            <summary>
+            Return true if it should call the original method on the object
+            instead of pass it to the message chain.
+            </summary>
+            <param name="method">The method to call</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.RegisterMethodForCallingOriginal(System.Reflection.MethodInfo)">
+            <summary>
+            Register a method to be called on the object directly
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.RegisterPropertyBehaviorFor(System.Reflection.PropertyInfo)">
+            <summary>
+            Register a property on the object that will behave as a simple property
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.IsPropertyMethod(System.Reflection.MethodInfo)">
+            <summary>
+            Check if the method was registered as a property method.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.HandleProperty(System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Do get/set on the property, according to need.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.HandleEvent(System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Do add/remove on the event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.GetEventSubscribers(System.String)">
+            <summary>
+            Get the subscribers of a spesific event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.GetDeclaringType(System.Reflection.MethodInfo)">
+            <summary>
+            Gets the declaring type of the method, taking into acccount the possible generic 
+            parameters that it was created with.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.ClearState(Rhino.Mocks.BackToRecordOptions)">
+            <summary>
+            Clears the state of the object, remove original calls, property behavior, subscribed events, etc.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.GetCallArgumentsFor(System.Reflection.MethodInfo)">
+            <summary>
+            Get all the method calls arguments that were made against this object with the specificed 
+            method.
+            </summary>
+            <remarks>
+            Only method calls in replay mode are counted
+            </remarks>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMockedObject.MethodCall(System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Records the method call
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockedObject.DependentMocks">
+            <summary>
+            Mocks that are tied to this mock lifestyle
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockedObject.ProxyHash">
+            <summary>
+            The unique hash code of this mock, which is not related
+            to the value of the GetHashCode() call on the object.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockedObject.Repository">
+            <summary>
+            Gets the repository.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockedObject.ImplementedTypes">
+            <summary>
+            Gets the implemented types by this mocked object
+            </summary>
+            <value>The implemented.</value>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockedObject.ConstructorArguments">
+            <summary>
+            Gets or sets the constructor arguments.
+            </summary>
+            <value>The constructor arguments.</value>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMockedObject.MockedObjectInstance">
+            <summary>
+            The mocked instance that this is representing
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.#ctor(Rhino.Mocks.MockRepository,System.Type[])">
+            <summary>
+            Create a new instance of <see cref="T:Rhino.Mocks.Impl.ProxyInstance"/>
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.ShouldCallOriginal(System.Reflection.MethodInfo)">
+            <summary>
+            Return true if it should call the original method on the object
+            instead of pass it to the message chain.
+            </summary>
+            <param name="method">The method to call</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.RegisterMethodForCallingOriginal(System.Reflection.MethodInfo)">
+            <summary>
+            Register a method to be called on the object directly
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.RegisterPropertyBehaviorFor(System.Reflection.PropertyInfo)">
+            <summary>
+            Register a property on the object that will behave as a simple property
+            Return true if there is already a value for the property
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.IsPropertyMethod(System.Reflection.MethodInfo)">
+            <summary>
+            Check if the method was registered as a property method.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.HandleProperty(System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Do get/set on the property, according to need.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.HandleEvent(System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Do add/remove on the event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.GetEventSubscribers(System.String)">
+            <summary>
+            Get the subscribers of a spesific event
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.GetDeclaringType(System.Reflection.MethodInfo)">
+            <summary>
+            Gets the declaring type of the method, taking into acccount the possible generic 
+            parameters that it was created with.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.GetCallArgumentsFor(System.Reflection.MethodInfo)">
+            <summary>
+            Get all the method calls arguments that were made against this object with the specificed
+            method.
+            </summary>
+            <param name="method"></param>
+            <returns></returns>
+            <remarks>
+            Only method calls in replay mode are counted
+            </remarks>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.MethodCall(System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Records the method call
+            </summary>
+            <param name="method"></param>
+            <param name="args"></param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ProxyInstance.ClearState(Rhino.Mocks.BackToRecordOptions)">
+            <summary>
+            Clears the state of the object, remove original calls, property behavior, subscribed events, etc.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ProxyInstance.DependentMocks">
+            <summary>
+            Mocks that are tied to this mock lifestyle
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ProxyInstance.ProxyHash">
+            <summary>
+            The unique hash code of this proxy, which is not related
+            to the value of the GetHashCode() call on the object.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ProxyInstance.Repository">
+            <summary>
+            Gets the repository.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ProxyInstance.ConstructorArguments">
+            <summary>
+            Gets or sets the constructor arguments.
+            </summary>
+            <value>The constructor arguments.</value>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ProxyInstance.MockedObjectInstance">
+            <summary>
+            The mocked instance that this is representing
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.ProxyInstance.ImplementedTypes">
+            <summary>
+            Gets the implemented types by this mocked object
+            </summary>
+            <value>The implemented.</value>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.Range">
+            <summary>
+            Range for expected method calls
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.Range.#ctor(System.Int32,System.Nullable{System.Int32})">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.Range"/> instance.
+            </summary>
+            <param name="min">Min.</param>
+            <param name="max">Max.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.Range.ToString">
+            <summary>
+            Return the string representation of this range.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.Range.Min">
+            <summary>
+            Gets or sets the min.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.Range.Max">
+            <summary>
+            Gets or sets the max.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RecordDynamicMockState">
+            <summary>
+            Records all the expectations for a mock and
+            return a ReplayDynamicMockState when Replay()
+            is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.RecordDynamicMockState"/> instance.
+            </summary>
+            <param name="repository">Repository.</param>
+            <param name="mockedObject">The proxy that generates the method calls</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.DoReplay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.GetDefaultCallCountRangeExpectation">
+            <summary>
+            Get the default call count range expectation
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RecordPartialMockState">
+            <summary>
+            Records all the expectations for a mock and
+            return a ReplayPartialMockState when Replay()
+            is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordPartialMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.RecordDynamicMockState"/> instance.
+            </summary>
+            <param name="repository">Repository.</param>
+            <param name="mockedObject">The proxy that generates the method calls</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordPartialMockState.DoReplay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RecordPartialMockState.BackToRecord">
+            <summary>
+            Gets a mock state that matches the original mock state of the object.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RepeatableOption">
+            <summary>
+            Options for special repeat option
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.RepeatableOption.Normal">
+            <summary>
+            This method can be called only as many times as the IMethodOptions.Expect allows.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.RepeatableOption.Never">
+            <summary>
+            This method should never be called
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.RepeatableOption.Any">
+            <summary>
+            This method can be call any number of times
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.RepeatableOption.OriginalCall">
+            <summary>
+            This method will call the original method
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.RepeatableOption.OriginalCallBypassingMocking">
+            <summary>
+            This method will call the original method, bypassing the mocking layer
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.Impl.RepeatableOption.PropertyBehavior">
+            <summary>
+            This method will simulate simple property behavior
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.ReplayDynamicMockState">
+            <summary>
+            Validate all expectations on a mock and ignores calls to
+            any method that was not setup properly.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayDynamicMockState.#ctor(Rhino.Mocks.Impl.RecordDynamicMockState)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.ReplayDynamicMockState"/> instance.
+            </summary>
+            <param name="previousState">The previous state for this method</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayDynamicMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayDynamicMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.ReplayPartialMockState">
+            <summary>
+            Validate all expectations on a mock and ignores calls to
+            any method that was not setup properly.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayPartialMockState.#ctor(Rhino.Mocks.Impl.RecordPartialMockState)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.ReplayDynamicMockState"/> instance.
+            </summary>
+            <param name="previousState">The previous state for this method</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayPartialMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.ReplayPartialMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.RhinoInterceptor">
+            <summary>
+            Summary description for RhinoInterceptor.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RhinoInterceptor.#ctor(Rhino.Mocks.MockRepository,Rhino.Mocks.Interfaces.IMockedObject)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.Impl.RhinoInterceptor"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.RhinoInterceptor.Intercept(Castle.Core.Interceptor.IInvocation)">
+            <summary>
+            Intercept a method call and direct it to the repository.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.Validate">
+            <summary>
+            Validate arguments for methods
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.Validate.IsNotNull(System.Object,System.String)">
+            <summary>
+            Validate that the passed argument is not null.
+            </summary>
+            <param name="obj">The object to validate</param>
+            <param name="name">The name of the argument</param>
+            <exception cref="T:System.ArgumentNullException">
+            If the obj is null, an ArgumentNullException with the passed name
+            is thrown.
+            </exception>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.Validate.ArgsEqual(System.Object[],System.Object[])">
+            <summary>
+            Validate that the arguments are equal.
+            </summary>
+            <param name="expectedArgs">Expected args.</param>
+            <param name="actualArgs">Actual Args.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.Validate.AreEqual(System.Object,System.Object)">
+            <summary>
+            Validate that the two arguments are equals, including validation for
+            when the arguments are collections, in which case it will validate their values.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.Validate.SafeEquals(System.Object,System.Object)">
+            <summary>
+            This method is safe for use even if any of the objects is a mocked object
+            that override equals.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Impl.VerifiedMockState">
+            <summary>
+            Throw an object already verified when accessed
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.#ctor(Rhino.Mocks.Interfaces.IMockState)">
+            <summary>
+            Create a new instance of VerifiedMockState 
+            </summary>
+            <param name="previous">The previous mock state, used to get the initial record state</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Add a method call for this state' mock.
+            </summary>
+            <param name="invocation">The invocation for this method</param>
+            <param name="method">The method that was called</param>
+            <param name="args">The arguments this method was called with</param>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.Verify">
+            <summary>
+            Verify that this mock expectations have passed.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.Replay">
+            <summary>
+            Verify that we can move to replay state and move 
+            to the reply state.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.BackToRecord">
+            <summary>
+            Gets a mock state that match the original mock state of the object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.GetLastMethodOptions``1">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.SetExceptionToThrowOnVerify(System.Exception)">
+            <summary>
+            Set the exception to throw when Verify is called.
+            This is used to report exception that may have happened but where caught in the code.
+            This way, they are reported anyway when Verify() is called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Impl.VerifiedMockState.NotifyCallOnPropertyBehavior">
+            <summary>
+            not relevant
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.VerifiedMockState.VerifyState">
+            <summary>
+            Gets the matching verify state for this state
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Impl.VerifiedMockState.LastMethodOptions">
+            <summary>
+            Get the options for the last method call
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Interfaces.IMethodRecorder">
+            <summary>
+            Records the actions on all the mocks created by a repository.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.Record(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Records the specified call with the specified args on the mocked object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Get the expectation for this method on this object with this arguments 
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetRepeatableExpectation(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            This check the methods that were setup using the SetupResult.For()
+            or LastCall.Repeat.Any() and that bypass the whole expectation model.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetAllExpectationsForProxyAndMethod(System.Object,System.Reflection.MethodInfo)">
+            <summary>
+            Gets the all expectations for a mocked object and method combination,
+            regardless of the expected arguments / callbacks / contraints.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <param name="method">Method.</param>
+            <returns>List of all relevant expectation</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetAllExpectationsForProxy(System.Object)">
+            <summary>
+            Gets the all expectations for proxy.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <returns>List of all relevant expectation</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.RemoveAllRepeatableExpectationsForProxy(System.Object)">
+            <summary>
+            Removes all the repeatable expectations for proxy.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.ReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Replaces the old expectation with the new expectation for the specified proxy/method pair.
+            This replace ALL expectations that equal to old expectations.
+            </summary>
+            <param name="proxy">Proxy.</param>
+            <param name="method">Method.</param>
+            <param name="oldExpectation">Old expectation.</param>
+            <param name="newExpectation">New expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.AddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Adds the recorder and turn it into the active recorder.
+            </summary>
+            <param name="recorder">Recorder.</param>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.MoveToPreviousRecorder">
+            <summary>
+            Moves to previous recorder.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Gets the recorded expectation or null.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetExpectedCallsMessage">
+            <summary>
+            Gets the next expected calls string.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.MoveToParentReplayer">
+            <summary>
+            Moves to parent recorder.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.AddToRepeatableMethods(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Set the expectation so it can repeat any number of times.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.RemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Removes the expectation from the recorder
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.ClearReplayerToCall(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Clear the replayer to call (and all its chain of replayers)
+            This also removes it from the list of expectations, so it will never be considered again
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Get the expectation for this method on this object with this arguments 
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Interfaces.IMethodRecorder.HasExpectations">
+            <summary>
+            Gets a value indicating whether this instance has expectations that weren't satisfied yet.
+            </summary>
+            <value>
+            	<c>true</c> if this instance has expectations; otherwise, <c>false</c>.
+            </value>
+        </member>
+        <member name="T:Rhino.Mocks.LastCall">
+            <summary>
+            Allows to set various options for the last method call on
+            a specified object.
+            If the method has a return value, it's recommended to use Expect
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.On(System.Object)">
+            <summary>
+            Allows to get an interface to work on the last call.
+            </summary>
+            <param name="mockedInstance">The mocked object</param>
+            <returns>Interface that allows to set options for the last method call on this object</returns>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Return``1(``0)">
+            <summary>
+            Set the return value for the method.
+            </summary>
+            <param name="objToReturn">The object the method will return</param>
+            <returns>IRepeat that defines how many times the method will return this value</returns>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Return(System.Object)">
+            <summary>
+            Set the return value for the method. This overload is needed for LastCall.Return(null)
+            </summary>
+            <param name="objToReturn">The object the method will return</param>
+            <returns>IRepeat that defines how many times the method will return this value</returns>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Throw(System.Exception)">
+            <summary>
+            Throws the specified exception when the method is called.
+            </summary>
+            <param name="exception">Exception to throw</param>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.IgnoreArguments">
+            <summary>
+            Ignores the arguments for this method. Any argument will be matched
+            againt this method.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Constraints(Rhino.Mocks.Constraints.AbstractConstraint[])">
+            <summary>
+            Add constraints for the method's arguments.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback(System.Delegate)">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback(Rhino.Mocks.Delegates.Function{System.Boolean})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``1(Rhino.Mocks.Delegates.Function{System.Boolean,``0})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``2(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``3(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``4(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``5(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``6(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``7(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``8(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``9(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Callback``10(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+            <summary>
+            Set a callback method for the last call
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.CallOriginalMethod">
+            <summary>
+            Call the original method on the class, bypassing the mocking layers, for the last call.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.CallOriginalMethod(Rhino.Mocks.Interfaces.OriginalCallOptions)">
+            <summary>
+            Call the original method on the class, optionally bypassing the mocking layers, for the last call.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Do(System.Delegate)">
+            <summary>
+            Set a delegate to be called when the expectation is matched.
+            The delegate return value will be returned from the expectation.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.GetEventRaiser">
+            <summary>
+            Gets an interface that will raise the last event when called.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.OutRef(System.Object[])">
+            <summary>
+            Set the parameter values for out and ref parameters.
+            This is done using zero based indexing, and _ignoring_ any non out/ref parameter.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.Message(System.String)">
+            <summary>
+            Documentation message for the expectation
+            </summary>
+            <param name="documentationMessage">Message</param>
+        </member>
+        <member name="M:Rhino.Mocks.LastCall.PropertyBehavior">
+            <summary>
+            Use the property as a simple property, getting/setting the values without
+            causing mock expectations.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.LastCall.Repeat">
+            <summary>
+            Better syntax to define repeats. 
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.MethodRecorders.MethodRecorderBase">
+            <summary>
+            Base class for method recorders, handle delegating to inner recorder if needed.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.recordedActions">
+            <summary>
+            List of the expected actions on for this recorder
+            The legal values are:
+            	* Expectations
+            	* Method Recorders
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.recorderToCall">
+            <summary>
+            The current recorder.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.replayerToCall">
+            <summary>
+            The current replayer;
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.parentRecorder">
+            <summary>
+            The parent recorder of this one, may be null.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.replayersToIgnoreForThisCall">
+            <summary>
+            This contains a list of all the replayers that should be ignored
+            for a spesific method call. A replayer gets into this list by calling 
+            ClearReplayerToCall() on its parent. This list is Clear()ed on each new invocation.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.repeatableMethods">
+            <summary>
+            All the repeatable methods calls.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.recursionDepth">
+            <summary>
+            Counts the recursion depth of the current expectation search stack
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.#ctor(Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.MethodRecorderBase"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.#ctor(Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.MethodRecorderBase"/> instance.
+            </summary>
+            <param name="parentRecorder">Parent recorder.</param>
+            <param name="repeatableMethods">Repeatable methods</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.Record(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Records the specified call with the specified args on the mocked object.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Get the expectation for this method on this object with this arguments 
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetAllExpectationsForProxyAndMethod(System.Object,System.Reflection.MethodInfo)">
+            <summary>
+            Gets the all expectations for a mocked object and method combination,
+            regardless of the expected arguments / callbacks / contraints.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <param name="method">Method.</param>
+            <returns>List of all relevant expectation</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetAllExpectationsForProxy(System.Object)">
+            <summary>
+            Gets the all expectations for proxy.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <returns>List of all relevant expectation</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.ReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Replaces the old expectation with the new expectation for the specified proxy/method pair.
+            This replace ALL expectations that equal to old expectations.
+            </summary>
+            <param name="proxy">Proxy.</param>
+            <param name="method">Method.</param>
+            <param name="oldExpectation">Old expectation.</param>
+            <param name="newExpectation">New expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.RemoveAllRepeatableExpectationsForProxy(System.Object)">
+            <summary>
+            Remove the all repeatable expectations for proxy.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.AddToRepeatableMethods(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Set the expectation so it can repeat any number of times.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.RemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Removes the expectation from the recorder
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.AddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Adds the recorder and turn it into the active recorder.
+            </summary>
+            <param name="recorder">Recorder.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.MoveToPreviousRecorder">
+            <summary>
+            Moves to previous recorder.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.MoveToParentReplayer">
+            <summary>
+            Moves to parent recorder.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Gets the recorded expectation or null.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.ClearReplayerToCall(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Clear the replayer to call (and all its chain of replayers).
+            This also removes it from the list of expectations, so it will never be considered again
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Get the expectation for this method on this object with this arguments 
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetExpectedCallsMessage">
+            <summary>
+            Gets the next expected calls string.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoGetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Handles the real getting of the recorded expectation or null.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoRecord(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoGetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoGetAllExpectationsForProxy(System.Object)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoRemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoAddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.ShouldConsiderThisReplayer(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Should this replayer be considered valid for this call?
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetRepeatableExpectation(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            This check the methods that were setup using the SetupResult.For()
+            or LastCall.Repeat.Any() and that bypass the whole expectation model.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.MethodRecorderBase.HasExpectations">
+            <summary>
+            Gets a value indicating whether this instance has expectations that weren't satisfied yet.
+            </summary>
+            <value>
+            	<c>true</c> if this instance has expectations; otherwise, <c>false</c>.
+            </value>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoHasExpectations">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder">
+            <summary>
+            Ordered collection of methods, methods must arrive in specified order
+            in order to pass.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder">
+            <summary>
+            Unordered collection of method records, any expectation that exist
+            will be matched.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.parentRecorderRedirection">
+            <summary>
+            The parent recorder we have redirected to.
+            Useful for certain edge cases in orderring.
+            See: FieldProblem_Entropy for the details.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.#ctor(Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder"/> instance.
+            </summary>
+            <param name="parentRecorder">Parent recorder.</param>
+            <param name="repeatableMethods">Repeatable methods</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.#ctor(Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoRecord(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Records the specified call with the specified args on the mocked object.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <param name="method">Method.</param>
+            <param name="expectation">Expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoGetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Get the expectation for this method on this object with this arguments 
+            </summary>
+            <param name="invocation">Invocation for this method</param>
+            <param name="proxy">Mocked object.</param>
+            <param name="method">Method.</param>
+            <param name="args">Args.</param>
+            <returns>True is the call was recorded, false otherwise</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.GetAllExpectationsForProxyAndMethod(System.Object,System.Reflection.MethodInfo)">
+            <summary>
+            Gets the all expectations for a mocked object and method combination,
+            regardless of the expected arguments / callbacks / contraints.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <param name="method">Method.</param>
+            <returns>List of all relevant expectation</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoGetAllExpectationsForProxy(System.Object)">
+            <summary>
+            Gets the all expectations for proxy.
+            </summary>
+            <param name="proxy">Mocked object.</param>
+            <returns>List of all relevant expectation</returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Replaces the old expectation with the new expectation for the specified proxy/method pair.
+            This replace ALL expectations that equal to old expectations.
+            </summary>
+            <param name="proxy">Proxy.</param>
+            <param name="method">Method.</param>
+            <param name="oldExpectation">Old expectation.</param>
+            <param name="newExpectation">New expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoRemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoGetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Handles the real getting of the recorded expectation or null.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoAddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Handle the real execution of this method for the derived class
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.GetExpectedCallsMessage">
+            <summary>
+            Gets the next expected calls string.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Create an exception for an unexpected method call.
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoHasExpectations">
+            <summary>
+            Gets a value indicating whether this instance has expectations that weren't satisfied yet.
+            </summary>
+            <value>
+            	<c>true</c> if this instance has expectations; otherwise, <c>false</c>.
+            </value>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.#ctor(Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder"/> instance.
+            </summary>
+            <param name="parentRecorder">Parent recorder.</param>
+            <param name="repeatableMethods">Repetable methods</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.#ctor(Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.DoGetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Handles the real getting of the recorded expectation or null.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Get the expectation for this method on this object with this arguments 
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.GetExpectedCallsMessage">
+            <summary>
+            Gets the next expected calls string.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet">
+            <summary>
+            Hold an expectation for a method call on an object
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.#ctor(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet"/> instance.
+            </summary>
+            <param name="proxy">Proxy.</param>
+            <param name="method">Method.</param>
+            <param name="expectation">Expectation.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Equals(System.Object)">
+            <summary>
+            Determines if the object equal to this instance
+            </summary>
+            <param name="obj">Obj.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.GetHashCode">
+            <summary>
+            Gets the hash code.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Proxy">
+            <summary>
+            Gets the proxy.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Method">
+            <summary>
+            Gets the method.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Expectation">
+            <summary>
+            Gets the expectation.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.MethodRecorders.ProxyMethodPair">
+            <summary>
+            Holds a pair of mocked object and a method
+            and allows to compare them against each other.
+            This allows us to have a distinction between mockOne.MyMethod() and
+            mockTwo.MyMethod()...
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodPair.#ctor(System.Object,System.Reflection.MethodInfo)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.ProxyMethodPair"/> instance.
+            </summary>
+            <param name="proxy">Proxy.</param>
+            <param name="method">Method.</param>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodPair.Equals(System.Object)">
+            <summary>
+            Determines whatever obj equals to this instance.
+            ProxyMethodPairs are equal when they point to the same /instance/ of
+            an object, and to the same method.
+            </summary>
+            <param name="obj">Obj.</param>
+            <returns></returns>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodPair.GetHashCode">
+            <summary>
+            Gets the hash code.
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodPair.Proxy">
+            <summary>
+            Gets the proxy.
+            </summary>
+            <value></value>
+        </member>
+        <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodPair.Method">
+            <summary>
+            Gets the method.
+            </summary>
+            <value></value>
+        </member>
+        <member name="T:Rhino.Mocks.MethodRecorders.RecorderChanger">
+            <summary>
+            Change the recorder from ordered to unordered and vice versa
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.RecorderChanger.#ctor(Rhino.Mocks.MockRepository,Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Interfaces.IMethodRecorder)">
+            <summary>
+            Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.RecorderChanger"/> instance.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.MethodRecorders.RecorderChanger.Dispose">
+            <summary>
+            Disposes this instance.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Mocker">
+            <summary>
+            Accessor for the current mocker
+            </summary>
+        </member>
+        <member name="P:Rhino.Mocks.Mocker.Current">
+            <summary>
+            The current mocker
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.RhinoMocks">
+            <summary>
+            Used for [assembly: InternalsVisibleTo(RhinoMocks.StrongName)]
+            Used for [assembly: InternalsVisibleTo(RhinoMocks.NormalName)]
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.RhinoMocks.StrongName">
+            <summary>
+            Strong name for the Dynamic Proxy assemblies. Used for InternalsVisibleTo specification.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.RhinoMocks.NormalName">
+            <summary>
+            Normal name for dynamic proxy assemblies. Used for InternalsVisibleTo specification.
+            </summary>
+        </member>
+        <member name="F:Rhino.Mocks.RhinoMocks.Logger">
+            <summary>
+            Logs all method calls for methods
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.SetupResult">
+            <summary>
+            Setup method calls to repeat any number of times.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.SetupResult.For``1(``0)">
+            <summary>
+            Get the method options and set the last method call to repeat 
+            any number of times.
+            This also means that the method would transcend ordering
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.SetupResult.On(System.Object)">
+            <summary>
+            Get the method options for the last method call on the mockInstance and set it
+            to repeat any number of times.
+            This also means that the method would transcend ordering
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Utilities.MethodCallUtil">
+            <summary>
+            Utility class for working with method calls.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Utilities.MethodCallUtil.StringPresentation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Utilities.MethodCallUtil.FormatArgumnet,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Return the string representation of a method call and its arguments.
+            </summary>
+            <param name="method">The method</param>
+            <param name="args">The method arguments</param>
+            <param name="invocation">Invocation of the method, used to get the generics arguments</param>
+            <param name="format">Delegate to format the parameter</param>
+            <returns>The string representation of this method call</returns>
+        </member>
+        <member name="M:Rhino.Mocks.Utilities.MethodCallUtil.StringPresentation(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
+            <summary>
+            Return the string representation of a method call and its arguments.
+            </summary>
+            <param name="invocation">The invocation of the method, used to get the generic parameters</param>
+            <param name="method">The method</param>
+            <param name="args">The method arguments</param>
+            <returns>The string representation of this method call</returns>
+        </member>
+        <member name="T:Rhino.Mocks.Utilities.MethodCallUtil.FormatArgumnet">
+            <summary>
+            Delegate to format the argument for the string representation of
+            the method call.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Utilities.ReturnValueUtil">
+            <summary>
+            Utility to get the default value for a type
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.Utilities.ReturnValueUtil.DefaultValue(System.Type,Castle.Core.Interceptor.IInvocation)">
+            <summary>
+            The default value for a type.
+            Null for reference types and void
+            0 for value types.
+            First element for enums
+            Note that we need to get the value even for opened generic types, such as those from
+            generic methods.
+            </summary>
+            <param name="type">Type.</param>
+            <param name="invocation">The invocation.</param>
+            <returns>the default value</returns>
+        </member>
+        <member name="T:Rhino.Mocks.With">
+            <summary>
+            Allows easier access to MockRepository, works closely with Mocker.Current to
+            allow access to a context where the mock repository is automatially verified at
+            the end of the code block.
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.With.Mocks(Rhino.Mocks.With.Proc)">
+            <summary>
+            Initialize a code block where Mocker.Current is initialized.
+            At the end of the code block, all the expectation will be verified.
+            This overload will create a new MockRepository.
+            </summary>
+            <param name="methodCallThatHasMocks">The code that will be executed under the mock context</param>
+        </member>
+        <member name="M:Rhino.Mocks.With.Mocks(Rhino.Mocks.MockRepository,Rhino.Mocks.With.Proc)">
+            <summary>
+            Initialize a code block where Mocker.Current is initialized.
+            At the end of the code block, all the expectation will be verified.
+            This overload will create a new MockRepository.
+            </summary>
+            <param name="mocks">The mock repository to use, at the end of the code block, VerifyAll() will be called on the repository.</param>
+            <param name="methodCallThatHasMocks">The code that will be executed under the mock context</param>
+        </member>
+        <member name="M:Rhino.Mocks.With.Mocks(Rhino.Mocks.MockRepository)">
+            <summary>
+            Create a FluentMocker
+            </summary>
+            <param name="mocks">The mock repository to use.</param>
+        </member>
+        <member name="T:Rhino.Mocks.With.Proc">
+            <summary>
+            A method with no arguments and no return value that will be called under the mock context.
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.With.FluentMocker">
+            <summary>
+            FluentMocker implements some kind of fluent interface attempt
+            for saying "With the Mocks [mocks], Expecting (in same order) [things] verify [that]."
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.With.IMockVerifier">
+            <summary>
+            Interface to verify previously defined expectations
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.With.IMockVerifier.Verify(Rhino.Mocks.With.Proc)">
+            <summary>
+            Verifies if a piece of code
+            </summary>
+        </member>
+        <member name="M:Rhino.Mocks.With.FluentMocker.Expecting(Rhino.Mocks.With.Proc)">
+            <summary>
+            Defines unordered expectations
+            </summary>
+            <param name="methodCallsDescribingExpectations">A delegate describing the expectations</param>
+            <returns>an IMockVerifier</returns>
+        </member>
+        <member name="M:Rhino.Mocks.With.FluentMocker.ExpectingInSameOrder(Rhino.Mocks.With.Proc)">
+            <summary>
+            Defines ordered expectations
+            </summary>
+            <param name="methodCallsDescribingExpectations">A delegate describing the expectations</param>
+            <returns>an IMockVerifier</returns>
+        </member>
+        <member name="M:Rhino.Mocks.With.FluentMocker.Verify(Rhino.Mocks.With.Proc)">
+            <summary>
+            Verifies previously defined expectations
+            </summary>
+        </member>
+        <member name="T:Rhino.Mocks.Function`2">
+            <summary>
+            This delegate is compatible with the System.Func{T,R} signature
+            We have to define our own to get compatability with 2.0
+            </summary>
+        </member>
+        <member name="T:__ProtectAttribute">
+            <summary>
+            This attribute is here so we can get better Pex integration
+            Using this means that Pex will not try to inspect the work of 
+            the actual proxies being generated by Rhino Mocks
+            </summary>
+        </member>
+    </members>
+</doc>