You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5624 lines
272 KiB

10 years ago
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Rhino.Mocks</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Rhino.Mocks.Arg`1">
  8. <summary>
  9. Defines constraints and return values for arguments of a mock.
  10. Only use Arg inside a method call on a mock that is recording.
  11. Example:
  12. ExpectCall(
  13. mock.foo(
  14. Arg&lt;int&gt;.Is.GreaterThan(2),
  15. Arg&lt;string&gt;.Is.Anything
  16. ));
  17. Use Arg.Text for string specific constraints
  18. Use Arg&lt;ListClass&gt;.List for list specific constraints
  19. </summary>
  20. <typeparam name="T"></typeparam>
  21. </member>
  22. <member name="M:Rhino.Mocks.Arg`1.Matches(System.Linq.Expressions.Expression{System.Predicate{`0}})">
  23. <summary>
  24. Register the predicate as a constraint for the current call.
  25. </summary>
  26. <param name="predicate">The predicate.</param>
  27. <returns>default(T)</returns>
  28. <example>
  29. Allow you to use code to create constraints
  30. <code>
  31. demo.AssertWasCalled(x => x.Bar(Arg{string}.Matches(a => a.StartsWith("b") &amp;&amp; a.Contains("ba"))));
  32. </code>
  33. </example>
  34. </member>
  35. <member name="M:Rhino.Mocks.Arg`1.Matches(Rhino.Mocks.Constraints.AbstractConstraint)">
  36. <summary>
  37. Define a complex constraint for this argument by passing several constraints
  38. combined with operators. (Use Is in simple cases.)
  39. Example: Arg&lt;string&gt;.Matches(Is.Equal("Hello") || Text.EndsWith("u"));
  40. </summary>
  41. <param name="constraint">Constraints using Is, Text and List</param>
  42. <returns>Dummy to satisfy the compiler</returns>
  43. </member>
  44. <member name="M:Rhino.Mocks.Arg`1.Ref(Rhino.Mocks.Constraints.AbstractConstraint,`0)">
  45. <summary>
  46. Define a Ref argument.
  47. </summary>
  48. <param name="constraint">Constraints for this argument</param>
  49. <param name="returnValue">value returned by the mock</param>
  50. <returns></returns>
  51. </member>
  52. <member name="M:Rhino.Mocks.Arg`1.Out(`0)">
  53. <summary>
  54. Define a out parameter. Use it together with the keyword out and use the
  55. Dummy field available by the return value.
  56. Example: mock.foo( out Arg&lt;string&gt;.Out("hello").Dummy );
  57. </summary>
  58. <param name="returnValue"></param>
  59. <returns></returns>
  60. </member>
  61. <member name="P:Rhino.Mocks.Arg`1.Is">
  62. <summary>
  63. Define a simple constraint for this argument. (Use Matches in simple cases.)
  64. Example:
  65. Arg&lt;int&gt;.Is.Anthing
  66. Arg&lt;string&gt;.Is.Equal("hello")
  67. </summary>
  68. </member>
  69. <member name="P:Rhino.Mocks.Arg`1.List">
  70. <summary>
  71. Define Constraints on list arguments.
  72. </summary>
  73. </member>
  74. <member name="T:Rhino.Mocks.Arg">
  75. <summary>
  76. Use the Arg class (without generic) to define Text constraints
  77. </summary>
  78. </member>
  79. <member name="M:Rhino.Mocks.Arg.Is``1(``0)">
  80. <summary>
  81. Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
  82. </summary>
  83. <param name="arg">The object the parameter should equal to</param>
  84. </member>
  85. <member name="P:Rhino.Mocks.Arg.Text">
  86. <summary>
  87. Define constraints on text arguments.
  88. </summary>
  89. </member>
  90. <member name="T:Rhino.Mocks.ArgManager">
  91. <summary>
  92. Used to manage the static state of the Arg&lt;T&gt; class"/>
  93. </summary>
  94. </member>
  95. <member name="M:Rhino.Mocks.ArgManager.Clear">
  96. <summary>
  97. Resets the static state
  98. </summary>
  99. </member>
  100. <member name="M:Rhino.Mocks.ArgManager.GetAllReturnValues">
  101. <summary>
  102. Returns return values for the out and ref parameters
  103. Note: the array returned has the size of the number of out and ref
  104. argument definitions
  105. </summary>
  106. <returns></returns>
  107. </member>
  108. <member name="M:Rhino.Mocks.ArgManager.GetAllConstraints">
  109. <summary>
  110. Returns the constraints for all arguments.
  111. Out arguments have an Is.Anything constraint and are also in the list.
  112. </summary>
  113. <returns></returns>
  114. </member>
  115. <member name="T:Rhino.Mocks.BackToRecordOptions">
  116. <summary>
  117. What should BackToRecord clear
  118. </summary>
  119. </member>
  120. <member name="F:Rhino.Mocks.BackToRecordOptions.None">
  121. <summary>
  122. Retain all expectations and behaviors and return to mock
  123. </summary>
  124. </member>
  125. <member name="F:Rhino.Mocks.BackToRecordOptions.Expectations">
  126. <summary>
  127. All expectations
  128. </summary>
  129. </member>
  130. <member name="F:Rhino.Mocks.BackToRecordOptions.EventSubscribers">
  131. <summary>
  132. Event subscribers for this instance
  133. </summary>
  134. </member>
  135. <member name="F:Rhino.Mocks.BackToRecordOptions.OriginalMethodsToCall">
  136. <summary>
  137. Methods that should be forwarded to the base class implementation
  138. </summary>
  139. </member>
  140. <member name="F:Rhino.Mocks.BackToRecordOptions.PropertyBehavior">
  141. <summary>
  142. Properties that should behave like properties
  143. </summary>
  144. </member>
  145. <member name="F:Rhino.Mocks.BackToRecordOptions.All">
  146. <summary>
  147. Remove all the behavior of the object
  148. </summary>
  149. </member>
  150. <member name="T:Rhino.Mocks.Constraints.AbstractConstraint">
  151. <summary>
  152. Interface for constraints
  153. </summary>
  154. </member>
  155. <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.Eval(System.Object)">
  156. <summary>
  157. Determines if the object pass the constraints
  158. </summary>
  159. </member>
  160. <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseAnd(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
  161. <summary>
  162. And operator for constraints
  163. </summary>
  164. </member>
  165. <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_LogicalNot(Rhino.Mocks.Constraints.AbstractConstraint)">
  166. <summary>
  167. Not operator for constraints
  168. </summary>
  169. </member>
  170. <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseOr(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
  171. <summary>
  172. Or operator for constraints
  173. </summary>
  174. </member>
  175. <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_False(Rhino.Mocks.Constraints.AbstractConstraint)">
  176. <summary>
  177. Allow overriding of || or &amp;&amp;
  178. </summary>
  179. <param name="c"></param>
  180. <returns></returns>
  181. </member>
  182. <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_True(Rhino.Mocks.Constraints.AbstractConstraint)">
  183. <summary>
  184. Allow overriding of || or &amp;&amp;
  185. </summary>
  186. <param name="c"></param>
  187. <returns></returns>
  188. </member>
  189. <member name="P:Rhino.Mocks.Constraints.AbstractConstraint.Message">
  190. <summary>
  191. Gets the message for this constraint
  192. </summary>
  193. <value></value>
  194. </member>
  195. <member name="T:Rhino.Mocks.Constraints.PublicFieldIs">
  196. <summary>
  197. Constrain that the public field has a specified value
  198. </summary>
  199. </member>
  200. <member name="T:Rhino.Mocks.Constraints.PublicFieldConstraint">
  201. <summary>
  202. Constrain that the public field matches another constraint.
  203. </summary>
  204. </member>
  205. <member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  206. <summary>
  207. Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldConstraint"/> instance.
  208. </summary>
  209. <param name="publicFieldName">Name of the public field.</param>
  210. <param name="constraint">Constraint to place on the public field value.</param>
  211. </member>
  212. <member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  213. <summary>
  214. Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldConstraint"/> instance, specifying a disambiguating
  215. <paramref name="declaringType"/> for the public field.
  216. </summary>
  217. <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
  218. <param name="publicFieldName">Name of the public field.</param>
  219. <param name="constraint">Constraint to place on the public field value.</param>
  220. </member>
  221. <member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.Eval(System.Object)">
  222. <summary>
  223. Determines if the object passes the constraint.
  224. </summary>
  225. </member>
  226. <member name="P:Rhino.Mocks.Constraints.PublicFieldConstraint.Message">
  227. <summary>
  228. Gets the message for this constraint
  229. </summary>
  230. <value></value>
  231. </member>
  232. <member name="M:Rhino.Mocks.Constraints.PublicFieldIs.#ctor(System.String,System.Object)">
  233. <summary>
  234. Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldIs"/> instance.
  235. </summary>
  236. <param name="publicFieldName">Name of the public field.</param>
  237. <param name="expectedValue">Expected value.</param>
  238. </member>
  239. <member name="M:Rhino.Mocks.Constraints.PublicFieldIs.#ctor(System.Type,System.String,System.Object)">
  240. <summary>
  241. Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldIs"/> instance, specifying a disambiguating
  242. <paramref name="declaringType"/> for the public field.
  243. </summary>
  244. <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
  245. <param name="publicFieldName">Name of the public field.</param>
  246. <param name="expectedValue">Expected value.</param>
  247. </member>
  248. <member name="T:Rhino.Mocks.Constraints.PropertyIs">
  249. <summary>
  250. Constrain that the property has a specified value
  251. </summary>
  252. </member>
  253. <member name="T:Rhino.Mocks.Constraints.PropertyConstraint">
  254. <summary>
  255. Constrain that the property matches another constraint.
  256. </summary>
  257. </member>
  258. <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  259. <summary>
  260. Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance.
  261. </summary>
  262. <param name="propertyName">Name of the property.</param>
  263. <param name="constraint">Constraint to place on the property value.</param>
  264. </member>
  265. <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  266. <summary>
  267. Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance, specifying a disambiguating
  268. <paramref name="declaringType"/> for the property.
  269. </summary>
  270. <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
  271. <param name="propertyName">Name of the property.</param>
  272. <param name="constraint">Constraint to place on the property value.</param>
  273. </member>
  274. <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.Eval(System.Object)">
  275. <summary>
  276. Determines if the object passes the constraint.
  277. </summary>
  278. </member>
  279. <member name="P:Rhino.Mocks.Constraints.PropertyConstraint.Message">
  280. <summary>
  281. Gets the message for this constraint
  282. </summary>
  283. <value></value>
  284. </member>
  285. <member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.String,System.Object)">
  286. <summary>
  287. Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance.
  288. </summary>
  289. <param name="propertyName">Name of the property.</param>
  290. <param name="expectedValue">Expected value.</param>
  291. </member>
  292. <member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.Type,System.String,System.Object)">
  293. <summary>
  294. Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance, specifying a disambiguating
  295. <paramref name="declaringType"/> for the property.
  296. </summary>
  297. <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
  298. <param name="propertyName">Name of the property.</param>
  299. <param name="expectedValue">Expected value.</param>
  300. </member>
  301. <member name="T:Rhino.Mocks.Constraints.TypeOf">
  302. <summary>
  303. Constrain that the parameter must be of the specified type
  304. </summary>
  305. </member>
  306. <member name="M:Rhino.Mocks.Constraints.TypeOf.#ctor(System.Type)">
  307. <summary>
  308. Creates a new <see cref="T:Rhino.Mocks.Constraints.TypeOf"/> instance.
  309. </summary>
  310. <param name="type">Type.</param>
  311. </member>
  312. <member name="M:Rhino.Mocks.Constraints.TypeOf.Eval(System.Object)">
  313. <summary>
  314. Determines if the object pass the constraints
  315. </summary>
  316. </member>
  317. <member name="P:Rhino.Mocks.Constraints.TypeOf.Message">
  318. <summary>
  319. Gets the message for this constraint
  320. </summary>
  321. <value></value>
  322. </member>
  323. <member name="T:Rhino.Mocks.Constraints.Same">
  324. <summary>
  325. Constraint that determines whether an object is the same object as another.
  326. </summary>
  327. </member>
  328. <member name="M:Rhino.Mocks.Constraints.Same.#ctor(System.Object)">
  329. <summary>
  330. Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
  331. </summary>
  332. <param name="obj">Obj.</param>
  333. </member>
  334. <member name="M:Rhino.Mocks.Constraints.Same.Eval(System.Object)">
  335. <summary>
  336. Determines if the object passes the constraints.
  337. </summary>
  338. </member>
  339. <member name="P:Rhino.Mocks.Constraints.Same.Message">
  340. <summary>
  341. Gets the message for this constraint.
  342. </summary>
  343. </member>
  344. <member name="T:Rhino.Mocks.Constraints.PredicateConstraint`1">
  345. <summary>
  346. Evaluate a parameter using constraints
  347. </summary>
  348. </member>
  349. <member name="M:Rhino.Mocks.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
  350. <summary>
  351. Create new instance
  352. </summary>
  353. <param name="predicate"></param>
  354. </member>
  355. <member name="M:Rhino.Mocks.Constraints.PredicateConstraint`1.Eval(System.Object)">
  356. <summary>
  357. Determines if the object pass the constraints
  358. </summary>
  359. </member>
  360. <member name="P:Rhino.Mocks.Constraints.PredicateConstraint`1.Message">
  361. <summary>
  362. Gets the message for this constraint
  363. </summary>
  364. <value></value>
  365. </member>
  366. <member name="T:Rhino.Mocks.Constraints.LambdaConstraint">
  367. <summary>
  368. A constraint based on lambda expression, we are using Expression{T}
  369. because we want to be able to get good error reporting on that.
  370. </summary>
  371. </member>
  372. <member name="M:Rhino.Mocks.Constraints.LambdaConstraint.#ctor(System.Linq.Expressions.LambdaExpression)">
  373. <summary>
  374. Initializes a new instance of the <see cref="T:Rhino.Mocks.Constraints.LambdaConstraint"/> class.
  375. </summary>
  376. <param name="expr">The expr.</param>
  377. </member>
  378. <member name="M:Rhino.Mocks.Constraints.LambdaConstraint.Eval(System.Object)">
  379. <summary>
  380. Determines if the object pass the constraints
  381. </summary>
  382. <param name="obj"></param>
  383. <returns></returns>
  384. </member>
  385. <member name="P:Rhino.Mocks.Constraints.LambdaConstraint.Message">
  386. <summary>
  387. Gets the message for this constraint
  388. </summary>
  389. <value></value>
  390. </member>
  391. <member name="T:Rhino.Mocks.Constraints.CollectionEqual">
  392. <summary>
  393. Constrain that the list contains the same items as the parameter list
  394. </summary>
  395. </member>
  396. <member name="M:Rhino.Mocks.Constraints.CollectionEqual.#ctor(System.Collections.IEnumerable)">
  397. <summary>
  398. Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionEqual"/> instance.
  399. </summary>
  400. <param name="collection">In list.</param>
  401. </member>
  402. <member name="M:Rhino.Mocks.Constraints.CollectionEqual.Eval(System.Object)">
  403. <summary>
  404. Determines if the object pass the constraints
  405. </summary>
  406. </member>
  407. <member name="P:Rhino.Mocks.Constraints.CollectionEqual.Message">
  408. <summary>
  409. Gets the message for this constraint
  410. </summary>
  411. <value></value>
  412. </member>
  413. <member name="T:Rhino.Mocks.Constraints.OneOf">
  414. <summary>
  415. Constrain that the parameter is one of the items in the list
  416. </summary>
  417. </member>
  418. <member name="M:Rhino.Mocks.Constraints.OneOf.#ctor(System.Collections.IEnumerable)">
  419. <summary>
  420. Creates a new <see cref="T:Rhino.Mocks.Constraints.OneOf"/> instance.
  421. </summary>
  422. <param name="collection">In list.</param>
  423. </member>
  424. <member name="M:Rhino.Mocks.Constraints.OneOf.Eval(System.Object)">
  425. <summary>
  426. Determines if the object pass the constraints
  427. </summary>
  428. </member>
  429. <member name="P:Rhino.Mocks.Constraints.OneOf.Message">
  430. <summary>
  431. Gets the message for this constraint
  432. </summary>
  433. <value></value>
  434. </member>
  435. <member name="T:Rhino.Mocks.Constraints.IsIn">
  436. <summary>
  437. Constrain that the object is inside the parameter list
  438. </summary>
  439. </member>
  440. <member name="M:Rhino.Mocks.Constraints.IsIn.#ctor(System.Object)">
  441. <summary>
  442. Creates a new <see cref="T:Rhino.Mocks.Constraints.IsIn"/> instance.
  443. </summary>
  444. <param name="inList">In list.</param>
  445. </member>
  446. <member name="M:Rhino.Mocks.Constraints.IsIn.Eval(System.Object)">
  447. <summary>
  448. Determines if the object pass the constraints
  449. </summary>
  450. </member>
  451. <member name="P:Rhino.Mocks.Constraints.IsIn.Message">
  452. <summary>
  453. Gets the message for this constraint
  454. </summary>
  455. <value></value>
  456. </member>
  457. <member name="T:Rhino.Mocks.Constraints.CollectionCount">
  458. <summary>
  459. Applies another AbstractConstraint to the collection count.
  460. </summary>
  461. </member>
  462. <member name="M:Rhino.Mocks.Constraints.CollectionCount.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
  463. <summary>
  464. Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionCount"/> instance.
  465. </summary>
  466. <param name="constraint">The constraint that should be applied to the collection count.</param>
  467. </member>
  468. <member name="M:Rhino.Mocks.Constraints.CollectionCount.Eval(System.Object)">
  469. <summary>
  470. Determines if the parameter conforms to this constraint.
  471. </summary>
  472. </member>
  473. <member name="P:Rhino.Mocks.Constraints.CollectionCount.Message">
  474. <summary>
  475. Gets the message for this constraint.
  476. </summary>
  477. </member>
  478. <member name="T:Rhino.Mocks.Constraints.ListElement">
  479. <summary>
  480. Applies another AbstractConstraint to a specific list element.
  481. </summary>
  482. </member>
  483. <member name="M:Rhino.Mocks.Constraints.ListElement.#ctor(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
  484. <summary>
  485. Creates a new <see cref="T:Rhino.Mocks.Constraints.ListElement"/> instance.
  486. </summary>
  487. <param name="index">The zero-based index of the list element.</param>
  488. <param name="constraint">The constraint that should be applied to the list element.</param>
  489. </member>
  490. <member name="M:Rhino.Mocks.Constraints.ListElement.Eval(System.Object)">
  491. <summary>
  492. Determines if the parameter conforms to this constraint.
  493. </summary>
  494. </member>
  495. <member name="P:Rhino.Mocks.Constraints.ListElement.Message">
  496. <summary>
  497. Gets the message for this constraint
  498. </summary>
  499. <value></value>
  500. </member>
  501. <member name="T:Rhino.Mocks.Constraints.KeyedListElement`1">
  502. <summary>
  503. Applies another AbstractConstraint to a specific generic keyed list element.
  504. </summary>
  505. </member>
  506. <member name="M:Rhino.Mocks.Constraints.KeyedListElement`1.#ctor(`0,Rhino.Mocks.Constraints.AbstractConstraint)">
  507. <summary>
  508. Creates a new <see cref="T:KeyedListElement"/> instance.
  509. </summary>
  510. <param name="key">The key of the list element.</param>
  511. <param name="constraint">The constraint that should be applied to the list element.</param>
  512. </member>
  513. <member name="M:Rhino.Mocks.Constraints.KeyedListElement`1.Eval(System.Object)">
  514. <summary>
  515. Determines if the parameter conforms to this constraint.
  516. </summary>
  517. </member>
  518. <member name="P:Rhino.Mocks.Constraints.KeyedListElement`1.Message">
  519. <summary>
  520. Gets the message for this constraint
  521. </summary>
  522. <value></value>
  523. </member>
  524. <member name="T:Rhino.Mocks.Constraints.ContainsAll">
  525. <summary>
  526. Constrains that all elements are in the parameter list
  527. </summary>
  528. </member>
  529. <member name="M:Rhino.Mocks.Constraints.ContainsAll.#ctor(System.Collections.IEnumerable)">
  530. <summary>
  531. Initializes a new instance of the <see cref="T:Rhino.Mocks.Constraints.ContainsAll"/> class.
  532. </summary>
  533. <param name="these">The these.</param>
  534. </member>
  535. <member name="M:Rhino.Mocks.Constraints.ContainsAll.Eval(System.Object)">
  536. <summary>
  537. Determines if the object pass the constraints
  538. </summary>
  539. <param name="obj"></param>
  540. <returns></returns>
  541. </member>
  542. <member name="P:Rhino.Mocks.Constraints.ContainsAll.Message">
  543. <summary>
  544. Gets the message for this constraint
  545. </summary>
  546. <value></value>
  547. </member>
  548. <member name="T:Rhino.Mocks.Constraints.Or">
  549. <summary>
  550. Combines two constraints, constraint pass if either is fine.
  551. </summary>
  552. </member>
  553. <member name="M:Rhino.Mocks.Constraints.Or.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
  554. <summary>
  555. Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
  556. </summary>
  557. <param name="c1">C1.</param>
  558. <param name="c2">C2.</param>
  559. </member>
  560. <member name="M:Rhino.Mocks.Constraints.Or.Eval(System.Object)">
  561. <summary>
  562. Determines if the object pass the constraints
  563. </summary>
  564. </member>
  565. <member name="P:Rhino.Mocks.Constraints.Or.Message">
  566. <summary>
  567. Gets the message for this constraint
  568. </summary>
  569. <value></value>
  570. </member>
  571. <member name="T:Rhino.Mocks.Constraints.Not">
  572. <summary>
  573. Negate a constraint
  574. </summary>
  575. </member>
  576. <member name="M:Rhino.Mocks.Constraints.Not.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
  577. <summary>
  578. Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
  579. </summary>
  580. <param name="c1">C1.</param>
  581. </member>
  582. <member name="M:Rhino.Mocks.Constraints.Not.Eval(System.Object)">
  583. <summary>
  584. Determines if the object pass the constraints
  585. </summary>
  586. </member>
  587. <member name="P:Rhino.Mocks.Constraints.Not.Message">
  588. <summary>
  589. Gets the message for this constraint
  590. </summary>
  591. <value></value>
  592. </member>
  593. <member name="T:Rhino.Mocks.Constraints.And">
  594. <summary>
  595. Combines two constraints
  596. </summary>
  597. <remarks></remarks>
  598. </member>
  599. <member name="M:Rhino.Mocks.Constraints.And.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
  600. <summary>
  601. Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
  602. </summary>
  603. <param name="c1">C1.</param>
  604. <param name="c2">C2.</param>
  605. </member>
  606. <member name="M:Rhino.Mocks.Constraints.And.Eval(System.Object)">
  607. <summary>
  608. Determines if the object pass the constraints
  609. </summary>
  610. </member>
  611. <member name="P:Rhino.Mocks.Constraints.And.Message">
  612. <summary>
  613. Gets the message for this constraint
  614. </summary>
  615. <value></value>
  616. </member>
  617. <member name="T:Rhino.Mocks.Constraints.Like">
  618. <summary>
  619. Constrain the argument to validate according to regex pattern
  620. </summary>
  621. </member>
  622. <member name="M:Rhino.Mocks.Constraints.Like.#ctor(System.String)">
  623. <summary>
  624. Creates a new <see cref="T:Rhino.Mocks.Constraints.Like"/> instance.
  625. </summary>
  626. <param name="pattern">Pattern.</param>
  627. </member>
  628. <member name="M:Rhino.Mocks.Constraints.Like.Eval(System.Object)">
  629. <summary>
  630. Determines if the object pass the constraints
  631. </summary>
  632. </member>
  633. <member name="P:Rhino.Mocks.Constraints.Like.Message">
  634. <summary>
  635. Gets the message for this constraint
  636. </summary>
  637. <value></value>
  638. </member>
  639. <member name="T:Rhino.Mocks.Constraints.Contains">
  640. <summary>
  641. Constraint that evaluate whatever an argument contains the specified string.
  642. </summary>
  643. </member>
  644. <member name="M:Rhino.Mocks.Constraints.Contains.#ctor(System.String)">
  645. <summary>
  646. Creates a new <see cref="T:Rhino.Mocks.Constraints.Contains"/> instance.
  647. </summary>
  648. <param name="innerString">Inner string.</param>
  649. </member>
  650. <member name="M:Rhino.Mocks.Constraints.Contains.Eval(System.Object)">
  651. <summary>
  652. Determines if the object pass the constraints
  653. </summary>
  654. </member>
  655. <member name="P:Rhino.Mocks.Constraints.Contains.Message">
  656. <summary>
  657. Gets the message for this constraint
  658. </summary>
  659. <value></value>
  660. </member>
  661. <member name="T:Rhino.Mocks.Constraints.EndsWith">
  662. <summary>
  663. Constraint that evaluate whatever an argument ends with the specified string
  664. </summary>
  665. </member>
  666. <member name="M:Rhino.Mocks.Constraints.EndsWith.#ctor(System.String)">
  667. <summary>
  668. Creates a new <see cref="T:Rhino.Mocks.Constraints.EndsWith"/> instance.
  669. </summary>
  670. <param name="end">End.</param>
  671. </member>
  672. <member name="M:Rhino.Mocks.Constraints.EndsWith.Eval(System.Object)">
  673. <summary>
  674. Determines if the object pass the constraints
  675. </summary>
  676. </member>
  677. <member name="P:Rhino.Mocks.Constraints.EndsWith.Message">
  678. <summary>
  679. Gets the message for this constraint
  680. </summary>
  681. <value></value>
  682. </member>
  683. <member name="T:Rhino.Mocks.Constraints.StartsWith">
  684. <summary>
  685. Constraint that evaluate whatever an argument start with the specified string
  686. </summary>
  687. </member>
  688. <member name="M:Rhino.Mocks.Constraints.StartsWith.#ctor(System.String)">
  689. <summary>
  690. Creates a new <see cref="T:Rhino.Mocks.Constraints.StartsWith"/> instance.
  691. </summary>
  692. <param name="start">Start.</param>
  693. </member>
  694. <member name="M:Rhino.Mocks.Constraints.StartsWith.Eval(System.Object)">
  695. <summary>
  696. Determines if the object pass the constraints
  697. </summary>
  698. </member>
  699. <member name="P:Rhino.Mocks.Constraints.StartsWith.Message">
  700. <summary>
  701. Gets the message for this constraint
  702. </summary>
  703. <value></value>
  704. </member>
  705. <member name="T:Rhino.Mocks.Constraints.Equal">
  706. <summary>
  707. Constraint that evaluate whatever an object equals another
  708. </summary>
  709. </member>
  710. <member name="M:Rhino.Mocks.Constraints.Equal.#ctor(System.Object)">
  711. <summary>
  712. Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
  713. </summary>
  714. <param name="obj">Obj.</param>
  715. </member>
  716. <member name="M:Rhino.Mocks.Constraints.Equal.Eval(System.Object)">
  717. <summary>
  718. Determines if the object pass the constraints
  719. </summary>
  720. </member>
  721. <member name="P:Rhino.Mocks.Constraints.Equal.Message">
  722. <summary>
  723. Gets the message for this constraint
  724. </summary>
  725. <value></value>
  726. </member>
  727. <member name="T:Rhino.Mocks.Constraints.Anything">
  728. <summary>
  729. Constraint that always returns true
  730. </summary>
  731. </member>
  732. <member name="M:Rhino.Mocks.Constraints.Anything.Eval(System.Object)">
  733. <summary>
  734. Determines if the object pass the constraints
  735. </summary>
  736. </member>
  737. <member name="P:Rhino.Mocks.Constraints.Anything.Message">
  738. <summary>
  739. Gets the message for this constraint
  740. </summary>
  741. <value></value>
  742. </member>
  743. <member name="T:Rhino.Mocks.Constraints.ComparingConstraint">
  744. <summary>
  745. Constraint that evaluate whatever a comparable is greater than another
  746. </summary>
  747. </member>
  748. <member name="M:Rhino.Mocks.Constraints.ComparingConstraint.#ctor(System.IComparable,System.Boolean,System.Boolean)">
  749. <summary>
  750. Creates a new <see cref="T:Rhino.Mocks.Constraints.ComparingConstraint"/> instance.
  751. </summary>
  752. </member>
  753. <member name="M:Rhino.Mocks.Constraints.ComparingConstraint.Eval(System.Object)">
  754. <summary>
  755. Determines if the object pass the constraints
  756. </summary>
  757. </member>
  758. <member name="P:Rhino.Mocks.Constraints.ComparingConstraint.Message">
  759. <summary>
  760. Gets the message for this constraint
  761. </summary>
  762. <value></value>
  763. </member>
  764. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.#ctor(System.Object)">
  765. <summary>
  766. Initializes a new constraint object.
  767. </summary>
  768. <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>
  769. </member>
  770. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Eval(System.Object)">
  771. <summary>
  772. Evaluate this constraint.
  773. </summary>
  774. <param name="obj">The actual object that was passed in the method call to the mock.</param>
  775. <returns>True when the constraint is met, else false.</returns>
  776. </member>
  777. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckReferenceType(System.Object,System.Object)">
  778. <summary>
  779. Checks if the properties of the <paramref name="actual"/> object
  780. are the same as the properies of the <paramref name="expected"/> object.
  781. </summary>
  782. <param name="expected">The expected object</param>
  783. <param name="actual">The actual object</param>
  784. <returns>True when both objects have the same values, else False.</returns>
  785. </member>
  786. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckValue(System.Object,System.Object)">
  787. <summary>
  788. </summary>
  789. <param name="expected"></param>
  790. <param name="actual"></param>
  791. <returns></returns>
  792. <remarks>This is the real heart of the beast.</remarks>
  793. </member>
  794. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckProperties(System.Object,System.Object)">
  795. <summary>
  796. Used by CheckReferenceType to check all properties of the reference type.
  797. </summary>
  798. <param name="expected">The expected object</param>
  799. <param name="actual">The actual object</param>
  800. <returns>True when both objects have the same values, else False.</returns>
  801. </member>
  802. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckFields(System.Object,System.Object)">
  803. <summary>
  804. Used by CheckReferenceType to check all fields of the reference type.
  805. </summary>
  806. <param name="expected">The expected object</param>
  807. <param name="actual">The actual object</param>
  808. <returns>True when both objects have the same values, else False.</returns>
  809. </member>
  810. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckCollection(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  811. <summary>
  812. Checks the items of both collections
  813. </summary>
  814. <param name="expectedCollection">The expected collection</param>
  815. <param name="actualCollection"></param>
  816. <returns>True if both collections contain the same items in the same order.</returns>
  817. </member>
  818. <member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.BuildPropertyName">
  819. <summary>
  820. Builds a propertyname from the Stack _properties like 'Order.Product.Price'
  821. to be used in the error message.
  822. </summary>
  823. <returns>A nested property name.</returns>
  824. </member>
  825. <member name="P:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Message">
  826. <summary>
  827. Rhino.Mocks uses this property to generate an error message.
  828. </summary>
  829. <value>
  830. A message telling the tester why the constraint failed.
  831. </value>
  832. </member>
  833. <member name="T:Rhino.Mocks.Constraints.IsArg`1">
  834. <summary>
  835. Provides access to the constraintes defined in the class <see cref="T:Rhino.Mocks.Constraints.Is"/> to be used in context
  836. with the <see cref="T:Rhino.Mocks.Arg`1"/> syntax.
  837. </summary>
  838. <typeparam name="T">The type of the argument</typeparam>
  839. </member>
  840. <member name="M:Rhino.Mocks.Constraints.IsArg`1.GreaterThan(System.IComparable)">
  841. <summary>
  842. Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
  843. </summary>
  844. <param name="objToCompare">The object the parameter should be greater than</param>
  845. </member>
  846. <member name="M:Rhino.Mocks.Constraints.IsArg`1.LessThan(System.IComparable)">
  847. <summary>
  848. Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
  849. </summary>
  850. <param name="objToCompare">The object the parameter should be less than</param>
  851. </member>
  852. <member name="M:Rhino.Mocks.Constraints.IsArg`1.LessThanOrEqual(System.IComparable)">
  853. <summary>
  854. Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
  855. </summary>
  856. <param name="objToCompare">The object the parameter should be less than or equal to</param>
  857. </member>
  858. <member name="M:Rhino.Mocks.Constraints.IsArg`1.GreaterThanOrEqual(System.IComparable)">
  859. <summary>
  860. Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
  861. </summary>
  862. <param name="objToCompare">The object the parameter should be greater than or equal to</param>
  863. </member>
  864. <member name="M:Rhino.Mocks.Constraints.IsArg`1.Equal(System.Object)">
  865. <summary>
  866. Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
  867. </summary>
  868. <param name="obj">The object the parameter should equal to</param>
  869. </member>
  870. <member name="M:Rhino.Mocks.Constraints.IsArg`1.ConvertObjectTypeToMatch(System.IComparable)">
  871. <summary>
  872. Converts the <see cref="T:System.IComparable"/>object type to a better match if this is a primitive type.
  873. </summary>
  874. <param name="obj">The obj.</param>
  875. <returns></returns>
  876. </member>
  877. <member name="M:Rhino.Mocks.Constraints.IsArg`1.ConvertObjectTypeToMatch(System.Object)">
  878. <summary>
  879. Converts the object type to match.
  880. </summary>
  881. <remarks>
  882. Because of implicit conversions and the way ArgConstraints this method is needed to check
  883. object type and potentially change the object type for a better "match" so that obj1.Equals(obj2)
  884. will return the proper "answer"
  885. </remarks>
  886. <param name="obj">The obj.</param>
  887. <returns></returns>
  888. </member>
  889. <member name="M:Rhino.Mocks.Constraints.IsArg`1.NotEqual(System.Object)">
  890. <summary>
  891. Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
  892. </summary>
  893. <param name="obj">The object the parameter should not equal to</param>
  894. </member>
  895. <member name="M:Rhino.Mocks.Constraints.IsArg`1.Same(System.Object)">
  896. <summary>
  897. Evaluate a same as constraint.
  898. </summary>
  899. <param name="obj">The object the parameter should the same as.</param>
  900. </member>
  901. <member name="M:Rhino.Mocks.Constraints.IsArg`1.NotSame(System.Object)">
  902. <summary>
  903. Evaluate a not same as constraint.
  904. </summary>
  905. <param name="obj">The object the parameter should not be the same as.</param>
  906. </member>
  907. <member name="M:Rhino.Mocks.Constraints.IsArg`1.Equals(System.Object)">
  908. <summary>
  909. Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
  910. </summary>
  911. <param name="obj"></param>
  912. <returns></returns>
  913. </member>
  914. <member name="M:Rhino.Mocks.Constraints.IsArg`1.GetHashCode">
  915. <summary>
  916. Serves as a hash function for a particular type.
  917. </summary>
  918. <returns>
  919. A hash code for the current <see cref="T:System.Object"/>.
  920. </returns>
  921. </member>
  922. <member name="P:Rhino.Mocks.Constraints.IsArg`1.Anything">
  923. <summary>
  924. A constraints that accept anything
  925. </summary>
  926. <returns></returns>
  927. </member>
  928. <member name="P:Rhino.Mocks.Constraints.IsArg`1.Null">
  929. <summary>
  930. A constraint that accept only nulls
  931. </summary>
  932. <returns></returns>
  933. </member>
  934. <member name="P:Rhino.Mocks.Constraints.IsArg`1.NotNull">
  935. <summary>
  936. A constraint that accept only non null values
  937. </summary>
  938. <returns></returns>
  939. </member>
  940. <member name="P:Rhino.Mocks.Constraints.IsArg`1.TypeOf">
  941. <summary>
  942. A constraint that accept only value of the specified type.
  943. The check is performed on the type that has been defined
  944. as the argument type.
  945. </summary>
  946. </member>
  947. <member name="T:Rhino.Mocks.Constraints.ListArg`1">
  948. <summary>
  949. Provides access to the constraints defined in the class <see cref="T:Rhino.Mocks.Constraints.Text"/> to be used in context
  950. with the <see cref="T:Rhino.Mocks.Arg`1"/> syntax.
  951. </summary>
  952. </member>
  953. <member name="M:Rhino.Mocks.Constraints.ListArg`1.IsIn(System.Object)">
  954. <summary>
  955. Determines whether the specified object is in the parameter.
  956. The parameter must be IEnumerable.
  957. </summary>
  958. <param name="obj">Obj.</param>
  959. <returns></returns>
  960. </member>
  961. <member name="M:Rhino.Mocks.Constraints.ListArg`1.OneOf(System.Collections.IEnumerable)">
  962. <summary>
  963. Determines whatever the parameter is in the collection.
  964. </summary>
  965. </member>
  966. <member name="M:Rhino.Mocks.Constraints.ListArg`1.Equal(System.Collections.IEnumerable)">
  967. <summary>
  968. Determines that the parameter collection is identical to the specified collection
  969. </summary>
  970. </member>
  971. <member name="M:Rhino.Mocks.Constraints.ListArg`1.Count(Rhino.Mocks.Constraints.AbstractConstraint)">
  972. <summary>
  973. Determines that the parameter collection has the specified number of elements.
  974. </summary>
  975. <param name="constraint">The constraint that should be applied to the collection count.</param>
  976. </member>
  977. <member name="M:Rhino.Mocks.Constraints.ListArg`1.Element(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
  978. <summary>
  979. Determines that an element of the parameter collections conforms to another AbstractConstraint.
  980. </summary>
  981. <param name="index">The zero-based index of the list element.</param>
  982. <param name="constraint">The constraint which should be applied to the list element.</param>
  983. </member>
  984. <member name="M:Rhino.Mocks.Constraints.ListArg`1.ContainsAll(System.Collections.IEnumerable)">
  985. <summary>
  986. Determines that all elements of the specified collection are in the the parameter collection
  987. </summary>
  988. <param name="collection">The collection to compare against</param>
  989. <returns>The constraint which should be applied to the list parameter.</returns>
  990. </member>
  991. <member name="M:Rhino.Mocks.Constraints.ListArg`1.Equals(System.Object)">
  992. <summary>
  993. Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
  994. </summary>
  995. <param name="obj"></param>
  996. <returns></returns>
  997. </member>
  998. <member name="M:Rhino.Mocks.Constraints.ListArg`1.GetHashCode">
  999. <summary>
  1000. Serves as a hash function for a particular type.
  1001. </summary>
  1002. <returns>
  1003. A hash code for the current <see cref="T:System.Object"/>.
  1004. </returns>
  1005. </member>
  1006. <member name="T:Rhino.Mocks.Constraints.OutRefArgDummy`1">
  1007. <summary>
  1008. Provides a dummy field to pass as out or ref argument.
  1009. </summary>
  1010. <typeparam name="T"></typeparam>
  1011. </member>
  1012. <member name="F:Rhino.Mocks.Constraints.OutRefArgDummy`1.Dummy">
  1013. <summary>
  1014. Dummy field to satisfy the compiler. Used for out and ref arguments.
  1015. </summary>
  1016. </member>
  1017. <member name="T:Rhino.Mocks.Constraints.PublicField">
  1018. <summary>
  1019. Central location for constraints for object's public fields
  1020. </summary>
  1021. </member>
  1022. <member name="M:Rhino.Mocks.Constraints.PublicField.Value(System.String,System.Object)">
  1023. <summary>
  1024. Constrains the parameter to have a public field with the specified value
  1025. </summary>
  1026. <param name="publicFieldName">Name of the public field.</param>
  1027. <param name="expectedValue">Expected value.</param>
  1028. <returns></returns>
  1029. </member>
  1030. <member name="M:Rhino.Mocks.Constraints.PublicField.Value(System.Type,System.String,System.Object)">
  1031. <summary>
  1032. Constrains the parameter to have a public field with the specified value.
  1033. </summary>
  1034. <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
  1035. <param name="publicFieldName">Name of the public field.</param>
  1036. <param name="expectedValue">Expected value.</param>
  1037. <returns></returns>
  1038. </member>
  1039. <member name="M:Rhino.Mocks.Constraints.PublicField.ValueConstraint(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  1040. <summary>
  1041. Constrains the parameter to have a public field satisfying a specified constraint.
  1042. </summary>
  1043. <param name="publicFieldName">Name of the public field.</param>
  1044. <param name="publicFieldConstraint">Constraint for the public field.</param>
  1045. </member>
  1046. <member name="M:Rhino.Mocks.Constraints.PublicField.ValueConstraint(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  1047. <summary>
  1048. Constrains the parameter to have a public field satisfying a specified constraint.
  1049. </summary>
  1050. <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
  1051. <param name="publicFieldName">Name of the public field.</param>
  1052. <param name="publicFieldConstraint">Constraint for the public field.</param>
  1053. </member>
  1054. <member name="M:Rhino.Mocks.Constraints.PublicField.IsNull(System.String)">
  1055. <summary>
  1056. Determines whether the parameter has the specified public field and that it is null.
  1057. </summary>
  1058. <param name="publicFieldName">Name of the public field.</param>
  1059. <returns></returns>
  1060. </member>
  1061. <member name="M:Rhino.Mocks.Constraints.PublicField.IsNull(System.Type,System.String)">
  1062. <summary>
  1063. Determines whether the parameter has the specified public field and that it is null.
  1064. </summary>
  1065. <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
  1066. <param name="publicFieldName">Name of the public field.</param>
  1067. <returns></returns>
  1068. </member>
  1069. <member name="M:Rhino.Mocks.Constraints.PublicField.IsNotNull(System.String)">
  1070. <summary>
  1071. Determines whether the parameter has the specified public field and that it is not null.
  1072. </summary>
  1073. <param name="publicFieldName">Name of the public field.</param>
  1074. <returns></returns>
  1075. </member>
  1076. <member name="M:Rhino.Mocks.Constraints.PublicField.IsNotNull(System.Type,System.String)">
  1077. <summary>
  1078. Determines whether the parameter has the specified public field and that it is not null.
  1079. </summary>
  1080. <param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
  1081. <param name="publicFieldName">Name of the public field.</param>
  1082. <returns></returns>
  1083. </member>
  1084. <member name="T:Rhino.Mocks.Constraints.Is">
  1085. <summary>
  1086. Central location for constraints
  1087. </summary>
  1088. </member>
  1089. <member name="M:Rhino.Mocks.Constraints.Is.GreaterThan(System.IComparable)">
  1090. <summary>
  1091. Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
  1092. </summary>
  1093. <param name="objToCompare">The object the parameter should be greater than</param>
  1094. </member>
  1095. <member name="M:Rhino.Mocks.Constraints.Is.LessThan(System.IComparable)">
  1096. <summary>
  1097. Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
  1098. </summary>
  1099. <param name="objToCompare">The object the parameter should be less than</param>
  1100. </member>
  1101. <member name="M:Rhino.Mocks.Constraints.Is.LessThanOrEqual(System.IComparable)">
  1102. <summary>
  1103. Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
  1104. </summary>
  1105. <param name="objToCompare">The object the parameter should be less than or equal to</param>
  1106. </member>
  1107. <member name="M:Rhino.Mocks.Constraints.Is.GreaterThanOrEqual(System.IComparable)">
  1108. <summary>
  1109. Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
  1110. </summary>
  1111. <param name="objToCompare">The object the parameter should be greater than or equal to</param>
  1112. </member>
  1113. <member name="M:Rhino.Mocks.Constraints.Is.Equal(System.Object)">
  1114. <summary>
  1115. Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
  1116. </summary>
  1117. <param name="obj">The object the parameter should equal to</param>
  1118. </member>
  1119. <member name="M:Rhino.Mocks.Constraints.Is.NotEqual(System.Object)">
  1120. <summary>
  1121. Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
  1122. </summary>
  1123. <param name="obj">The object the parameter should not equal to</param>
  1124. </member>
  1125. <member name="M:Rhino.Mocks.Constraints.Is.Same(System.Object)">
  1126. <summary>
  1127. Evaluate a same as constraint.
  1128. </summary>
  1129. <param name="obj">The object the parameter should the same as.</param>
  1130. </member>
  1131. <member name="M:Rhino.Mocks.Constraints.Is.NotSame(System.Object)">
  1132. <summary>
  1133. Evaluate a not same as constraint.
  1134. </summary>
  1135. <param name="obj">The object the parameter should not be the same as.</param>
  1136. </member>
  1137. <member name="M:Rhino.Mocks.Constraints.Is.Anything">
  1138. <summary>
  1139. A constraints that accept anything
  1140. </summary>
  1141. <returns></returns>
  1142. </member>
  1143. <member name="M:Rhino.Mocks.Constraints.Is.Null">
  1144. <summary>
  1145. A constraint that accept only nulls
  1146. </summary>
  1147. <returns></returns>
  1148. </member>
  1149. <member name="M:Rhino.Mocks.Constraints.Is.NotNull">
  1150. <summary>
  1151. A constraint that accept only non null values
  1152. </summary>
  1153. <returns></returns>
  1154. </member>
  1155. <member name="M:Rhino.Mocks.Constraints.Is.TypeOf(System.Type)">
  1156. <summary>
  1157. A constraint that accept only value of the specified type
  1158. </summary>
  1159. </member>
  1160. <member name="M:Rhino.Mocks.Constraints.Is.TypeOf``1">
  1161. <summary>
  1162. A constraint that accept only value of the specified type
  1163. </summary>
  1164. </member>
  1165. <member name="M:Rhino.Mocks.Constraints.Is.Matching``1(System.Predicate{``0})">
  1166. <summary>
  1167. Evaluate a parameter using a predicate
  1168. </summary>
  1169. <param name="predicate">The predicate to use</param>
  1170. </member>
  1171. <member name="T:Rhino.Mocks.Constraints.List">
  1172. <summary>
  1173. Central location for constraints about lists and collections
  1174. </summary>
  1175. </member>
  1176. <member name="M:Rhino.Mocks.Constraints.List.IsIn(System.Object)">
  1177. <summary>
  1178. Determines whether the specified obj is in the parameter.
  1179. The parameter must be IEnumerable.
  1180. </summary>
  1181. <param name="obj">Obj.</param>
  1182. <returns></returns>
  1183. </member>
  1184. <member name="M:Rhino.Mocks.Constraints.List.OneOf(System.Collections.IEnumerable)">
  1185. <summary>
  1186. Determines whatever the parameter is in the collection.
  1187. </summary>
  1188. </member>
  1189. <member name="M:Rhino.Mocks.Constraints.List.Equal(System.Collections.IEnumerable)">
  1190. <summary>
  1191. Determines that the parameter collection is identical to the specified collection
  1192. </summary>
  1193. </member>
  1194. <member name="M:Rhino.Mocks.Constraints.List.Count(Rhino.Mocks.Constraints.AbstractConstraint)">
  1195. <summary>
  1196. Determines that the parameter collection has the specified number of elements.
  1197. </summary>
  1198. <param name="constraint">The constraint that should be applied to the collection count.</param>
  1199. </member>
  1200. <member name="M:Rhino.Mocks.Constraints.List.Element(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
  1201. <summary>
  1202. Determines that an element of the parameter collections conforms to another AbstractConstraint.
  1203. </summary>
  1204. <param name="index">The zero-based index of the list element.</param>
  1205. <param name="constraint">The constraint which should be applied to the list element.</param>
  1206. </member>
  1207. <member name="M:Rhino.Mocks.Constraints.List.Element``1(``0,Rhino.Mocks.Constraints.AbstractConstraint)">
  1208. <summary>
  1209. Determines that an element of the parameter collections conforms to another AbstractConstraint.
  1210. </summary>
  1211. <param name="key">The key of the element.</param>
  1212. <param name="constraint">The constraint which should be applied to the element.</param>
  1213. </member>
  1214. <member name="M:Rhino.Mocks.Constraints.List.ContainsAll(System.Collections.IEnumerable)">
  1215. <summary>
  1216. Determines that all elements of the specified collection are in the the parameter collection
  1217. </summary>
  1218. <param name="collection">The collection to compare against</param>
  1219. <returns>The constraint which should be applied to the list parameter.</returns>
  1220. </member>
  1221. <member name="T:Rhino.Mocks.Constraints.Property">
  1222. <summary>
  1223. Central location for constraints for object's properties
  1224. </summary>
  1225. </member>
  1226. <member name="M:Rhino.Mocks.Constraints.Property.Value(System.String,System.Object)">
  1227. <summary>
  1228. Constrains the parameter to have property with the specified value
  1229. </summary>
  1230. <param name="propertyName">Name of the property.</param>
  1231. <param name="expectedValue">Expected value.</param>
  1232. <returns></returns>
  1233. </member>
  1234. <member name="M:Rhino.Mocks.Constraints.Property.Value(System.Type,System.String,System.Object)">
  1235. <summary>
  1236. Constrains the parameter to have property with the specified value.
  1237. </summary>
  1238. <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
  1239. <param name="propertyName">Name of the property.</param>
  1240. <param name="expectedValue">Expected value.</param>
  1241. <returns></returns>
  1242. </member>
  1243. <member name="M:Rhino.Mocks.Constraints.Property.ValueConstraint(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  1244. <summary>
  1245. Constrains the parameter to have a property satisfying a specified constraint.
  1246. </summary>
  1247. <param name="propertyName">Name of the property.</param>
  1248. <param name="propertyConstraint">Constraint for the property.</param>
  1249. </member>
  1250. <member name="M:Rhino.Mocks.Constraints.Property.ValueConstraint(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
  1251. <summary>
  1252. Constrains the parameter to have a property satisfying a specified constraint.
  1253. </summary>
  1254. <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
  1255. <param name="propertyName">Name of the property.</param>
  1256. <param name="propertyConstraint">Constraint for the property.</param>
  1257. </member>
  1258. <member name="M:Rhino.Mocks.Constraints.Property.IsNull(System.String)">
  1259. <summary>
  1260. Determines whether the parameter has the specified property and that it is null.
  1261. </summary>
  1262. <param name="propertyName">Name of the property.</param>
  1263. <returns></returns>
  1264. </member>
  1265. <member name="M:Rhino.Mocks.Constraints.Property.IsNull(System.Type,System.String)">
  1266. <summary>
  1267. Determines whether the parameter has the specified property and that it is null.
  1268. </summary>
  1269. <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
  1270. <param name="propertyName">Name of the property.</param>
  1271. <returns></returns>
  1272. </member>
  1273. <member name="M:Rhino.Mocks.Constraints.Property.IsNotNull(System.String)">
  1274. <summary>
  1275. Determines whether the parameter has the specified property and that it is not null.
  1276. </summary>
  1277. <param name="propertyName">Name of the property.</param>
  1278. <returns></returns>
  1279. </member>
  1280. <member name="M:Rhino.Mocks.Constraints.Property.IsNotNull(System.Type,System.String)">
  1281. <summary>
  1282. Determines whether the parameter has the specified property and that it is not null.
  1283. </summary>
  1284. <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
  1285. <param name="propertyName">Name of the property.</param>
  1286. <returns></returns>
  1287. </member>
  1288. <member name="M:Rhino.Mocks.Constraints.Property.AllPropertiesMatch(System.Object)">
  1289. <summary>
  1290. constraints the parameter to have the exact same property values as the expected object.
  1291. </summary>
  1292. <param name="expected">An object, of the same type as the parameter, whose properties are set with the expected values.</param>
  1293. <returns>An instance of the constraint that will do the actual check.</returns>
  1294. <remarks>
  1295. The parameter's public property values and public field values will be matched against the expected object's
  1296. public property values and public field values. The first mismatch will be reported and no further matching is done.
  1297. The matching is recursive for any property or field that has properties or fields of it's own.
  1298. Collections are supported through IEnumerable, which means the constraint will check if the actual and expected
  1299. collection contain the same values in the same order, where the values contained by the collection can have properties
  1300. and fields of their own that will be checked as well because of the recursive nature of this constraint.
  1301. </remarks>
  1302. </member>
  1303. <member name="T:Rhino.Mocks.Constraints.Text">
  1304. <summary>
  1305. Central location for all text related constraints
  1306. </summary>
  1307. </member>
  1308. <member name="M:Rhino.Mocks.Constraints.Text.StartsWith(System.String)">
  1309. <summary>
  1310. Constrain the argument to starts with the specified string
  1311. </summary>
  1312. </member>
  1313. <member name="M:Rhino.Mocks.Constraints.Text.EndsWith(System.String)">
  1314. <summary>
  1315. Constrain the argument to end with the specified string
  1316. </summary>
  1317. </member>
  1318. <member name="M:Rhino.Mocks.Constraints.Text.Contains(System.String)">
  1319. <summary>
  1320. Constrain the argument to contain the specified string
  1321. </summary>
  1322. </member>
  1323. <member name="M:Rhino.Mocks.Constraints.Text.Like(System.String)">
  1324. <summary>
  1325. Constrain the argument to validate according to regex pattern
  1326. </summary>
  1327. </member>
  1328. <member name="T:Rhino.Mocks.Constraints.TextArg">
  1329. <summary>
  1330. Provides access to the constraintes defined in the class <see cref="T:Rhino.Mocks.Constraints.Text"/> to be used in context
  1331. with the <see cref="T:Rhino.Mocks.Arg"/> syntax.
  1332. </summary>
  1333. </member>
  1334. <member name="M:Rhino.Mocks.Constraints.TextArg.StartsWith(System.String)">
  1335. <summary>
  1336. Constrain the argument to starts with the specified string
  1337. </summary>
  1338. <returns></returns>
  1339. </member>
  1340. <member name="M:Rhino.Mocks.Constraints.TextArg.EndsWith(System.String)">
  1341. <summary>
  1342. Constrain the argument to end with the specified string
  1343. </summary>
  1344. </member>
  1345. <member name="M:Rhino.Mocks.Constraints.TextArg.Contains(System.String)">
  1346. <summary>
  1347. Constrain the argument to contain the specified string
  1348. </summary>
  1349. </member>
  1350. <member name="M:Rhino.Mocks.Constraints.TextArg.Like(System.String)">
  1351. <summary>
  1352. Constrain the argument to validate according to regex pattern
  1353. </summary>
  1354. </member>
  1355. <member name="M:Rhino.Mocks.Constraints.TextArg.Equals(System.Object)">
  1356. <summary>
  1357. Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
  1358. </summary>
  1359. <param name="obj"></param>
  1360. <returns></returns>
  1361. </member>
  1362. <member name="M:Rhino.Mocks.Constraints.TextArg.GetHashCode">
  1363. <summary>
  1364. Serves as a hash function for a particular type.
  1365. </summary>
  1366. <returns>
  1367. A hash code for the current <see cref="T:System.Object"/>.
  1368. </returns>
  1369. </member>
  1370. <member name="T:Rhino.Mocks.Delegates">
  1371. <summary>
  1372. This class defines a lot of method signatures, which we will use
  1373. to allow compatability on net-2.0
  1374. </summary>
  1375. </member>
  1376. <member name="T:Rhino.Mocks.Delegates.Action">
  1377. <summary>
  1378. dummy
  1379. </summary>
  1380. </member>
  1381. <member name="T:Rhino.Mocks.Delegates.Function`1">
  1382. <summary>
  1383. dummy
  1384. </summary>
  1385. </member>
  1386. <member name="T:Rhino.Mocks.Delegates.Function`2">
  1387. <summary>
  1388. dummy
  1389. </summary>
  1390. </member>
  1391. <member name="T:Rhino.Mocks.Delegates.Action`2">
  1392. <summary>
  1393. dummy
  1394. </summary>
  1395. </member>
  1396. <member name="T:Rhino.Mocks.Delegates.Function`3">
  1397. <summary>
  1398. dummy
  1399. </summary>
  1400. </member>
  1401. <member name="T:Rhino.Mocks.Delegates.Action`3">
  1402. <summary>
  1403. dummy
  1404. </summary>
  1405. </member>
  1406. <member name="T:Rhino.Mocks.Delegates.Function`4">
  1407. <summary>
  1408. dummy
  1409. </summary>
  1410. </member>
  1411. <member name="T:Rhino.Mocks.Delegates.Action`4">
  1412. <summary>
  1413. dummy
  1414. </summary>
  1415. </member>
  1416. <member name="T:Rhino.Mocks.Delegates.Function`5">
  1417. <summary>
  1418. dummy
  1419. </summary>
  1420. </member>
  1421. <member name="T:Rhino.Mocks.Delegates.Action`5">
  1422. <summary>
  1423. dummy
  1424. </summary>
  1425. </member>
  1426. <member name="T:Rhino.Mocks.Delegates.Function`6">
  1427. <summary>
  1428. dummy
  1429. </summary>
  1430. </member>
  1431. <member name="T:Rhino.Mocks.Delegates.Action`6">
  1432. <summary>
  1433. dummy
  1434. </summary>
  1435. <summary>
  1436. dummy
  1437. </summary>
  1438. </member>
  1439. <member name="T:Rhino.Mocks.Delegates.Function`7">
  1440. <summary>
  1441. dummy
  1442. </summary>
  1443. </member>
  1444. <member name="T:Rhino.Mocks.Delegates.Action`7">
  1445. <summary>
  1446. dummy
  1447. </summary>
  1448. </member>
  1449. <member name="T:Rhino.Mocks.Delegates.Function`8">
  1450. <summary>
  1451. dummy
  1452. </summary>
  1453. </member>
  1454. <member name="T:Rhino.Mocks.Delegates.Action`8">
  1455. <summary>
  1456. dummy
  1457. </summary>
  1458. </member>
  1459. <member name="T:Rhino.Mocks.Delegates.Function`9">
  1460. <summary>
  1461. dummy
  1462. </summary>
  1463. </member>
  1464. <member name="T:Rhino.Mocks.Delegates.Action`9">
  1465. <summary>
  1466. dummy
  1467. </summary>
  1468. </member>
  1469. <member name="T:Rhino.Mocks.Delegates.Function`10">
  1470. <summary>
  1471. dummy
  1472. </summary>
  1473. </member>
  1474. <member name="T:Rhino.Mocks.Delegates.Action`10">
  1475. <summary>
  1476. dummy
  1477. </summary>
  1478. </member>
  1479. <member name="T:Rhino.Mocks.Delegates.Function`11">
  1480. <summary>
  1481. dummy
  1482. </summary>
  1483. </member>
  1484. <member name="T:Rhino.Mocks.DoNotExpect">
  1485. <summary>
  1486. Allows expectations to be set on methods that should never be called.
  1487. For methods with void return value, you need to use LastCall or
  1488. DoNotExpect.Call() with a delegate.
  1489. </summary>
  1490. </member>
  1491. <member name="M:Rhino.Mocks.DoNotExpect.Call(System.Object)">
  1492. <summary>
  1493. Sets LastCall.Repeat.Never() on /any/ proxy on /any/ repository on the current thread.
  1494. This method if not safe for multi threading scenarios.
  1495. </summary>
  1496. </member>
  1497. <member name="M:Rhino.Mocks.DoNotExpect.Call(Rhino.Mocks.Expect.Action)">
  1498. <summary>
  1499. Accepts a delegate that will execute inside the method which
  1500. LastCall.Repeat.Never() will be applied to.
  1501. It is expected to be used with anonymous delegates / lambda expressions and only one
  1502. method should be called.
  1503. </summary>
  1504. <example>
  1505. IService mockSrv = mocks.CreateMock(typeof(IService)) as IService;
  1506. DoNotExpect.Call(delegate{ mockSrv.Stop(); });
  1507. ...
  1508. </example>
  1509. </member>
  1510. <member name="T:Rhino.Mocks.Exceptions.ExpectationViolationException">
  1511. <summary>
  1512. An expectaton violation was detected.
  1513. </summary>
  1514. </member>
  1515. <member name="M:Rhino.Mocks.Exceptions.ExpectationViolationException.#ctor(System.String)">
  1516. <summary>
  1517. Creates a new <see cref="T:Rhino.Mocks.Exceptions.ExpectationViolationException"/> instance.
  1518. </summary>
  1519. <param name="message">Message.</param>
  1520. </member>
  1521. <member name="M:Rhino.Mocks.Exceptions.ExpectationViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  1522. <summary>
  1523. Serialization constructor
  1524. </summary>
  1525. </member>
  1526. <member name="T:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException">
  1527. <summary>
  1528. Signals that an object was call on a mock repository which doesn't
  1529. belong to this mock repository or not a mock
  1530. </summary>
  1531. </member>
  1532. <member name="M:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException.#ctor(System.String)">
  1533. <summary>
  1534. Creates a new <see cref="T:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException"/> instance.
  1535. </summary>
  1536. <param name="message">Message.</param>
  1537. </member>
  1538. <member name="M:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  1539. <summary>
  1540. Serialization constructor
  1541. </summary>
  1542. </member>
  1543. <member name="T:Rhino.Mocks.Expect">
  1544. <summary>
  1545. Allows to set expectation on methods that has return values.
  1546. For methods with void return value, you need to use LastCall
  1547. </summary>
  1548. </member>
  1549. <member name="M:Rhino.Mocks.Expect.Call``1(``0)">
  1550. <summary>
  1551. The method options for the last call on /any/ proxy on /any/ repository on the current thread.
  1552. This method if not safe for multi threading scenarios, use <see cref="M:Rhino.Mocks.Expect.On(System.Object)"/>.
  1553. </summary>
  1554. </member>
  1555. <member name="M:Rhino.Mocks.Expect.Call(Rhino.Mocks.Expect.Action)">
  1556. <summary>
  1557. Accepts a delegate that will execute inside the method, and then return the resulting
  1558. <see cref="T:Rhino.Mocks.Interfaces.IMethodOptions`1"/> instance.
  1559. It is expected to be used with anonymous delegates / lambda expressions and only one
  1560. method should be called.
  1561. </summary>
  1562. <example>
  1563. IService mockSrv = mocks.CreateMock(typeof(IService)) as IService;
  1564. Expect.Call(delegate{ mockSrv.Start(); }).Throw(new NetworkException());
  1565. ...
  1566. </example>
  1567. </member>
  1568. <member name="M:Rhino.Mocks.Expect.On(System.Object)">
  1569. <summary>
  1570. Get the method options for the last method call on the mockInstance.
  1571. </summary>
  1572. </member>
  1573. <member name="T:Rhino.Mocks.Expect.Action">
  1574. <summary>
  1575. A delegate that can be used to get better syntax on Expect.Call(delegate { foo.DoSomething(); });
  1576. </summary>
  1577. </member>
  1578. <member name="T:Rhino.Mocks.Expectations.AbstractExpectation">
  1579. <summary>
  1580. Abstract class that holds common information for
  1581. expectations.
  1582. </summary>
  1583. </member>
  1584. <member name="T:Rhino.Mocks.Interfaces.IExpectation">
  1585. <summary>
  1586. Interface to validate that a method call is correct.
  1587. </summary>
  1588. </member>
  1589. <member name="M:Rhino.Mocks.Interfaces.IExpectation.IsExpected(System.Object[])">
  1590. <summary>
  1591. Validate the arguments for the method.
  1592. This method can be called numerous times, so be careful about side effects
  1593. </summary>
  1594. <param name="args">The arguments with which the method was called</param>
  1595. </member>
  1596. <member name="M:Rhino.Mocks.Interfaces.IExpectation.AddActualCall">
  1597. <summary>
  1598. Add an actual method call to this expectation
  1599. </summary>
  1600. </member>
  1601. <member name="M:Rhino.Mocks.Interfaces.IExpectation.ReturnOrThrow(Castle.Core.Interceptor.IInvocation,System.Object[])">
  1602. <summary>
  1603. Returns the return value or throw the exception and setup any output / ref parameters
  1604. that has been set.
  1605. </summary>
  1606. </member>
  1607. <member name="M:Rhino.Mocks.Interfaces.IExpectation.BuildVerificationFailureMessage">
  1608. <summary>
  1609. Builds the verification failure message.
  1610. </summary>
  1611. <returns></returns>
  1612. </member>
  1613. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ErrorMessage">
  1614. <summary>
  1615. Gets the error message.
  1616. </summary>
  1617. <value></value>
  1618. </member>
  1619. <member name="P:Rhino.Mocks.Interfaces.IExpectation.Expected">
  1620. <summary>
  1621. Range of expected calls
  1622. </summary>
  1623. </member>
  1624. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActualCallsCount">
  1625. <summary>
  1626. Number of call actually made for this method
  1627. </summary>
  1628. </member>
  1629. <member name="P:Rhino.Mocks.Interfaces.IExpectation.CanAcceptCalls">
  1630. <summary>
  1631. If this expectation is still waiting for calls.
  1632. </summary>
  1633. </member>
  1634. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ReturnValue">
  1635. <summary>
  1636. The return value for a method matching this expectation
  1637. </summary>
  1638. </member>
  1639. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ExceptionToThrow">
  1640. <summary>
  1641. Gets or sets the exception to throw on a method matching this expectation.
  1642. </summary>
  1643. </member>
  1644. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActionsSatisfied">
  1645. <summary>
  1646. Gets a value indicating whether this instance's action is staisfied.
  1647. A staisfied instance means that there are no more requirements from
  1648. this method. A method with non void return value must register either
  1649. a return value or an exception to throw.
  1650. </summary>
  1651. </member>
  1652. <member name="P:Rhino.Mocks.Interfaces.IExpectation.Method">
  1653. <summary>
  1654. Gets the method this expectation is for.
  1655. </summary>
  1656. </member>
  1657. <member name="P:Rhino.Mocks.Interfaces.IExpectation.RepeatableOption">
  1658. <summary>
  1659. Gets or sets what special condtions there are for this method
  1660. repeating.
  1661. </summary>
  1662. </member>
  1663. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ExpectationSatisfied">
  1664. <summary>
  1665. Gets a value indicating whether this expectation was satisfied
  1666. </summary>
  1667. </member>
  1668. <member name="P:Rhino.Mocks.Interfaces.IExpectation.HasReturnValue">
  1669. <summary>
  1670. Specify whatever this expectation has a return value set
  1671. You can't check ReturnValue for this because a valid return value include null.
  1672. </summary>
  1673. </member>
  1674. <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActionToExecute">
  1675. <summary>
  1676. An action to execute when the method is matched.
  1677. </summary>
  1678. </member>
  1679. <member name="P:Rhino.Mocks.Interfaces.IExpectation.OutRefParams">
  1680. <summary>
  1681. Set the out / ref parameters for the method call.
  1682. The indexing is zero based and ignores any non out/ref parameter.
  1683. It is possible not to pass all the parameters. This method can be called only once.
  1684. </summary>
  1685. </member>
  1686. <member name="P:Rhino.Mocks.Interfaces.IExpectation.Message">
  1687. <summary>
  1688. Documentation Message
  1689. </summary>
  1690. </member>
  1691. <member name="P:Rhino.Mocks.Interfaces.IExpectation.Originalinvocation">
  1692. <summary>
  1693. Gets the invocation for this expectation
  1694. </summary>
  1695. <value>The invocation.</value>
  1696. </member>
  1697. <member name="E:Rhino.Mocks.Interfaces.IExpectation.WhenCalled">
  1698. <summary>
  1699. Occurs when the exceptation is match on a method call
  1700. </summary>
  1701. </member>
  1702. <member name="P:Rhino.Mocks.Interfaces.IExpectation.AllowTentativeReturn">
  1703. <summary>
  1704. Allow to set the return value in the future, if it was already set.
  1705. </summary>
  1706. </member>
  1707. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.actualCallsCount">
  1708. <summary>
  1709. Number of actuall calls made that passed this expectation
  1710. </summary>
  1711. </member>
  1712. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.expected">
  1713. <summary>
  1714. Range of expected calls that should pass this expectation.
  1715. </summary>
  1716. </member>
  1717. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.returnValue">
  1718. <summary>
  1719. The return value for a method matching this expectation
  1720. </summary>
  1721. </member>
  1722. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.exceptionToThrow">
  1723. <summary>
  1724. The exception to throw on a method matching this expectation.
  1725. </summary>
  1726. </member>
  1727. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.method">
  1728. <summary>
  1729. The method this expectation is for.
  1730. </summary>
  1731. </member>
  1732. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.returnValueSet">
  1733. <summary>
  1734. The return value for this method was set
  1735. </summary>
  1736. </member>
  1737. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.repeatableOption">
  1738. <summary>
  1739. Whether this method will repeat
  1740. unlimited number of times.
  1741. </summary>
  1742. </member>
  1743. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.actionToExecute">
  1744. <summary>
  1745. A delegate that will be run when the
  1746. expectation is matched.
  1747. </summary>
  1748. </member>
  1749. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.matchingArgs">
  1750. <summary>
  1751. The arguments that matched this expectation.
  1752. </summary>
  1753. </member>
  1754. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.message">
  1755. <summary>
  1756. Documentation message
  1757. </summary>
  1758. </member>
  1759. <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.originalInvocation">
  1760. <summary>
  1761. The method originalInvocation
  1762. </summary>
  1763. </member>
  1764. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.GetHashCode">
  1765. <summary>
  1766. Get the hash code
  1767. </summary>
  1768. </member>
  1769. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.AddActualCall">
  1770. <summary>
  1771. Add an actual actualMethodCall call to this expectation
  1772. </summary>
  1773. </member>
  1774. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.BuildVerificationFailureMessage">
  1775. <summary>
  1776. Builds the verification failure message.
  1777. </summary>
  1778. <returns></returns>
  1779. </member>
  1780. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.ReturnOrThrow(Castle.Core.Interceptor.IInvocation,System.Object[])">
  1781. <summary>
  1782. Returns the return value or throw the exception and setup output / ref parameters
  1783. </summary>
  1784. </member>
  1785. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.IsExpected(System.Object[])">
  1786. <summary>
  1787. Validate the arguments for the method on the child methods
  1788. </summary>
  1789. <param name="args">The arguments with which the method was called</param>
  1790. </member>
  1791. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.#ctor(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Impl.Range)">
  1792. <summary>
  1793. Creates a new <see cref="T:Rhino.Mocks.Expectations.AbstractExpectation"/> instance.
  1794. </summary>
  1795. <param name="invocation">The originalInvocation for this method, required because it contains the generic type infromation</param>
  1796. <param name="expectedRange">Number of method calls for this expectations</param>
  1797. </member>
  1798. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation)">
  1799. <summary>
  1800. Creates a new <see cref="T:Rhino.Mocks.Expectations.AbstractExpectation"/> instance.
  1801. </summary>
  1802. <param name="expectation">Expectation.</param>
  1803. </member>
  1804. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.DoIsExpected(System.Object[])">
  1805. <summary>
  1806. Validate the arguments for the method on the child methods
  1807. </summary>
  1808. <param name="args">The arguments with which the method was called</param>
  1809. </member>
  1810. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.Equals(System.Object)">
  1811. <summary>
  1812. Determines if this object equal to obj
  1813. </summary>
  1814. </member>
  1815. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.CreateErrorMessage(System.String)">
  1816. <summary>
  1817. The error message for these arguments
  1818. </summary>
  1819. </member>
  1820. <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.AssertDelegateArgumentsMatchMethod(System.Delegate)">
  1821. <summary>
  1822. Asserts that the delegate has the same parameters as the expectation's method call
  1823. </summary>
  1824. </member>
  1825. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.OutRefParams">
  1826. <summary>
  1827. Setter for the outpur / ref parameters for this expecataion.
  1828. Can only be set once.
  1829. </summary>
  1830. </member>
  1831. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.HasReturnValue">
  1832. <summary>
  1833. Specify whether this expectation has a return value set
  1834. You can't check ReturnValue for this because a valid return value include null.
  1835. </summary>
  1836. </member>
  1837. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Method">
  1838. <summary>
  1839. Gets the method this expectation is for.
  1840. </summary>
  1841. </member>
  1842. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Originalinvocation">
  1843. <summary>
  1844. Gets the originalInvocation for this expectation
  1845. </summary>
  1846. <value>The originalInvocation.</value>
  1847. </member>
  1848. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.RepeatableOption">
  1849. <summary>
  1850. Gets or sets what special condtions there are for this method
  1851. </summary>
  1852. </member>
  1853. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Expected">
  1854. <summary>
  1855. Range of expected calls
  1856. </summary>
  1857. </member>
  1858. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActualCallsCount">
  1859. <summary>
  1860. Number of call actually made for this method
  1861. </summary>
  1862. </member>
  1863. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.CanAcceptCalls">
  1864. <summary>
  1865. If this expectation is still waiting for calls.
  1866. </summary>
  1867. </member>
  1868. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ExpectationSatisfied">
  1869. <summary>
  1870. Gets a value indicating whether this expectation was satisfied
  1871. </summary>
  1872. </member>
  1873. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ReturnValue">
  1874. <summary>
  1875. The return value for a method matching this expectation
  1876. </summary>
  1877. </member>
  1878. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActionToExecute">
  1879. <summary>
  1880. An action to execute when the method is matched.
  1881. </summary>
  1882. </member>
  1883. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ExceptionToThrow">
  1884. <summary>
  1885. Gets or sets the exception to throw on a method matching this expectation.
  1886. </summary>
  1887. </member>
  1888. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActionsSatisfied">
  1889. <summary>
  1890. Gets a value indicating whether this instance's action is staisfied.
  1891. A staisfied instance means that there are no more requirements from
  1892. this method. A method with non void return value must register either
  1893. a return value or an exception to throw or an action to execute.
  1894. </summary>
  1895. </member>
  1896. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Message">
  1897. <summary>
  1898. Documentation message
  1899. </summary>
  1900. </member>
  1901. <member name="E:Rhino.Mocks.Expectations.AbstractExpectation.WhenCalled">
  1902. <summary>
  1903. Occurs when the exceptation is match on a method call
  1904. </summary>
  1905. </member>
  1906. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.AllowTentativeReturn">
  1907. <summary>
  1908. Allow to set the return value in the future, if it was already set.
  1909. </summary>
  1910. </member>
  1911. <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ErrorMessage">
  1912. <summary>
  1913. Gets the error message.
  1914. </summary>
  1915. <value></value>
  1916. </member>
  1917. <member name="T:Rhino.Mocks.Expectations.AnyArgsExpectation">
  1918. <summary>
  1919. Expectation that matches any arguments for the method.
  1920. </summary>
  1921. </member>
  1922. <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.#ctor(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Impl.Range)">
  1923. <summary>
  1924. Creates a new <see cref="T:Rhino.Mocks.Expectations.AnyArgsExpectation"/> instance.
  1925. </summary>
  1926. <param name="invocation">Invocation for this expectation</param>
  1927. <param name="expectedRange">Number of method calls for this expectations</param>
  1928. </member>
  1929. <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation)">
  1930. <summary>
  1931. Creates a new <see cref="T:Rhino.Mocks.Expectations.AnyArgsExpectation"/> instance.
  1932. </summary>
  1933. <param name="expectation">Expectation.</param>
  1934. </member>
  1935. <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.DoIsExpected(System.Object[])">
  1936. <summary>
  1937. Validate the arguments for the method.
  1938. </summary>
  1939. <param name="args">The arguments with which the method was called</param>
  1940. </member>
  1941. <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.Equals(System.Object)">
  1942. <summary>
  1943. Determines if the object equal to expectation
  1944. </summary>
  1945. </member>
  1946. <member name="M:Rhino.Mocks.Expectations.AnyArgsExpectation.GetHashCode">
  1947. <summary>
  1948. Get the hash code
  1949. </summary>
  1950. </member>
  1951. <member name="P:Rhino.Mocks.Expectations.AnyArgsExpectation.ErrorMessage">
  1952. <summary>
  1953. Gets the error message.
  1954. </summary>
  1955. <value></value>
  1956. </member>
  1957. <member name="T:Rhino.Mocks.Expectations.ArgsEqualExpectation">
  1958. <summary>
  1959. Summary description for ArgsEqualExpectation.
  1960. </summary>
  1961. </member>
  1962. <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.#ctor(Castle.Core.Interceptor.IInvocation,System.Object[],Rhino.Mocks.Impl.Range)">
  1963. <summary>
  1964. Creates a new <see cref="T:Rhino.Mocks.Expectations.ArgsEqualExpectation"/> instance.
  1965. </summary>
  1966. <param name="expectedArgs">Expected args.</param>
  1967. <param name="invocation">The invocation for this expectation</param>
  1968. <param name="expectedRange">Number of method calls for this expectations</param>
  1969. </member>
  1970. <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.DoIsExpected(System.Object[])">
  1971. <summary>
  1972. Validate the arguments for the method.
  1973. </summary>
  1974. <param name="args">The arguments with which the method was called</param>
  1975. </member>
  1976. <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.Equals(System.Object)">
  1977. <summary>
  1978. Determines if the object equal to expectation
  1979. </summary>
  1980. </member>
  1981. <member name="M:Rhino.Mocks.Expectations.ArgsEqualExpectation.GetHashCode">
  1982. <summary>
  1983. Get the hash code
  1984. </summary>
  1985. </member>
  1986. <member name="P:Rhino.Mocks.Expectations.ArgsEqualExpectation.ErrorMessage">
  1987. <summary>
  1988. Gets the error message.
  1989. </summary>
  1990. <value></value>
  1991. </member>
  1992. <member name="P:Rhino.Mocks.Expectations.ArgsEqualExpectation.ExpectedArgs">
  1993. <summary>
  1994. Get the expected args.
  1995. </summary>
  1996. </member>
  1997. <member name="T:Rhino.Mocks.Expectations.CallbackExpectation">
  1998. <summary>
  1999. Call a specified callback to verify the expectation
  2000. </summary>
  2001. </member>
  2002. <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation,System.Delegate)">
  2003. <summary>
  2004. Creates a new <see cref="T:Rhino.Mocks.Expectations.CallbackExpectation"/> instance.
  2005. </summary>
  2006. <param name="expectation">Expectation.</param>
  2007. <param name="callback">Callback.</param>
  2008. </member>
  2009. <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.#ctor(Castle.Core.Interceptor.IInvocation,System.Delegate,Rhino.Mocks.Impl.Range)">
  2010. <summary>
  2011. Creates a new <see cref="T:Rhino.Mocks.Expectations.CallbackExpectation"/> instance.
  2012. </summary>
  2013. <param name="invocation">Invocation for this expectation</param>
  2014. <param name="callback">Callback.</param>
  2015. <param name="expectedRange">Number of method calls for this expectations</param>
  2016. </member>
  2017. <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.DoIsExpected(System.Object[])">
  2018. <summary>
  2019. Validate the arguments for the method on the child methods
  2020. </summary>
  2021. <param name="args">The arguments with which the method was called</param>
  2022. </member>
  2023. <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.Equals(System.Object)">
  2024. <summary>
  2025. Determines if the object equal to expectation
  2026. </summary>
  2027. </member>
  2028. <member name="M:Rhino.Mocks.Expectations.CallbackExpectation.GetHashCode">
  2029. <summary>
  2030. Get the hash code
  2031. </summary>
  2032. </member>
  2033. <member name="P:Rhino.Mocks.Expectations.CallbackExpectation.ErrorMessage">
  2034. <summary>
  2035. Gets the error message.
  2036. </summary>
  2037. <value></value>
  2038. </member>
  2039. <member name="T:Rhino.Mocks.Expectations.ConstraintsExpectation">
  2040. <summary>
  2041. Expect the method's arguments to match the contraints
  2042. </summary>
  2043. </member>
  2044. <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.#ctor(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Constraints.AbstractConstraint[],Rhino.Mocks.Impl.Range)">
  2045. <summary>
  2046. Creates a new <see cref="T:Rhino.Mocks.Expectations.ConstraintsExpectation"/> instance.
  2047. </summary>
  2048. <param name="invocation">Invocation for this expectation</param>
  2049. <param name="constraints">Constraints.</param>
  2050. <param name="expectedRange">Number of method calls for this expectations</param>
  2051. </member>
  2052. <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Constraints.AbstractConstraint[])">
  2053. <summary>
  2054. Creates a new <see cref="T:Rhino.Mocks.Expectations.ConstraintsExpectation"/> instance.
  2055. </summary>
  2056. <param name="expectation">Expectation.</param>
  2057. <param name="constraints">Constraints.</param>
  2058. </member>
  2059. <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.DoIsExpected(System.Object[])">
  2060. <summary>
  2061. Validate the arguments for the method.
  2062. </summary>
  2063. <param name="args">The arguments with which the method was called</param>
  2064. </member>
  2065. <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.Equals(System.Object)">
  2066. <summary>
  2067. Determines if the object equal to expectation
  2068. </summary>
  2069. </member>
  2070. <member name="M:Rhino.Mocks.Expectations.ConstraintsExpectation.GetHashCode">
  2071. <summary>
  2072. Get the hash code
  2073. </summary>
  2074. </member>
  2075. <member name="P:Rhino.Mocks.Expectations.ConstraintsExpectation.ErrorMessage">
  2076. <summary>
  2077. Gets the error message.
  2078. </summary>
  2079. <value></value>
  2080. </member>
  2081. <member name="T:Rhino.Mocks.Impl.Invocation.Actions.HandleEvent">
  2082. <summary>
  2083. </summary>
  2084. </member>
  2085. <member name="T:Rhino.Mocks.Interfaces.IInvocationActionn">
  2086. <summary>
  2087. </summary>
  2088. </member>
  2089. <member name="M:Rhino.Mocks.Interfaces.IInvocationActionn.PerformAgainst(Castle.Core.Interceptor.IInvocation)">
  2090. <summary>
  2091. </summary>
  2092. </member>
  2093. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.HandleEvent.#ctor(Rhino.Mocks.Interfaces.IMockedObject)">
  2094. <summary>
  2095. </summary>
  2096. </member>
  2097. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.HandleEvent.PerformAgainst(Castle.Core.Interceptor.IInvocation)">
  2098. <summary>
  2099. </summary>
  2100. </member>
  2101. <member name="T:Rhino.Mocks.Impl.Invocation.Actions.InvokeMethodAgainstMockedObject">
  2102. <summary>
  2103. </summary>
  2104. </member>
  2105. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.InvokeMethodAgainstMockedObject.#ctor(Rhino.Mocks.Interfaces.IMockedObject)">
  2106. <summary>
  2107. </summary>
  2108. </member>
  2109. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.InvokeMethodAgainstMockedObject.PerformAgainst(Castle.Core.Interceptor.IInvocation)">
  2110. <summary>
  2111. </summary>
  2112. </member>
  2113. <member name="T:Rhino.Mocks.Impl.Invocation.Actions.InvokeProperty">
  2114. <summary>
  2115. </summary>
  2116. </member>
  2117. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.InvokeProperty.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
  2118. <summary>
  2119. </summary>
  2120. </member>
  2121. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.InvokeProperty.PerformAgainst(Castle.Core.Interceptor.IInvocation)">
  2122. <summary>
  2123. </summary>
  2124. </member>
  2125. <member name="T:Rhino.Mocks.Impl.Invocation.Actions.Proceed">
  2126. <summary>
  2127. </summary>
  2128. </member>
  2129. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.Proceed.PerformAgainst(Castle.Core.Interceptor.IInvocation)">
  2130. <summary>
  2131. </summary>
  2132. </member>
  2133. <member name="T:Rhino.Mocks.Impl.Invocation.Actions.RegularInvocation">
  2134. <summary>
  2135. </summary>
  2136. </member>
  2137. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.RegularInvocation.#ctor(Rhino.Mocks.MockRepository)">
  2138. <summary>
  2139. </summary>
  2140. </member>
  2141. <member name="M:Rhino.Mocks.Impl.Invocation.Actions.RegularInvocation.PerformAgainst(Castle.Core.Interceptor.IInvocation)">
  2142. <summary>
  2143. </summary>
  2144. </member>
  2145. <member name="T:Rhino.Mocks.Impl.Invocation.InvocationVisitor">
  2146. <summary>
  2147. </summary>
  2148. </member>
  2149. <member name="M:Rhino.Mocks.Impl.Invocation.InvocationVisitor.#ctor(Rhino.Mocks.Impl.InvocationSpecifications.ISpecification{Castle.Core.Interceptor.IInvocation},Rhino.Mocks.Interfaces.IInvocationActionn)">
  2150. <summary>
  2151. </summary>
  2152. </member>
  2153. <member name="M:Rhino.Mocks.Impl.Invocation.InvocationVisitor.CanWorkWith(Castle.Core.Interceptor.IInvocation)">
  2154. <summary>
  2155. </summary>
  2156. </member>
  2157. <member name="M:Rhino.Mocks.Impl.Invocation.InvocationVisitor.RunAgainst(Castle.Core.Interceptor.IInvocation)">
  2158. <summary>
  2159. </summary>
  2160. </member>
  2161. <member name="T:Rhino.Mocks.Impl.Invocation.InvocationVisitorsFactory">
  2162. <summary>
  2163. </summary>
  2164. </member>
  2165. <member name="M:Rhino.Mocks.Impl.Invocation.InvocationVisitorsFactory.CreateStandardInvocationVisitors(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
  2166. <summary>
  2167. </summary>
  2168. </member>
  2169. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.AndSpecification`1">
  2170. <summary>
  2171. Summary for AndSpecification
  2172. </summary>
  2173. <typeparam name="T"></typeparam>
  2174. </member>
  2175. <member name="T:Rhino.Mocks.Impl.InvocationSpecifications.ISpecification`1">
  2176. <summary>
  2177. </summary>
  2178. </member>
  2179. <member name="M:Rhino.Mocks.Impl.InvocationSpecifications.ISpecification`1.IsSatisfiedBy(`0)">
  2180. <summary>
  2181. </summary>
  2182. </member>
  2183. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.AndSpecification`1.#ctor(Rhino.Mocks.Impl.InvocationSpecifications.ISpecification{`0},Rhino.Mocks.Impl.InvocationSpecifications.ISpecification{`0})">
  2184. <summary>
  2185. </summary>
  2186. </member>
  2187. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.AndSpecification`1.IsSatisfiedBy(`0)">
  2188. <summary>
  2189. </summary>
  2190. </member>
  2191. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.FollowsEventNamingStandard">
  2192. <summary>
  2193. Summary description for FollowsEventNamingStandard
  2194. </summary>
  2195. </member>
  2196. <member name="F:Rhino.Mocks.Impl.Invocation.Specifications.FollowsEventNamingStandard.AddPrefix">
  2197. <summary>
  2198. </summary>
  2199. </member>
  2200. <member name="F:Rhino.Mocks.Impl.Invocation.Specifications.FollowsEventNamingStandard.RemovePrefix">
  2201. <summary>
  2202. </summary>
  2203. </member>
  2204. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.FollowsEventNamingStandard.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2205. <summary>
  2206. </summary>
  2207. </member>
  2208. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.IsAnEventInvocation">
  2209. <summary>
  2210. </summary>
  2211. </member>
  2212. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsAnEventInvocation.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2213. <summary>
  2214. </summary>
  2215. </member>
  2216. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.AnyInvocation">
  2217. <summary>
  2218. </summary>
  2219. </member>
  2220. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.AnyInvocation.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2221. <summary>
  2222. </summary>
  2223. </member>
  2224. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.IsAnInvocationOfAMethodBelongingToObject">
  2225. <summary>
  2226. </summary>
  2227. </member>
  2228. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsAnInvocationOfAMethodBelongingToObject.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2229. <summary>
  2230. </summary>
  2231. </member>
  2232. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.IsAnInvocationOnAMockedObject">
  2233. <summary>
  2234. </summary>
  2235. </member>
  2236. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsAnInvocationOnAMockedObject.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2237. <summary>
  2238. </summary>
  2239. </member>
  2240. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.IsAPropertyInvocation">
  2241. <summary>
  2242. </summary>
  2243. </member>
  2244. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsAPropertyInvocation.#ctor(Rhino.Mocks.Interfaces.IMockedObject)">
  2245. <summary>
  2246. </summary>
  2247. </member>
  2248. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsAPropertyInvocation.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2249. <summary>
  2250. </summary>
  2251. </member>
  2252. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.IsInvocationThatShouldTargetOriginal">
  2253. <summary>
  2254. </summary>
  2255. </member>
  2256. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsInvocationThatShouldTargetOriginal.#ctor(Rhino.Mocks.Interfaces.IMockedObject)">
  2257. <summary>
  2258. </summary>
  2259. </member>
  2260. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.IsInvocationThatShouldTargetOriginal.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2261. <summary>
  2262. </summary>
  2263. </member>
  2264. <member name="T:Rhino.Mocks.Impl.Invocation.Specifications.NamedEventExistsOnDeclaringType">
  2265. <summary>
  2266. Summary descritpion for NamedEventExistsOnDeclaringType
  2267. </summary>
  2268. </member>
  2269. <member name="M:Rhino.Mocks.Impl.Invocation.Specifications.NamedEventExistsOnDeclaringType.IsSatisfiedBy(Castle.Core.Interceptor.IInvocation)">
  2270. <summary>
  2271. </summary>
  2272. </member>
  2273. <member name="T:Rhino.Mocks.Impl.NullLogger">
  2274. <summary>
  2275. Doesn't log anything, just makes happy noises
  2276. </summary>
  2277. </member>
  2278. <member name="T:Rhino.Mocks.Interfaces.IExpectationLogger">
  2279. <summary>
  2280. Log expectations - allows to see what is going on inside Rhino Mocks
  2281. </summary>
  2282. </member>
  2283. <member name="M:Rhino.Mocks.Interfaces.IExpectationLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2284. <summary>
  2285. Logs the expectation as is was recorded
  2286. </summary>
  2287. <param name="invocation">The invocation.</param>
  2288. <param name="expectation">The expectation.</param>
  2289. </member>
  2290. <member name="M:Rhino.Mocks.Interfaces.IExpectationLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2291. <summary>
  2292. Logs the expectation as it was recorded
  2293. </summary>
  2294. <param name="invocation">The invocation.</param>
  2295. <param name="expectation">The expectation.</param>
  2296. </member>
  2297. <member name="M:Rhino.Mocks.Interfaces.IExpectationLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
  2298. <summary>
  2299. Logs the unexpected method call.
  2300. </summary>
  2301. <param name="invocation">The invocation.</param>
  2302. <param name="message">The message.</param>
  2303. </member>
  2304. <member name="M:Rhino.Mocks.Impl.NullLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2305. <summary>
  2306. Logs the expectation as is was recorded
  2307. </summary>
  2308. <param name="invocation">The invocation.</param>
  2309. <param name="expectation">The expectation.</param>
  2310. </member>
  2311. <member name="M:Rhino.Mocks.Impl.NullLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2312. <summary>
  2313. Logs the expectation as it was recorded
  2314. </summary>
  2315. <param name="invocation">The invocation.</param>
  2316. <param name="expectation">The expectation.</param>
  2317. </member>
  2318. <member name="M:Rhino.Mocks.Impl.NullLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
  2319. <summary>
  2320. Logs the unexpected method call.
  2321. </summary>
  2322. <param name="invocation">The invocation.</param>
  2323. <param name="message">The message.</param>
  2324. </member>
  2325. <member name="T:Rhino.Mocks.Impl.RemotingMock.IRemotingProxyOperation">
  2326. <summary>
  2327. Operation on a remoting proxy
  2328. </summary>
  2329. <remarks>
  2330. It is not possible to directly communicate to a real proxy via transparent proxy.
  2331. Transparent proxy impersonates a user type and only methods of that user type are callable.
  2332. The only methods that are guaranteed to exist on any transparent proxy are methods defined
  2333. in Object: namely ToString(), GetHashCode(), and Equals()).
  2334. These three methods are the only way to tell the real proxy to do something.
  2335. Equals() is the most suitable of all, since it accepts an arbitrary object parameter.
  2336. The RemotingProxy code is built so that if it is compared to an IRemotingProxyOperation,
  2337. transparentProxy.Equals(operation) will call operation.Process(realProxy).
  2338. This way we can retrieve a real proxy from transparent proxy and perform
  2339. arbitrary operation on it.
  2340. </remarks>
  2341. </member>
  2342. <member name="T:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator">
  2343. <summary>
  2344. Generates remoting proxies and provides utility functions
  2345. </summary>
  2346. </member>
  2347. <member name="M:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator.CreateRemotingMock(System.Type,Castle.Core.Interceptor.IInterceptor,Rhino.Mocks.Interfaces.IMockedObject)">
  2348. <summary>
  2349. Create the proxy using remoting
  2350. </summary>
  2351. </member>
  2352. <member name="M:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator.IsRemotingProxy(System.Object)">
  2353. <summary>
  2354. Check whether an object is a transparent proxy with a RemotingProxy behind it
  2355. </summary>
  2356. <param name="obj">Object to check</param>
  2357. <returns>true if the object is a transparent proxy with a RemotingProxy instance behind it, false otherwise</returns>
  2358. <remarks>We use Equals() method to communicate with the real proxy behind the object.
  2359. See IRemotingProxyOperation for more details</remarks>
  2360. </member>
  2361. <member name="M:Rhino.Mocks.Impl.RemotingMock.RemotingMockGenerator.GetMockedObjectFromProxy(System.Object)">
  2362. <summary>
  2363. Retrieve a mocked object from a transparent proxy
  2364. </summary>
  2365. <param name="proxy">Transparent proxy with a RemotingProxy instance behind it</param>
  2366. <returns>Mocked object associated with the proxy</returns>
  2367. <remarks>We use Equals() method to communicate with the real proxy behind the object.
  2368. See IRemotingProxyOperation for more details</remarks>
  2369. </member>
  2370. <member name="T:Rhino.Mocks.Impl.RemotingMock.RemotingInvocation">
  2371. <summary>
  2372. Implementation of IInvocation based on remoting proxy
  2373. </summary>
  2374. <remarks>Some methods are marked NotSupported since they either don't make sense
  2375. for remoting proxies, or they are never called by Rhino Mocks</remarks>
  2376. </member>
  2377. <member name="T:Rhino.Mocks.Impl.TextWriterExpectationLogger">
  2378. <summary>
  2379. Rudimetry implementation that simply logs methods calls as text.
  2380. </summary>
  2381. </member>
  2382. <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.#ctor(System.IO.TextWriter)">
  2383. <summary>
  2384. Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.TextWriterExpectationLogger"/> class.
  2385. </summary>
  2386. <param name="writer">The writer.</param>
  2387. </member>
  2388. <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2389. <summary>
  2390. Logs the expectation as it was recorded
  2391. </summary>
  2392. <param name="invocation">The invocation.</param>
  2393. <param name="expectation">The expectation.</param>
  2394. </member>
  2395. <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2396. <summary>
  2397. Logs the expectation as it was recorded
  2398. </summary>
  2399. <param name="invocation">The invocation.</param>
  2400. <param name="expectation">The expectation.</param>
  2401. </member>
  2402. <member name="M:Rhino.Mocks.Impl.TextWriterExpectationLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
  2403. <summary>
  2404. Logs the unexpected method call.
  2405. </summary>
  2406. <param name="invocation">The invocation.</param>
  2407. <param name="message">The message.</param>
  2408. </member>
  2409. <member name="T:Rhino.Mocks.Impl.StubRecordMockState">
  2410. <summary>
  2411. Behave like a stub, all properties and events acts normally, methods calls
  2412. return default values by default (but can use expectations to set them up), etc.
  2413. </summary>
  2414. </member>
  2415. <member name="T:Rhino.Mocks.Impl.RecordMockState">
  2416. <summary>
  2417. Records all the expectations for a mock
  2418. </summary>
  2419. </member>
  2420. <member name="T:Rhino.Mocks.Interfaces.IMockState">
  2421. <summary>
  2422. Different actions on this mock
  2423. </summary>
  2424. </member>
  2425. <member name="M:Rhino.Mocks.Interfaces.IMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  2426. <summary>
  2427. Add a method call for this state' mock.
  2428. </summary>
  2429. <param name="invocation">The invocation for this method</param>
  2430. <param name="method">The method that was called</param>
  2431. <param name="args">The arguments this method was called with</param>
  2432. </member>
  2433. <member name="M:Rhino.Mocks.Interfaces.IMockState.Verify">
  2434. <summary>
  2435. Verify that this mock expectations have passed.
  2436. </summary>
  2437. </member>
  2438. <member name="M:Rhino.Mocks.Interfaces.IMockState.Replay">
  2439. <summary>
  2440. Verify that we can move to replay state and move
  2441. to the reply state.
  2442. </summary>
  2443. </member>
  2444. <member name="M:Rhino.Mocks.Interfaces.IMockState.BackToRecord">
  2445. <summary>
  2446. Gets a mock state that match the original mock state of the object.
  2447. </summary>
  2448. </member>
  2449. <member name="M:Rhino.Mocks.Interfaces.IMockState.GetLastMethodOptions``1">
  2450. <summary>
  2451. Get the options for the last method call
  2452. </summary>
  2453. </member>
  2454. <member name="M:Rhino.Mocks.Interfaces.IMockState.SetExceptionToThrowOnVerify(System.Exception)">
  2455. <summary>
  2456. Set the exception to throw when Verify is called.
  2457. This is used to report exception that may have happened but where caught in the code.
  2458. This way, they are reported anyway when Verify() is called.
  2459. </summary>
  2460. </member>
  2461. <member name="M:Rhino.Mocks.Interfaces.IMockState.NotifyCallOnPropertyBehavior">
  2462. <summary>
  2463. This method is called to indicate that a property behavior call.
  2464. This is done so we generate good error message in the common case of people using
  2465. Stubbed properties with Return().
  2466. </summary>
  2467. </member>
  2468. <member name="P:Rhino.Mocks.Interfaces.IMockState.VerifyState">
  2469. <summary>
  2470. Gets the matching verify state for this state
  2471. </summary>
  2472. </member>
  2473. <member name="P:Rhino.Mocks.Interfaces.IMockState.LastMethodOptions">
  2474. <summary>
  2475. Get the options for the last method call
  2476. </summary>
  2477. </member>
  2478. <member name="M:Rhino.Mocks.Impl.RecordMockState.GetLastMethodOptions``1">
  2479. <summary>
  2480. Get the options for the last method call
  2481. </summary>
  2482. </member>
  2483. <member name="M:Rhino.Mocks.Impl.RecordMockState.SetExceptionToThrowOnVerify(System.Exception)">
  2484. <summary>
  2485. Set the exception to throw when Verify is called.
  2486. This is used to report exception that may have happened but where caught in the code.
  2487. This way, they are reported anyway when Verify() is called.
  2488. </summary>
  2489. </member>
  2490. <member name="M:Rhino.Mocks.Impl.RecordMockState.NotifyCallOnPropertyBehavior">
  2491. <summary>
  2492. This method is called to indicate that a property behavior call.
  2493. This is done so we generate good error message in the common case of people using
  2494. Stubbed properties with Return().
  2495. </summary>
  2496. </member>
  2497. <member name="M:Rhino.Mocks.Impl.RecordMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
  2498. <summary>
  2499. Creates a new <see cref="T:Rhino.Mocks.Impl.RecordMockState"/> instance.
  2500. </summary>
  2501. <param name="repository">Repository.</param>
  2502. <param name="mockedObject">The proxy that generates the method calls</param>
  2503. </member>
  2504. <member name="M:Rhino.Mocks.Impl.RecordMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  2505. <summary>
  2506. Add a method call for this state' mock.
  2507. </summary>
  2508. <param name="invocation">The invocation for this method</param>
  2509. <param name="method">The method that was called</param>
  2510. <param name="args">The arguments this method was called with</param>
  2511. </member>
  2512. <member name="M:Rhino.Mocks.Impl.RecordMockState.Replay">
  2513. <summary>
  2514. Verify that we can move to replay state and move
  2515. to the reply state.
  2516. </summary>
  2517. </member>
  2518. <member name="M:Rhino.Mocks.Impl.RecordMockState.DoReplay">
  2519. <summary>
  2520. Verify that we can move to replay state and move
  2521. to the reply state.
  2522. </summary>
  2523. </member>
  2524. <member name="M:Rhino.Mocks.Impl.RecordMockState.Verify">
  2525. <summary>
  2526. Verify that this mock expectations have passed.
  2527. </summary>
  2528. </member>
  2529. <member name="M:Rhino.Mocks.Impl.RecordMockState.BackToRecord">
  2530. <summary>
  2531. Gets a mock state that match the original mock state of the object.
  2532. </summary>
  2533. </member>
  2534. <member name="M:Rhino.Mocks.Impl.RecordMockState.AssertPreviousMethodIsClose">
  2535. <summary>
  2536. Asserts the previous method is closed (had an expectation set on it so we can replay it correctly)
  2537. </summary>
  2538. </member>
  2539. <member name="M:Rhino.Mocks.Impl.RecordMockState.GetDefaultCallCountRangeExpectation">
  2540. <summary>
  2541. Get the default call count range expectation
  2542. </summary>
  2543. <returns></returns>
  2544. </member>
  2545. <member name="P:Rhino.Mocks.Impl.RecordMockState.LastExpectation">
  2546. <summary>
  2547. Gets the last expectation.
  2548. </summary>
  2549. </member>
  2550. <member name="P:Rhino.Mocks.Impl.RecordMockState.MethodCallsCount">
  2551. <summary>
  2552. Gets the total method calls count.
  2553. </summary>
  2554. </member>
  2555. <member name="P:Rhino.Mocks.Impl.RecordMockState.LastMethodOptions">
  2556. <summary>
  2557. Get the options for the last method call
  2558. </summary>
  2559. </member>
  2560. <member name="P:Rhino.Mocks.Impl.RecordMockState.VerifyState">
  2561. <summary>
  2562. Gets the matching verify state for this state
  2563. </summary>
  2564. </member>
  2565. <member name="M:Rhino.Mocks.Impl.StubRecordMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
  2566. <summary>
  2567. Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.StubRecordMockState"/> class.
  2568. </summary>
  2569. <param name="mockedObject">The proxy that generates the method calls</param>
  2570. <param name="repository">Repository.</param>
  2571. </member>
  2572. <member name="M:Rhino.Mocks.Impl.StubRecordMockState.AssertPreviousMethodIsClose">
  2573. <summary>
  2574. We don't care much about expectations here, so we will remove the expectation if
  2575. it is not closed.
  2576. </summary>
  2577. </member>
  2578. <member name="M:Rhino.Mocks.Impl.StubRecordMockState.Replay">
  2579. <summary>
  2580. Verify that we can move to replay state and move
  2581. to the reply state.
  2582. </summary>
  2583. <returns></returns>
  2584. </member>
  2585. <member name="M:Rhino.Mocks.Impl.StubRecordMockState.GetDefaultCallCountRangeExpectation">
  2586. <summary>
  2587. Get the default call count range expectation
  2588. </summary>
  2589. <returns></returns>
  2590. </member>
  2591. <member name="T:Rhino.Mocks.Impl.StubReplayMockState">
  2592. <summary>
  2593. Validate expectations on recorded methods, but in general completely ignoring them.
  2594. Similar to <seealso cref="T:Rhino.Mocks.Impl.ReplayDynamicMockState"/> except that it would return a
  2595. <seealso cref="T:Rhino.Mocks.Impl.StubRecordMockState"/> when BackToRecord is called.
  2596. </summary>
  2597. </member>
  2598. <member name="T:Rhino.Mocks.Impl.ReplayMockState">
  2599. <summary>
  2600. Validate all expectations on a mock
  2601. </summary>
  2602. </member>
  2603. <member name="F:Rhino.Mocks.Impl.ReplayMockState.repository">
  2604. <summary>
  2605. The repository for this state
  2606. </summary>
  2607. </member>
  2608. <member name="F:Rhino.Mocks.Impl.ReplayMockState.proxy">
  2609. <summary>
  2610. The proxy object for this state
  2611. </summary>
  2612. </member>
  2613. <member name="M:Rhino.Mocks.Impl.ReplayMockState.GetLastMethodOptions``1">
  2614. <summary>
  2615. Get the options for the last method call
  2616. </summary>
  2617. </member>
  2618. <member name="M:Rhino.Mocks.Impl.ReplayMockState.#ctor(Rhino.Mocks.Impl.RecordMockState)">
  2619. <summary>
  2620. Creates a new <see cref="T:Rhino.Mocks.Impl.ReplayMockState"/> instance.
  2621. </summary>
  2622. <param name="previousState">The previous state for this method</param>
  2623. </member>
  2624. <member name="M:Rhino.Mocks.Impl.ReplayMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  2625. <summary>
  2626. Add a method call for this state' mock.
  2627. </summary>
  2628. <param name="invocation">The invocation for this method</param>
  2629. <param name="method">The method that was called</param>
  2630. <param name="args">The arguments this method was called with</param>
  2631. </member>
  2632. <member name="M:Rhino.Mocks.Impl.ReplayMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  2633. <summary>
  2634. Add a method call for this state' mock.
  2635. This allows derived method to cleanly get a the setupresult behavior while adding
  2636. their own.
  2637. </summary>
  2638. <param name="invocation">The invocation for this method</param>
  2639. <param name="method">The method that was called</param>
  2640. <param name="args">The arguments this method was called with</param>
  2641. </member>
  2642. <member name="M:Rhino.Mocks.Impl.ReplayMockState.SetExceptionToThrowOnVerify(System.Exception)">
  2643. <summary>
  2644. Set the exception to throw when Verify is called.
  2645. This is used to report exception that may have happened but where caught in the code.
  2646. This way, they are reported anyway when Verify() is called.
  2647. </summary>
  2648. </member>
  2649. <member name="M:Rhino.Mocks.Impl.ReplayMockState.NotifyCallOnPropertyBehavior">
  2650. <summary>
  2651. not relevant
  2652. </summary>
  2653. </member>
  2654. <member name="M:Rhino.Mocks.Impl.ReplayMockState.Verify">
  2655. <summary>
  2656. Verify that this mock expectations have passed.
  2657. </summary>
  2658. </member>
  2659. <member name="M:Rhino.Mocks.Impl.ReplayMockState.Replay">
  2660. <summary>
  2661. Verify that we can move to replay state and move
  2662. to the reply state.
  2663. </summary>
  2664. </member>
  2665. <member name="M:Rhino.Mocks.Impl.ReplayMockState.BackToRecord">
  2666. <summary>
  2667. Gets a mock state that match the original mock state of the object.
  2668. </summary>
  2669. </member>
  2670. <member name="P:Rhino.Mocks.Impl.ReplayMockState.LastMethodOptions">
  2671. <summary>
  2672. Get the options for the last method call
  2673. </summary>
  2674. </member>
  2675. <member name="P:Rhino.Mocks.Impl.ReplayMockState.VerifyState">
  2676. <summary>
  2677. Gets the matching verify state for this state
  2678. </summary>
  2679. </member>
  2680. <member name="M:Rhino.Mocks.Impl.StubReplayMockState.#ctor(Rhino.Mocks.Impl.RecordMockState)">
  2681. <summary>
  2682. Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.StubReplayMockState"/> class.
  2683. </summary>
  2684. <param name="previousState">The previous state for this method</param>
  2685. </member>
  2686. <member name="M:Rhino.Mocks.Impl.StubReplayMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  2687. <summary>
  2688. Add a method call for this state' mock.
  2689. </summary>
  2690. <param name="invocation">The invocation for this method</param>
  2691. <param name="method">The method that was called</param>
  2692. <param name="args">The arguments this method was called with</param>
  2693. </member>
  2694. <member name="M:Rhino.Mocks.Impl.StubReplayMockState.BackToRecord">
  2695. <summary>
  2696. Gets a mock state that matches the original mock state of the object.
  2697. </summary>
  2698. </member>
  2699. <member name="T:Rhino.Mocks.Impl.TraceWriterExpectationLogger">
  2700. <summary>
  2701. Write rhino mocks log info to the trace
  2702. </summary>
  2703. </member>
  2704. <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.#ctor">
  2705. <summary>
  2706. Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.TraceWriterExpectationLogger"/> class.
  2707. </summary>
  2708. </member>
  2709. <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.#ctor(System.Boolean,System.Boolean,System.Boolean)">
  2710. <summary>
  2711. Initializes a new instance of the <see cref="T:Rhino.Mocks.Impl.TraceWriterExpectationLogger"/> class.
  2712. </summary>
  2713. <param name="logRecorded">if set to <c>true</c> [log recorded].</param>
  2714. <param name="logReplayed">if set to <c>true</c> [log replayed].</param>
  2715. <param name="logUnexpected">if set to <c>true</c> [log unexpected].</param>
  2716. </member>
  2717. <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2718. <summary>
  2719. Logs the expectation as is was recorded
  2720. </summary>
  2721. <param name="invocation">The invocation.</param>
  2722. <param name="expectation">The expectation.</param>
  2723. </member>
  2724. <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2725. <summary>
  2726. Logs the expectation as it was recorded
  2727. </summary>
  2728. <param name="invocation">The invocation.</param>
  2729. <param name="expectation">The expectation.</param>
  2730. </member>
  2731. <member name="M:Rhino.Mocks.Impl.TraceWriterExpectationLogger.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
  2732. <summary>
  2733. Logs the unexpected method call.
  2734. </summary>
  2735. <param name="invocation">The invocation.</param>
  2736. <param name="message">The message.</param>
  2737. </member>
  2738. <member name="T:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter">
  2739. <summary>
  2740. Writes log information as stack traces about rhino mocks activity
  2741. </summary>
  2742. </member>
  2743. <member name="F:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.AlternativeWriter">
  2744. <summary>
  2745. Allows to redirect output to a different location.
  2746. </summary>
  2747. </member>
  2748. <member name="M:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.LogRecordedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2749. <summary>
  2750. Logs the expectation as is was recorded
  2751. </summary>
  2752. <param name="invocation">The invocation.</param>
  2753. <param name="expectation">The expectation.</param>
  2754. </member>
  2755. <member name="M:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.LogReplayedExpectation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Interfaces.IExpectation)">
  2756. <summary>
  2757. Logs the expectation as it was recorded
  2758. </summary>
  2759. <param name="invocation">The invocation.</param>
  2760. <param name="expectation">The expectation.</param>
  2761. </member>
  2762. <member name="M:Rhino.Mocks.Impl.TraceWriterWithStackTraceExpectationWriter.LogUnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.String)">
  2763. <summary>
  2764. Logs the unexpected method call.
  2765. </summary>
  2766. <param name="invocation">The invocation.</param>
  2767. <param name="message">The message.</param>
  2768. </member>
  2769. <member name="T:Rhino.Mocks.Interfaces.IPartialMockMarker">
  2770. <summary>
  2771. Marker interface used to indicate that this is a partial mock.
  2772. </summary>
  2773. </member>
  2774. <member name="T:Rhino.Mocks.Interfaces.OriginalCallOptions">
  2775. <summary>
  2776. Options for CallOriginalMethod
  2777. </summary>
  2778. </member>
  2779. <member name="F:Rhino.Mocks.Interfaces.OriginalCallOptions.NoExpectation">
  2780. <summary>
  2781. No expectation is created, the method will be called directly
  2782. </summary>
  2783. </member>
  2784. <member name="F:Rhino.Mocks.Interfaces.OriginalCallOptions.CreateExpectation">
  2785. <summary>
  2786. Normal expectation is created, but when the method is later called, it will also call the original method
  2787. </summary>
  2788. </member>
  2789. <member name="T:Rhino.Mocks.MethodInvocation">
  2790. <summary>
  2791. This is a data structure that is used by
  2792. <seealso cref="M:Rhino.Mocks.Interfaces.IMethodOptions`1.WhenCalled(System.Action{Rhino.Mocks.MethodInvocation})"/> to pass
  2793. the current method to the relevant delegate
  2794. </summary>
  2795. </member>
  2796. <member name="M:Rhino.Mocks.MethodInvocation.#ctor(Castle.Core.Interceptor.IInvocation)">
  2797. <summary>
  2798. Initializes a new instance of the <see cref="T:Rhino.Mocks.MethodInvocation"/> class.
  2799. </summary>
  2800. <param name="invocation">The invocation.</param>
  2801. </member>
  2802. <member name="P:Rhino.Mocks.MethodInvocation.Arguments">
  2803. <summary>
  2804. Gets the args for this method invocation
  2805. </summary>
  2806. </member>
  2807. <member name="P:Rhino.Mocks.MethodInvocation.Method">
  2808. <summary>
  2809. Get the method that was caused this invocation
  2810. </summary>
  2811. </member>
  2812. <member name="P:Rhino.Mocks.MethodInvocation.ReturnValue">
  2813. <summary>
  2814. Gets or sets the return value for this method invocation
  2815. </summary>
  2816. <value>The return value.</value>
  2817. </member>
  2818. <member name="T:Rhino.Mocks.MockRepository">
  2819. <summary>
  2820. Adds optional new usage:
  2821. using(mockRepository.Record()) {
  2822. Expect.Call(mock.Method()).Return(retVal);
  2823. }
  2824. using(mockRepository.Playback()) {
  2825. // Execute code
  2826. }
  2827. N.B. mockRepository.ReplayAll() and mockRepository.VerifyAll()
  2828. calls are taken care of by Record/Playback
  2829. </summary>
  2830. <summary>
  2831. Creates proxied instances of types.
  2832. </summary>
  2833. </member>
  2834. <member name="M:Rhino.Mocks.MockRepository.GenerateStub``1(System.Object[])">
  2835. <summary>Generates a stub without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2836. <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
  2837. <typeparam name="T">The <see cref="T:System.Type"/> of stub to create.</typeparam>
  2838. <returns>The stub</returns>
  2839. <seealso cref="M:Rhino.Mocks.MockRepository.Stub``1(System.Object[])"/>
  2840. </member>
  2841. <member name="M:Rhino.Mocks.MockRepository.GenerateStub(System.Type,System.Object[])">
  2842. <summary>Generates a stub without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2843. <param name="type">The <see cref="T:System.Type"/> of stub.</param>
  2844. <param name="argumentsForConstructor">Arguments for the <paramref name="type"/>'s constructor.</param>
  2845. <returns>The stub</returns>
  2846. <seealso cref="M:Rhino.Mocks.MockRepository.Stub(System.Type,System.Object[])"/>
  2847. </member>
  2848. <member name="M:Rhino.Mocks.MockRepository.GenerateMock``1(System.Object[])">
  2849. <summary>Generate a mock object without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2850. <typeparam name="T">type <see cref="T:System.Type"/> of mock object to create.</typeparam>
  2851. <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
  2852. <returns>the mock object</returns>
  2853. <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMock``1(System.Object[])"/>
  2854. </member>
  2855. <member name="M:Rhino.Mocks.MockRepository.GenerateMock``2(System.Object[])">
  2856. <summary>Generate a multi-mock object without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2857. <typeparam name="T">The <c>typeof</c> object to generate a mock for.</typeparam>
  2858. <typeparam name="TMultiMockInterface1">A second interface to generate a multi-mock for.</typeparam>
  2859. <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
  2860. <returns>the multi-mock object</returns>
  2861. <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])"/>
  2862. </member>
  2863. <member name="M:Rhino.Mocks.MockRepository.GenerateMock``3(System.Object[])">
  2864. <summary>Generate a multi-mock object without without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2865. <typeparam name="T">The <c>typeof</c> object to generate a mock for.</typeparam>
  2866. <typeparam name="TMultiMockInterface1">An interface to generate a multi-mock for.</typeparam>
  2867. <typeparam name="TMultiMockInterface2">A second interface to generate a multi-mock for.</typeparam>
  2868. <param name="argumentsForConstructor">Arguments for <typeparamref name="T"/>'s constructor</param>
  2869. <returns>the multi-mock object</returns>
  2870. <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])"/>
  2871. </member>
  2872. <member name="M:Rhino.Mocks.MockRepository.GenerateMock(System.Type,System.Type[],System.Object[])">
  2873. <summary>Creates a multi-mock without without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2874. <param name="type">The type of mock to create, this can be a class</param>
  2875. <param name="extraTypes">Any extra interfaces to add to the multi-mock, these can only be interfaces.</param>
  2876. <param name="argumentsForConstructor">Arguments for <paramref name="type"/>'s constructor</param>
  2877. <returns>the multi-mock object</returns>
  2878. <seealso cref="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])"/>
  2879. </member>
  2880. <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock``1(System.Object[])">
  2881. <summary>Creates a strict mock without without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2882. <param name="argumentsForConstructor">Any arguments required for the <typeparamref name="T"/>'s constructor</param>
  2883. <typeparam name="T">The type of mock object to create.</typeparam>
  2884. <returns>The mock object with strict replay semantics</returns>
  2885. <seealso cref="M:Rhino.Mocks.MockRepository.StrictMock``1(System.Object[])"/>
  2886. </member>
  2887. <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock``2(System.Object[])">
  2888. <summary>Creates a strict multi-mock without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2889. <param name="argumentsForConstructor">Any arguments required for the <typeparamref name="T"/>'s constructor</param>
  2890. <typeparam name="T">The type of mock object to create, this can be a class.</typeparam>
  2891. <typeparam name="TMultiMockInterface1">An interface to generate a multi-mock for, this must be an interface!</typeparam>
  2892. <returns>The multi-mock object with strict replay semantics</returns>
  2893. <seealso cref="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])"/>
  2894. </member>
  2895. <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock``3(System.Object[])">
  2896. <summary>Creates a strict multi-mock without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2897. <param name="argumentsForConstructor">Any arguments required for the <typeparamref name="T"/>'s constructor</param>
  2898. <typeparam name="T">The type of mock object to create, this can be a class.</typeparam>
  2899. <typeparam name="TMultiMockInterface1">An interface to generate a multi-mock for, this must be an interface!</typeparam>
  2900. <typeparam name="TMultiMockInterface2">A second interface to generate a multi-mock for, this must be an interface!</typeparam>
  2901. <returns>The multi-mock object with strict replay semantics</returns>
  2902. <seealso cref="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])"/>
  2903. </member>
  2904. <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMock(System.Type,System.Type[],System.Object[])">
  2905. <summary>Creates a strict multi-mock without needing a <see cref="T:Rhino.Mocks.MockRepository"/></summary>
  2906. <param name="type">The type of mock object to create, this can be a class</param>
  2907. <param name="extraTypes">Any extra interfaces to generate a multi-mock for, these must be interaces!</param>
  2908. <param name="argumentsForConstructor">Any arguments for the <paramref name="type"/>'s constructor</param>
  2909. <returns>The strict multi-mock object</returns>
  2910. <seealso cref="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])"/>
  2911. </member>
  2912. <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock``1(System.Object[])">
  2913. <summary>
  2914. </summary>
  2915. <param name="argumentsForConstructor"></param>
  2916. <typeparam name="T"></typeparam>
  2917. <returns></returns>
  2918. </member>
  2919. <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock``2(System.Object[])">
  2920. <summary>
  2921. </summary>
  2922. <param name="argumentsForConstructor"></param>
  2923. <typeparam name="T"></typeparam>
  2924. <typeparam name="TMultiMockInterface1"></typeparam>
  2925. <returns></returns>
  2926. </member>
  2927. <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock``3(System.Object[])">
  2928. <summary>
  2929. </summary>
  2930. <param name="argumentsForConstructor"></param>
  2931. <typeparam name="T"></typeparam>
  2932. <typeparam name="TMultiMockInterface1"></typeparam>
  2933. <typeparam name="TMultiMockInterface2"></typeparam>
  2934. <returns></returns>
  2935. </member>
  2936. <member name="M:Rhino.Mocks.MockRepository.GeneratePartialMock(System.Type,System.Type[],System.Object[])">
  2937. <summary>
  2938. </summary>
  2939. <param name="type"></param>
  2940. <param name="extraTypes"></param>
  2941. <param name="argumentsForConstructor"></param>
  2942. <returns></returns>
  2943. </member>
  2944. <member name="M:Rhino.Mocks.MockRepository.GenerateDynamicMockWithRemoting``1(System.Object[])">
  2945. <summary>
  2946. Generate a mock object with dynamic replay semantics and remoting without needing the mock repository
  2947. </summary>
  2948. </member>
  2949. <member name="M:Rhino.Mocks.MockRepository.GenerateStrictMockWithRemoting``1(System.Object[])">
  2950. <summary>
  2951. Generate a mock object with strict replay semantics and remoting without needing the mock repository
  2952. </summary>
  2953. </member>
  2954. <member name="M:Rhino.Mocks.MockRepository.CreateMockInReplay``1(System.Func{Rhino.Mocks.MockRepository,``0})">
  2955. <summary>Helper method to create a mock object without a repository instance and put the object back into replay mode.</summary>
  2956. <typeparam name="T">The type of mock object to create</typeparam>
  2957. <param name="createMock">A delegate that uses a mock repository instance to create the underlying mock</param>
  2958. <returns>The mock object in the replay mode.</returns>
  2959. </member>
  2960. <member name="M:Rhino.Mocks.MockRepository.Record">
  2961. <summary>
  2962. </summary>
  2963. <returns></returns>
  2964. </member>
  2965. <member name="M:Rhino.Mocks.MockRepository.Playback">
  2966. <summary>
  2967. </summary>
  2968. <returns></returns>
  2969. </member>
  2970. <member name="F:Rhino.Mocks.MockRepository.generatorMap">
  2971. <summary>
  2972. This is a map of types to ProxyGenerators.
  2973. </summary>
  2974. </member>
  2975. <member name="F:Rhino.Mocks.MockRepository.lastRepository">
  2976. <summary>
  2977. This is used to record the last repository that has a method called on it.
  2978. </summary>
  2979. </member>
  2980. <member name="F:Rhino.Mocks.MockRepository.lastMockedObject">
  2981. <summary>
  2982. this is used to get to the last proxy on this repository.
  2983. </summary>
  2984. </member>
  2985. <member name="F:Rhino.Mocks.MockRepository.delegateProxies">
  2986. <summary>
  2987. For mock delegates, maps the proxy instance from intercepted invocations
  2988. back to the delegate that was originally returned to client code, if any.
  2989. </summary>
  2990. </member>
  2991. <member name="F:Rhino.Mocks.MockRepository.proxies">
  2992. <summary>
  2993. All the proxies in the mock repositories
  2994. </summary>
  2995. </member>
  2996. <member name="F:Rhino.Mocks.MockRepository.repeatableMethods">
  2997. <summary>
  2998. This is here because we can't put it in any of the recorders, since repeatable methods
  2999. have no orderring, and if we try to handle them using the usual manner, we would get into
  3000. wierd situations where repeatable method that was defined in an orderring block doesn't
  3001. exists until we enter this block.
  3002. </summary>
  3003. </member>
  3004. <member name="M:Rhino.Mocks.MockRepository.#ctor">
  3005. <summary>
  3006. Creates a new <see cref="T:Rhino.Mocks.MockRepository"/> instance.
  3007. </summary>
  3008. </member>
  3009. <member name="M:Rhino.Mocks.MockRepository.Ordered">
  3010. <summary>
  3011. Move the repository to ordered mode
  3012. </summary>
  3013. </member>
  3014. <member name="M:Rhino.Mocks.MockRepository.Unordered">
  3015. <summary>
  3016. Move the repository to un-ordered mode
  3017. </summary>
  3018. </member>
  3019. <member name="M:Rhino.Mocks.MockRepository.CreateMock(System.Type,System.Object[])">
  3020. <summary>
  3021. Creates a mock for the specified type.
  3022. </summary>
  3023. <param name="type">Type.</param>
  3024. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3025. </member>
  3026. <member name="M:Rhino.Mocks.MockRepository.StrictMock(System.Type,System.Object[])">
  3027. <summary>
  3028. Creates a strict mock for the specified type.
  3029. </summary>
  3030. <param name="type">Type.</param>
  3031. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3032. </member>
  3033. <member name="M:Rhino.Mocks.MockRepository.CreateMockWithRemoting(System.Type,System.Object[])">
  3034. <summary>
  3035. Creates a remoting mock for the specified type.
  3036. </summary>
  3037. <param name="type">Type.</param>
  3038. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3039. </member>
  3040. <member name="M:Rhino.Mocks.MockRepository.StrictMockWithRemoting(System.Type,System.Object[])">
  3041. <summary>
  3042. Creates a strict remoting mock for the specified type.
  3043. </summary>
  3044. <param name="type">Type.</param>
  3045. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3046. </member>
  3047. <member name="M:Rhino.Mocks.MockRepository.CreateMockWithRemoting``1(System.Object[])">
  3048. <summary>
  3049. Creates a remoting mock for the specified type.
  3050. </summary>
  3051. <typeparam name="T"></typeparam>
  3052. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3053. <returns></returns>
  3054. </member>
  3055. <member name="M:Rhino.Mocks.MockRepository.StrictMockWithRemoting``1(System.Object[])">
  3056. <summary>
  3057. Creates a strict remoting mock for the specified type.
  3058. </summary>
  3059. <typeparam name="T"></typeparam>
  3060. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3061. <returns></returns>
  3062. </member>
  3063. <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock(System.Type,System.Type[])">
  3064. <summary>
  3065. Creates a mock from several types, with strict semantics.
  3066. Only <paramref name="mainType"/> may be a class.
  3067. </summary>
  3068. </member>
  3069. <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[])">
  3070. <summary>
  3071. Creates a strict mock from several types, with strict semantics.
  3072. Only <paramref name="mainType"/> may be a class.
  3073. </summary>
  3074. </member>
  3075. <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock(System.Type,System.Type[],System.Object[])">
  3076. <summary>
  3077. Creates a mock from several types, with strict semantics.
  3078. Only <paramref name="mainType"/> may be a class.
  3079. </summary>
  3080. <param name="mainType">The main type to mock.</param>
  3081. <param name="extraTypes">Extra interface types to mock.</param>
  3082. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class.</param>
  3083. </member>
  3084. <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock(System.Type,System.Type[],System.Object[])">
  3085. <summary>
  3086. Creates a strict mock from several types, with strict semantics.
  3087. Only <paramref name="mainType"/> may be a class.
  3088. </summary>
  3089. <param name="mainType">The main type to mock.</param>
  3090. <param name="extraTypes">Extra interface types to mock.</param>
  3091. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class.</param>
  3092. </member>
  3093. <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[])">
  3094. <summary>
  3095. Creates a mock from several types, with dynamic semantics.
  3096. Only <paramref name="mainType"/> may be a class.
  3097. </summary>
  3098. <param name="mainType">The main type to mock.</param>
  3099. <param name="extraTypes">Extra interface types to mock.</param>
  3100. </member>
  3101. <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock(System.Type,System.Type[],System.Object[])">
  3102. <summary>
  3103. Creates a mock from several types, with dynamic semantics.
  3104. Only <paramref name="mainType"/> may be a class.
  3105. </summary>
  3106. <param name="mainType">The main type to mock.</param>
  3107. <param name="extraTypes">Extra interface types to mock.</param>
  3108. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class.</param>
  3109. </member>
  3110. <member name="M:Rhino.Mocks.MockRepository.DynamicMock(System.Type,System.Object[])">
  3111. <summary>Creates a dynamic mock for the specified type.</summary>
  3112. <param name="type">Type.</param>
  3113. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3114. </member>
  3115. <member name="M:Rhino.Mocks.MockRepository.DynamicMockWithRemoting(System.Type,System.Object[])">
  3116. <summary>Creates a dynamic mock for the specified type.</summary>
  3117. <param name="type">Type.</param>
  3118. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3119. </member>
  3120. <member name="M:Rhino.Mocks.MockRepository.DynamicMockWithRemoting``1(System.Object[])">
  3121. <summary>Creates a dynamic mock for the specified type.</summary>
  3122. <typeparam name="T"></typeparam>
  3123. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3124. <returns></returns>
  3125. </member>
  3126. <member name="M:Rhino.Mocks.MockRepository.PartialMock(System.Type,System.Object[])">
  3127. <summary>Creates a mock object that defaults to calling the class methods if no expectation is set on the method.</summary>
  3128. <param name="type">Type.</param>
  3129. <param name="argumentsForConstructor">Arguments for the class' constructor.</param>
  3130. </member>
  3131. <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock(System.Type,System.Type[])">
  3132. <summary>Creates a mock object that defaults to calling the class methods.</summary>
  3133. <param name="type">Type.</param>
  3134. <param name="extraTypes">Extra interface types to mock.</param>
  3135. </member>
  3136. <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock(System.Type,System.Type[],System.Object[])">
  3137. <summary>Creates a mock object that defaults to calling the class methods.</summary>
  3138. <param name="type">Type.</param>
  3139. <param name="extraTypes">Extra interface types to mock.</param>
  3140. <param name="argumentsForConstructor">Arguments for the class' constructor.</param>
  3141. </member>
  3142. <member name="M:Rhino.Mocks.MockRepository.RemotingMock(System.Type,Rhino.Mocks.MockRepository.CreateMockState)">
  3143. <summary>Creates a mock object using remoting proxies</summary>
  3144. <param name="type">Type to mock - must be MarshalByRefObject</param>
  3145. <returns>Mock object</returns>
  3146. <remarks>Proxy mock can mock non-virtual methods, but not static methods</remarks>
  3147. <param name="factory">Creates the mock state for this proxy</param>
  3148. </member>
  3149. <member name="M:Rhino.Mocks.MockRepository.Replay(System.Object)">
  3150. <summary>
  3151. Cause the mock state to change to replay, any further call is compared to the
  3152. ones that were called in the record state.
  3153. </summary>
  3154. <remarks>This method *cannot* be called from inside an ordering.</remarks>
  3155. <param name="obj">the object to move to replay state</param>
  3156. </member>
  3157. <member name="M:Rhino.Mocks.MockRepository.ReplayCore(System.Object,System.Boolean)">
  3158. <summary>
  3159. Cause the mock state to change to replay, any further call is compared to the
  3160. ones that were called in the record state.
  3161. </summary>
  3162. <param name="obj">the object to move to replay state</param>
  3163. <param name="checkInsideOrdering"></param>
  3164. </member>
  3165. <member name="M:Rhino.Mocks.MockRepository.BackToRecord(System.Object)">
  3166. <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>
  3167. <remarks>Will delete all current expectations!</remarks>
  3168. </member>
  3169. <member name="M:Rhino.Mocks.MockRepository.BackToRecord(System.Object,Rhino.Mocks.BackToRecordOptions)">
  3170. <summary>
  3171. Move the mocked object back to record state.
  3172. Optionally, can delete all current expectations, but allows more granularity about how
  3173. it would behave with regard to the object state.
  3174. </summary>
  3175. </member>
  3176. <member name="M:Rhino.Mocks.MockRepository.Verify(System.Object)">
  3177. <summary>
  3178. Verify that all the expectations for this object were fulfilled.
  3179. </summary>
  3180. <param name="obj">the object to verify the expectations for</param>
  3181. </member>
  3182. <member name="M:Rhino.Mocks.MockRepository.LastMethodCall``1(System.Object)">
  3183. <summary>
  3184. Get the method options for the last call on
  3185. mockedInstance.
  3186. </summary>
  3187. <param name="mockedInstance">The mock object</param>
  3188. <returns>Method options for the last call</returns>
  3189. </member>
  3190. <member name="M:Rhino.Mocks.MockRepository.GetMockObjectFromInvocationProxy(System.Object)">
  3191. <summary>
  3192. Maps an invocation proxy back to the mock object instance that was originally
  3193. returned to client code which might have been a delegate to this proxy.
  3194. </summary>
  3195. <param name="invocationProxy">The mock object proxy from the intercepted invocation</param>
  3196. <returns>The mock object</returns>
  3197. </member>
  3198. <member name="M:Rhino.Mocks.MockRepository.CreateMockObject(System.Type,Rhino.Mocks.MockRepository.CreateMockState,System.Type[],System.Object[])">
  3199. <summary>This is provided to allow advance extention functionality, where Rhino Mocks standard functionality is not enough.</summary>
  3200. <param name="type">The type to mock</param>
  3201. <param name="factory">Delegate that create the first state of the mocked object (usualy the record state).</param>
  3202. <param name="extras">Additional types to be implemented, this can be only interfaces </param>
  3203. <param name="argumentsForConstructor">optional arguments for the constructor</param>
  3204. <returns></returns>
  3205. </member>
  3206. <member name="M:Rhino.Mocks.MockRepository.GetMockedObject(System.Object)">
  3207. <summary>
  3208. Method: GetMockedObject
  3209. Get an IProxy from a mocked object instance, or throws if the
  3210. object is not a mock object.
  3211. </summary>
  3212. </member>
  3213. <member name="M:Rhino.Mocks.MockRepository.GetMockedObjectOrNull(System.Object)">
  3214. <summary>
  3215. Method: GetMockedObjectOrNull
  3216. Get an IProxy from a mocked object instance, or null if the
  3217. object is not a mock object.
  3218. </summary>
  3219. </member>
  3220. <member name="M:Rhino.Mocks.MockRepository.PopRecorder">
  3221. <summary>Pops the recorder.</summary>
  3222. </member>
  3223. <member name="M:Rhino.Mocks.MockRepository.PushRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
  3224. <summary>Pushes the recorder.</summary>
  3225. <param name="newRecorder">New recorder.</param>
  3226. </member>
  3227. <member name="M:Rhino.Mocks.MockRepository.BackToRecordAll">
  3228. <summary>
  3229. All the mock objects in this repository will be moved
  3230. to record state.
  3231. </summary>
  3232. </member>
  3233. <member name="M:Rhino.Mocks.MockRepository.BackToRecordAll(Rhino.Mocks.BackToRecordOptions)">
  3234. <summary>
  3235. All the mock objects in this repository will be moved
  3236. to record state.
  3237. </summary>
  3238. </member>
  3239. <member name="M:Rhino.Mocks.MockRepository.ReplayAll">
  3240. <summary>
  3241. Replay all the mocks from this repository
  3242. </summary>
  3243. </member>
  3244. <member name="M:Rhino.Mocks.MockRepository.VerifyAll">
  3245. <summary>
  3246. Verify all the mocks from this repository
  3247. </summary>
  3248. </member>
  3249. <member name="M:Rhino.Mocks.MockRepository.GetProxyGenerator(System.Type)">
  3250. <summary>
  3251. Gets the proxy generator for a specific type. Having a single ProxyGenerator
  3252. with multiple types linearly degrades the performance so this implementation
  3253. keeps one ProxyGenerator per type.
  3254. </summary>
  3255. </member>
  3256. <member name="M:Rhino.Mocks.MockRepository.SetExceptionToBeThrownOnVerify(System.Object,Rhino.Mocks.Exceptions.ExpectationViolationException)">
  3257. <summary>Set the exception to be thrown when verified is called.</summary>
  3258. </member>
  3259. <member name="M:Rhino.Mocks.MockRepository.CreateMock``1(System.Object[])">
  3260. <summary>
  3261. Creates a mock for the spesified type with strict mocking semantics.
  3262. <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>
  3263. </summary>
  3264. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3265. </member>
  3266. <member name="M:Rhino.Mocks.MockRepository.StrictMock``1(System.Object[])">
  3267. <summary>
  3268. Creates a mock for the spesified type with strict mocking semantics.
  3269. <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>
  3270. </summary>
  3271. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3272. </member>
  3273. <member name="M:Rhino.Mocks.MockRepository.DynamicMock``1(System.Object[])">
  3274. <summary>
  3275. Creates a dynamic mock for the specified type.
  3276. </summary>
  3277. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3278. </member>
  3279. <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock``1(System.Type[])">
  3280. <summary>
  3281. Creates a mock object from several types.
  3282. </summary>
  3283. </member>
  3284. <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock``1(System.Type[])">
  3285. <summary>
  3286. Creates a strict mock object from several types.
  3287. </summary>
  3288. </member>
  3289. <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock``1(System.Type[])">
  3290. <summary>
  3291. Create a mock object from several types with dynamic semantics.
  3292. </summary>
  3293. </member>
  3294. <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock``1(System.Type[])">
  3295. <summary>
  3296. Create a mock object from several types with partial semantics.
  3297. </summary>
  3298. </member>
  3299. <member name="M:Rhino.Mocks.MockRepository.CreateMultiMock``1(System.Type[],System.Object[])">
  3300. <summary>
  3301. Create a mock object from several types with strict semantics.
  3302. </summary>
  3303. <param name="extraTypes">Extra interface types to mock.</param>
  3304. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3305. </member>
  3306. <member name="M:Rhino.Mocks.MockRepository.StrictMultiMock``1(System.Type[],System.Object[])">
  3307. <summary>
  3308. Create a strict mock object from several types with strict semantics.
  3309. </summary>
  3310. <param name="extraTypes">Extra interface types to mock.</param>
  3311. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3312. </member>
  3313. <member name="M:Rhino.Mocks.MockRepository.DynamicMultiMock``1(System.Type[],System.Object[])">
  3314. <summary>
  3315. Create a mock object from several types with dynamic semantics.
  3316. </summary>
  3317. <param name="extraTypes">Extra interface types to mock.</param>
  3318. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3319. </member>
  3320. <member name="M:Rhino.Mocks.MockRepository.PartialMultiMock``1(System.Type[],System.Object[])">
  3321. <summary>
  3322. Create a mock object from several types with partial semantics.
  3323. </summary>
  3324. <param name="extraTypes">Extra interface types to mock.</param>
  3325. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3326. </member>
  3327. <member name="M:Rhino.Mocks.MockRepository.PartialMock``1(System.Object[])">
  3328. <summary>
  3329. Create a mock object with from a class that defaults to calling the class methods
  3330. </summary>
  3331. <param name="argumentsForConstructor">Arguments for the class' constructor, if mocking a concrete class</param>
  3332. </member>
  3333. <member name="M:Rhino.Mocks.MockRepository.Stub``1(System.Object[])">
  3334. <summary>
  3335. Create a stub object, one that has properties and events ready for use, and
  3336. can have methods called on it. It requires an explicit step in order to create
  3337. an expectation for a stub.
  3338. </summary>
  3339. <param name="argumentsForConstructor">The arguments for constructor.</param>
  3340. </member>
  3341. <member name="M:Rhino.Mocks.MockRepository.Stub(System.Type,System.Object[])">
  3342. <summary>
  3343. Create a stub object, one that has properties and events ready for use, and
  3344. can have methods called on it. It requires an explicit step in order to create
  3345. an expectation for a stub.
  3346. </summary>
  3347. <param name="type">The type.</param>
  3348. <param name="argumentsForConstructor">The arguments for constructor.</param>
  3349. <returns>The stub</returns>
  3350. </member>
  3351. <member name="M:Rhino.Mocks.MockRepository.IsInReplayMode(System.Object)">
  3352. <summary>
  3353. Returns true if the passed mock is currently in replay mode.
  3354. </summary>
  3355. <param name="mock">The mock to test.</param>
  3356. <returns>True if the mock is in replay mode, false otherwise.</returns>
  3357. </member>
  3358. <member name="M:Rhino.Mocks.MockRepository.IsStub(System.Object)">
  3359. <summary>
  3360. Determines whether the specified proxy is a stub.
  3361. </summary>
  3362. <param name="proxy">The proxy.</param>
  3363. </member>
  3364. <member name="M:Rhino.Mocks.MockRepository.RegisterPropertyBehaviorOn(Rhino.Mocks.Interfaces.IMockedObject)">
  3365. <summary>
  3366. Register a call on a prperty behavior
  3367. </summary>
  3368. <param name="instance"></param>
  3369. </member>
  3370. <member name="P:Rhino.Mocks.MockRepository.Recorder">
  3371. <summary>
  3372. Gets the recorder.
  3373. </summary>
  3374. <value></value>
  3375. </member>
  3376. <member name="P:Rhino.Mocks.MockRepository.Replayer">
  3377. <summary>
  3378. Gets the replayer for this repository.
  3379. </summary>
  3380. <value></value>
  3381. </member>
  3382. <member name="P:Rhino.Mocks.MockRepository.LastMockedObject">
  3383. <summary>
  3384. Gets the last proxy which had a method call.
  3385. </summary>
  3386. </member>
  3387. <member name="T:Rhino.Mocks.MockRepository.CreateMockState">
  3388. <summary>
  3389. Delegate: CreateMockState
  3390. This is used internally to cleanly handle the creation of different
  3391. RecordMockStates.
  3392. </summary>
  3393. </member>
  3394. <member name="T:Rhino.Mocks.RhinoMocksExtensions">
  3395. <summary>
  3396. A set of extension methods that adds Arrange Act Assert mode to Rhino Mocks
  3397. </summary>
  3398. </member>
  3399. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Expect``1(``0,System.Action{``0})">
  3400. <summary>
  3401. Create an expectation on this mock for this action to occur
  3402. </summary>
  3403. <typeparam name="T"></typeparam>
  3404. <param name="mock">The mock.</param>
  3405. <param name="action">The action.</param>
  3406. <returns></returns>
  3407. </member>
  3408. <member name="M:Rhino.Mocks.RhinoMocksExtensions.BackToRecord``1(``0)">
  3409. <summary>
  3410. Reset all expectations on this mock object
  3411. </summary>
  3412. <typeparam name="T"></typeparam>
  3413. <param name="mock">The mock.</param>
  3414. </member>
  3415. <member name="M:Rhino.Mocks.RhinoMocksExtensions.BackToRecord``1(``0,Rhino.Mocks.BackToRecordOptions)">
  3416. <summary>
  3417. Reset the selected expectation on this mock object
  3418. </summary>
  3419. <typeparam name="T"></typeparam>
  3420. <param name="mock">The mock.</param>
  3421. <param name="options">The options to reset the expectations on this mock.</param>
  3422. </member>
  3423. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Replay``1(``0)">
  3424. <summary>
  3425. Cause the mock state to change to replay, any further call is compared to the
  3426. ones that were called in the record state.
  3427. </summary>
  3428. <param name="mock">the mocked object to move to replay state</param>
  3429. </member>
  3430. <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetMockRepository``1(``0)">
  3431. <summary>
  3432. Gets the mock repository for this specificied mock object
  3433. </summary>
  3434. <typeparam name="T"></typeparam>
  3435. <param name="mock">The mock.</param>
  3436. <returns></returns>
  3437. </member>
  3438. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Expect``2(``0,Rhino.Mocks.Function{``0,``1})">
  3439. <summary>
  3440. Create an expectation on this mock for this action to occur
  3441. </summary>
  3442. <typeparam name="T"></typeparam>
  3443. <typeparam name="R"></typeparam>
  3444. <param name="mock">The mock.</param>
  3445. <param name="action">The action.</param>
  3446. <returns></returns>
  3447. </member>
  3448. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Stub``1(``0,System.Action{``0})">
  3449. <summary>
  3450. Tell the mock object to perform a certain action when a matching
  3451. method is called.
  3452. Does not create an expectation for this method.
  3453. </summary>
  3454. <typeparam name="T"></typeparam>
  3455. <param name="mock">The mock.</param>
  3456. <param name="action">The action.</param>
  3457. <returns></returns>
  3458. </member>
  3459. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Stub``2(``0,Rhino.Mocks.Function{``0,``1})">
  3460. <summary>
  3461. Tell the mock object to perform a certain action when a matching
  3462. method is called.
  3463. Does not create an expectation for this method.
  3464. </summary>
  3465. <typeparam name="T"></typeparam>
  3466. <typeparam name="R"></typeparam>
  3467. <param name="mock">The mock.</param>
  3468. <param name="action">The action.</param>
  3469. <returns></returns>
  3470. </member>
  3471. <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetArgumentsForCallsMadeOn``1(``0,System.Action{``0})">
  3472. <summary>
  3473. Gets the arguments for calls made on this mock object and the method that was called
  3474. in the action.
  3475. </summary>
  3476. <typeparam name="T"></typeparam>
  3477. <param name="mock">The mock.</param>
  3478. <param name="action">The action.</param>
  3479. <returns></returns>
  3480. <example>
  3481. Here we will get all the arguments for all the calls made to DoSomething(int)
  3482. <code>
  3483. var argsForCalls = foo54.GetArgumentsForCallsMadeOn(x =&gt; x.DoSomething(0))
  3484. </code>
  3485. </example>
  3486. </member>
  3487. <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetArgumentsForCallsMadeOn``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
  3488. <summary>
  3489. Gets the arguments for calls made on this mock object and the method that was called
  3490. in the action and matches the given constraints
  3491. </summary>
  3492. <typeparam name="T"></typeparam>
  3493. <param name="mock">The mock.</param>
  3494. <param name="action">The action.</param>
  3495. <param name="setupConstraints">The setup constraints.</param>
  3496. <returns></returns>
  3497. <example>
  3498. Here we will get all the arguments for all the calls made to DoSomething(int)
  3499. <code>
  3500. var argsForCalls = foo54.GetArgumentsForCallsMadeOn(x =&gt; x.DoSomething(0))
  3501. </code>
  3502. </example>
  3503. </member>
  3504. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Action{``0})">
  3505. <summary>
  3506. Asserts that a particular method was called on this mock object
  3507. </summary>
  3508. <typeparam name="T"></typeparam>
  3509. <param name="mock">The mock.</param>
  3510. <param name="action">The action.</param>
  3511. </member>
  3512. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
  3513. <summary>
  3514. Asserts that a particular method was called on this mock object that match
  3515. a particular constraint set.
  3516. </summary>
  3517. <typeparam name="T"></typeparam>
  3518. <param name="mock">The mock.</param>
  3519. <param name="action">The action.</param>
  3520. <param name="setupConstraints">The setup constraints.</param>
  3521. </member>
  3522. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Func{``0,System.Object})">
  3523. <summary>
  3524. Asserts that a particular method was called on this mock object that match
  3525. a particular constraint set.
  3526. </summary>
  3527. <typeparam name="T"></typeparam>
  3528. <param name="mock">The mock.</param>
  3529. <param name="action">The action.</param>
  3530. </member>
  3531. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Func{``0,System.Object},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
  3532. <summary>
  3533. Asserts that a particular method was called on this mock object that match
  3534. a particular constraint set.
  3535. </summary>
  3536. <typeparam name="T"></typeparam>
  3537. <param name="mock">The mock.</param>
  3538. <param name="action">The action.</param>
  3539. <param name="setupConstraints">The setup constraints.</param>
  3540. </member>
  3541. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Action{``0})">
  3542. <summary>
  3543. Asserts that a particular method was NOT called on this mock object
  3544. </summary>
  3545. <typeparam name="T"></typeparam>
  3546. <param name="mock">The mock.</param>
  3547. <param name="action">The action.</param>
  3548. </member>
  3549. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
  3550. <summary>
  3551. Asserts that a particular method was NOT called on this mock object that match
  3552. a particular constraint set.
  3553. </summary>
  3554. <typeparam name="T"></typeparam>
  3555. <param name="mock">The mock.</param>
  3556. <param name="action">The action.</param>
  3557. <param name="setupConstraints">The setup constraints.</param>
  3558. </member>
  3559. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Func{``0,System.Object})">
  3560. <summary>
  3561. Asserts that a particular method was NOT called on this mock object
  3562. </summary>
  3563. <typeparam name="T"></typeparam>
  3564. <param name="mock">The mock.</param>
  3565. <param name="action">The action.</param>
  3566. </member>
  3567. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Func{``0,System.Object},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})">
  3568. <summary>
  3569. Asserts that a particular method was NOT called on this mock object
  3570. </summary>
  3571. <typeparam name="T"></typeparam>
  3572. <param name="mock">The mock.</param>
  3573. <param name="action">The action.</param>
  3574. <param name="setupConstraints">The setup constraints.</param>
  3575. </member>
  3576. <member name="M:Rhino.Mocks.RhinoMocksExtensions.FindAppropriteType``1(Rhino.Mocks.Interfaces.IMockedObject)">
  3577. <summary>
  3578. Finds the approprite implementation type of this item.
  3579. This is the class or an interface outside of the rhino mocks.
  3580. </summary>
  3581. <param name="mockedObj">The mocked obj.</param>
  3582. <returns></returns>
  3583. </member>
  3584. <member name="M:Rhino.Mocks.RhinoMocksExtensions.VerifyAllExpectations(System.Object)">
  3585. <summary>
  3586. Verifies all expectations on this mock object
  3587. </summary>
  3588. <param name="mockObject">The mock object.</param>
  3589. </member>
  3590. <member name="M:Rhino.Mocks.RhinoMocksExtensions.GetEventRaiser``1(``0,System.Action{``0})">
  3591. <summary>
  3592. Gets the event raiser for the event that was called in the action passed
  3593. </summary>
  3594. <typeparam name="TEventSource">The type of the event source.</typeparam>
  3595. <param name="mockObject">The mock object.</param>
  3596. <param name="eventSubscription">The event subscription.</param>
  3597. <returns></returns>
  3598. </member>
  3599. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Raise``1(``0,System.Action{``0},System.Object,System.EventArgs)">
  3600. <summary>
  3601. Raise the specified event using the passed arguments.
  3602. The even is extracted from the passed labmda
  3603. </summary>
  3604. <typeparam name="TEventSource">The type of the event source.</typeparam>
  3605. <param name="mockObject">The mock object.</param>
  3606. <param name="eventSubscription">The event subscription.</param>
  3607. <param name="sender">The sender.</param>
  3608. <param name="args">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
  3609. </member>
  3610. <member name="M:Rhino.Mocks.RhinoMocksExtensions.Raise``1(``0,System.Action{``0},System.Object[])">
  3611. <summary>
  3612. Raise the specified event using the passed arguments.
  3613. The even is extracted from the passed labmda
  3614. </summary>
  3615. <typeparam name="TEventSource">The type of the event source.</typeparam>
  3616. <param name="mockObject">The mock object.</param>
  3617. <param name="eventSubscription">The event subscription.</param>
  3618. <param name="args">The args.</param>
  3619. </member>
  3620. <member name="M:Rhino.Mocks.RhinoMocksExtensions.AssertExactlySingleExpectaton``1(Rhino.Mocks.MockRepository,``0)">
  3621. <summary>TODO: Make this better! It currently breaks down when mocking classes or
  3622. ABC's that call other virtual methods which are getting intercepted too. I wish
  3623. we could just walk Expression{Action{Action{T}} to assert only a single
  3624. method is being made.
  3625. The workaround is to not call foo.AssertWasCalled .. rather foo.VerifyAllExpectations()</summary>
  3626. <typeparam name="T">The type of mock object</typeparam>
  3627. <param name="mocks">The mock repository</param>
  3628. <param name="mockToRecordExpectation">The actual mock object to assert expectations on.</param>
  3629. </member>
  3630. <member name="T:Rhino.Mocks.RhinoMocksExtensions.VoidType">
  3631. <summary>
  3632. Fake type that disallow creating it.
  3633. Should have been System.Type, but we can't use it.
  3634. </summary>
  3635. </member>
  3636. <member name="T:Rhino.Mocks.Utilities.GenericsUtil">
  3637. <summary>
  3638. Utility class for dealing with messing generics scenarios.
  3639. </summary>
  3640. </member>
  3641. <member name="M:Rhino.Mocks.Utilities.GenericsUtil.HasOpenGenericParam(System.Type)">
  3642. <summary>
  3643. There are issues with trying to get this to work correctly with open generic types, since this is an edge case,
  3644. I am letting the runtime handle it.
  3645. </summary>
  3646. </member>
  3647. <member name="M:Rhino.Mocks.Utilities.GenericsUtil.GetRealType(System.Type,Castle.Core.Interceptor.IInvocation)">
  3648. <summary>
  3649. Gets the real type, including de-constructing and constructing the type of generic
  3650. methods parameters.
  3651. </summary>
  3652. <param name="type">The type.</param>
  3653. <param name="invocation">The invocation.</param>
  3654. <returns></returns>
  3655. </member>
  3656. <member name="M:Rhino.Mocks.Utilities.GenericsUtil.ReconstructGenericType(System.Type,System.Collections.Generic.Dictionary{System.String,System.Type})">
  3657. <summary>
  3658. Because we need to support complex types here (simple generics were handled above) we
  3659. need to be aware of the following scenarios:
  3660. List[T] and List[Foo[T]]
  3661. </summary>
  3662. </member>
  3663. <member name="T:Rhino.Mocks.Generated.ExpectationsList">
  3664. <summary>
  3665. ExpectationsList
  3666. </summary>
  3667. </member>
  3668. <member name="T:Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary">
  3669. <summary>
  3670. Dictionary
  3671. </summary>
  3672. </member>
  3673. <member name="T:Rhino.Mocks.Generated.ProxyStateDictionary">
  3674. <summary>
  3675. Dictionary class
  3676. </summary>
  3677. </member>
  3678. <member name="M:Rhino.Mocks.Generated.ProxyStateDictionary.#ctor">
  3679. <summary>
  3680. Create a new instance of <c>ProxyStateDictionary</c>
  3681. </summary>
  3682. </member>
  3683. <member name="T:Rhino.Mocks.Impl.CreateMethodExpectation">
  3684. <summary>
  3685. Allows to call a method and immediately get it's options.
  3686. </summary>
  3687. </member>
  3688. <member name="T:Rhino.Mocks.Interfaces.ICreateMethodExpectation">
  3689. <summary>
  3690. Interface to allow calling a method and immediately get it's options.
  3691. </summary>
  3692. </member>
  3693. <member name="M:Rhino.Mocks.Interfaces.ICreateMethodExpectation.Call``1(``0)">
  3694. <summary>
  3695. Get the method options for the call
  3696. </summary>
  3697. <param name="ignored">The method call should go here, the return value is ignored</param>
  3698. </member>
  3699. <member name="M:Rhino.Mocks.Impl.CreateMethodExpectation.#ctor(Rhino.Mocks.Interfaces.IMockedObject,System.Object)">
  3700. <summary>
  3701. Creates a new <see cref="T:Rhino.Mocks.Impl.CreateMethodExpectation"/> instance.
  3702. </summary>
  3703. </member>
  3704. <member name="M:Rhino.Mocks.Impl.CreateMethodExpectation.Call``1(``0)">
  3705. <summary>
  3706. Get the method options for the call
  3707. </summary>
  3708. <param name="ignored">The method call should go here, the return value is ignored</param>
  3709. </member>
  3710. <member name="T:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult">
  3711. <summary>
  3712. Allows to call a method and immediately get it's options.
  3713. Set the expected number for the call to Any()
  3714. </summary>
  3715. </member>
  3716. <member name="M:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult.#ctor(Rhino.Mocks.Interfaces.IMockedObject,System.Object)">
  3717. <summary>
  3718. Creates a new <see cref="T:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult"/> instance.
  3719. </summary>
  3720. <param name="mockedObject">Proxy.</param>
  3721. <param name="mockedInstance">Mocked instance.</param>
  3722. </member>
  3723. <member name="M:Rhino.Mocks.Impl.CreateMethodExpectationForSetupResult.Call``1(``0)">
  3724. <summary>
  3725. Get the method options for the call
  3726. </summary>
  3727. <param name="ignored">The method call should go here, the return value is ignored</param>
  3728. </member>
  3729. <member name="T:Rhino.Mocks.Impl.DelegateTargetInterfaceCreator">
  3730. <summary>
  3731. This class is reponsible for taking a delegate and creating a wrapper
  3732. interface around it, so it can be mocked.
  3733. </summary>
  3734. </member>
  3735. <member name="F:Rhino.Mocks.Impl.DelegateTargetInterfaceCreator.moduleScope">
  3736. <summary>
  3737. The scope for all the delegate interfaces create by this mock repository.
  3738. </summary>
  3739. </member>
  3740. <member name="M:Rhino.Mocks.Impl.DelegateTargetInterfaceCreator.GetDelegateTargetInterface(System.Type)">
  3741. <summary>
  3742. Gets a type with an "Invoke" method suitable for use as a target of the
  3743. specified delegate type.
  3744. </summary>
  3745. <param name="delegateType"></param>
  3746. <returns></returns>
  3747. </member>
  3748. <member name="T:Rhino.Mocks.Impl.EventRaiser">
  3749. <summary>
  3750. Raise events for all subscribers for an event
  3751. </summary>
  3752. </member>
  3753. <member name="T:Rhino.Mocks.Interfaces.IEventRaiser">
  3754. <summary>
  3755. Raise events for all subscribers for an event
  3756. </summary>
  3757. </member>
  3758. <member name="M:Rhino.Mocks.Interfaces.IEventRaiser.Raise(System.Object[])">
  3759. <summary>
  3760. Raise the event
  3761. </summary>
  3762. </member>
  3763. <member name="M:Rhino.Mocks.Interfaces.IEventRaiser.Raise(System.Object,System.EventArgs)">
  3764. <summary>
  3765. The most common form for the event handler signature
  3766. </summary>
  3767. </member>
  3768. <member name="M:Rhino.Mocks.Impl.EventRaiser.Create(System.Object,System.String)">
  3769. <summary>
  3770. Create an event raiser for the specified event on this instance.
  3771. </summary>
  3772. </member>
  3773. <member name="M:Rhino.Mocks.Impl.EventRaiser.#ctor(Rhino.Mocks.Interfaces.IMockedObject,System.String)">
  3774. <summary>
  3775. Creates a new instance of <c>EventRaiser</c>
  3776. </summary>
  3777. </member>
  3778. <member name="M:Rhino.Mocks.Impl.EventRaiser.Raise(System.Object[])">
  3779. <summary>
  3780. Raise the event
  3781. </summary>
  3782. </member>
  3783. <member name="M:Rhino.Mocks.Impl.EventRaiser.Raise(System.Object,System.EventArgs)">
  3784. <summary>
  3785. The most common signature for events
  3786. Here to allow intellisense to make better guesses about how
  3787. it should suggest parameters.
  3788. </summary>
  3789. </member>
  3790. <member name="T:Rhino.Mocks.Impl.MethodOptions`1">
  3791. <summary>
  3792. Allows to define what would happen when a method
  3793. is called.
  3794. </summary>
  3795. </member>
  3796. <member name="T:Rhino.Mocks.Interfaces.IMethodOptions`1">
  3797. <summary>
  3798. Allows to define what would happen when a method
  3799. is called.
  3800. </summary>
  3801. </member>
  3802. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Return(`0)">
  3803. <summary>
  3804. Set the return value for the method.
  3805. </summary>
  3806. <param name="objToReturn">The object the method will return</param>
  3807. <returns>IRepeat that defines how many times the method will return this value</returns>
  3808. </member>
  3809. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.TentativeReturn">
  3810. <summary>
  3811. Allow to override this return value in the future
  3812. </summary>
  3813. <returns>IRepeat that defines how many times the method will return this value</returns>
  3814. </member>
  3815. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Throw(System.Exception)">
  3816. <summary>
  3817. Throws the specified exception when the method is called.
  3818. </summary>
  3819. <param name="exception">Exception to throw</param>
  3820. </member>
  3821. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.IgnoreArguments">
  3822. <summary>
  3823. Ignores the arguments for this method. Any argument will be matched
  3824. againt this method.
  3825. </summary>
  3826. </member>
  3827. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Constraints(Rhino.Mocks.Constraints.AbstractConstraint[])">
  3828. <summary>
  3829. Add constraints for the method's arguments.
  3830. </summary>
  3831. </member>
  3832. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback(System.Delegate)">
  3833. <summary>
  3834. Set a callback method for the last call
  3835. </summary>
  3836. </member>
  3837. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback(Rhino.Mocks.Delegates.Function{System.Boolean})">
  3838. <summary>
  3839. Set a delegate to be called when the expectation is matched.
  3840. The delegate return value will be returned from the expectation.
  3841. </summary>
  3842. </member>
  3843. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``1(Rhino.Mocks.Delegates.Function{System.Boolean,``0})">
  3844. <summary>
  3845. Set a delegate to be called when the expectation is matched.
  3846. The delegate return value will be returned from the expectation.
  3847. </summary>
  3848. </member>
  3849. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``2(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1})">
  3850. <summary>
  3851. Set a delegate to be called when the expectation is matched.
  3852. The delegate return value will be returned from the expectation.
  3853. </summary>
  3854. </member>
  3855. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``3(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2})">
  3856. <summary>
  3857. Set a delegate to be called when the expectation is matched.
  3858. The delegate return value will be returned from the expectation.
  3859. </summary>
  3860. </member>
  3861. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``4(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3})">
  3862. <summary>
  3863. Set a delegate to be called when the expectation is matched.
  3864. The delegate return value will be returned from the expectation.
  3865. </summary>
  3866. </member>
  3867. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``5(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4})">
  3868. <summary>
  3869. Set a delegate to be called when the expectation is matched.
  3870. The delegate return value will be returned from the expectation.
  3871. </summary>
  3872. </member>
  3873. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``6(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5})">
  3874. <summary>
  3875. Set a delegate to be called when the expectation is matched.
  3876. The delegate return value will be returned from the expectation.
  3877. </summary>
  3878. </member>
  3879. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``7(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6})">
  3880. <summary>
  3881. Set a delegate to be called when the expectation is matched.
  3882. The delegate return value will be returned from the expectation.
  3883. </summary>
  3884. </member>
  3885. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Callback``8(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7})">
  3886. <summary>
  3887. Set a delegate to be called when the expectation is matched.
  3888. The delegate return value will be returned from the expectation.
  3889. </summary>
  3890. </member>
  3891. <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})">
  3892. <summary>
  3893. Set a delegate to be called when the expectation is matched.
  3894. The delegate return value will be returned from the expectation.
  3895. </summary>
  3896. </member>
  3897. <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})">
  3898. <summary>
  3899. Set a delegate to be called when the expectation is matched.
  3900. The delegate return value will be returned from the expectation.
  3901. </summary>
  3902. </member>
  3903. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Do(System.Delegate)">
  3904. <summary>
  3905. Set a delegate to be called when the expectation is matched.
  3906. The delegate return value will be returned from the expectation.
  3907. </summary>
  3908. </member>
  3909. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.WhenCalled(System.Action{Rhino.Mocks.MethodInvocation})">
  3910. <summary>
  3911. Set a delegate to be called when the expectation is matched
  3912. and allow to optionally modify the invocation as needed
  3913. </summary>
  3914. </member>
  3915. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.CallOriginalMethod">
  3916. <summary>
  3917. Call the original method on the class, bypassing the mocking layers.
  3918. </summary>
  3919. <returns></returns>
  3920. </member>
  3921. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.CallOriginalMethod(Rhino.Mocks.Interfaces.OriginalCallOptions)">
  3922. <summary>
  3923. Call the original method on the class, optionally bypassing the mocking layers.
  3924. </summary>
  3925. <returns></returns>
  3926. </member>
  3927. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.PropertyBehavior">
  3928. <summary>
  3929. Use the property as a simple property, getting/setting the values without
  3930. causing mock expectations.
  3931. </summary>
  3932. </member>
  3933. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.SetPropertyAndIgnoreArgument">
  3934. <summary>
  3935. Expect last (property) call as property setting, ignore the argument given
  3936. </summary>
  3937. <returns></returns>
  3938. </member>
  3939. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.SetPropertyWithArgument(`0)">
  3940. <summary>
  3941. Expect last (property) call as property setting with a given argument.
  3942. </summary>
  3943. <param name="argument"></param>
  3944. <returns></returns>
  3945. </member>
  3946. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.GetEventRaiser">
  3947. <summary>
  3948. Get an event raiser for the last subscribed event.
  3949. </summary>
  3950. </member>
  3951. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.OutRef(System.Object[])">
  3952. <summary>
  3953. Set the parameter values for out and ref parameters.
  3954. This is done using zero based indexing, and _ignoring_ any non out/ref parameter.
  3955. </summary>
  3956. </member>
  3957. <member name="M:Rhino.Mocks.Interfaces.IMethodOptions`1.Message(System.String)">
  3958. <summary>
  3959. Documentation message for the expectation
  3960. </summary>
  3961. <param name="documentationMessage">Message</param>
  3962. </member>
  3963. <member name="P:Rhino.Mocks.Interfaces.IMethodOptions`1.Repeat">
  3964. <summary>
  3965. Better syntax to define repeats.
  3966. </summary>
  3967. </member>
  3968. <member name="T:Rhino.Mocks.Interfaces.IRepeat`1">
  3969. <summary>
  3970. Allows to specify the number of time for method calls
  3971. </summary>
  3972. </member>
  3973. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Twice">
  3974. <summary>
  3975. Repeat the method twice.
  3976. </summary>
  3977. </member>
  3978. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Once">
  3979. <summary>
  3980. Repeat the method once.
  3981. </summary>
  3982. </member>
  3983. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.AtLeastOnce">
  3984. <summary>
  3985. Repeat the method at least once, then repeat as many time as it would like.
  3986. </summary>
  3987. </member>
  3988. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Any">
  3989. <summary>
  3990. Repeat the method any number of times.
  3991. This has special affects in that this method would now ignore orderring.
  3992. </summary>
  3993. </member>
  3994. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Times(System.Int32,System.Int32)">
  3995. <summary>
  3996. Set the range to repeat an action.
  3997. </summary>
  3998. <param name="min">Min.</param>
  3999. <param name="max">Max.</param>
  4000. </member>
  4001. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Times(System.Int32)">
  4002. <summary>
  4003. Set the amount of times to repeat an action.
  4004. </summary>
  4005. </member>
  4006. <member name="M:Rhino.Mocks.Interfaces.IRepeat`1.Never">
  4007. <summary>
  4008. This method must not appear in the replay state.
  4009. This has special affects in that this method would now ignore orderring.
  4010. </summary>
  4011. </member>
  4012. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.#ctor(Rhino.Mocks.MockRepository,Rhino.Mocks.Impl.RecordMockState,Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.Interfaces.IExpectation)">
  4013. <summary>
  4014. Creates a new <see cref="T:Rhino.Mocks.Interfaces.IMethodOptions`1"/> instance.
  4015. </summary>
  4016. <param name="repository">the repository for this expectation</param>
  4017. <param name="record">the recorder for this proxy</param>
  4018. <param name="proxy">the proxy for this expectation</param>
  4019. <param name="expectation">Expectation.</param>
  4020. </member>
  4021. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Constraints(Rhino.Mocks.Constraints.AbstractConstraint[])">
  4022. <summary>
  4023. Add constraints for the method's arguments.
  4024. </summary>
  4025. </member>
  4026. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback(System.Delegate)">
  4027. <summary>
  4028. Set a callback method for the last call
  4029. </summary>
  4030. </member>
  4031. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback(Rhino.Mocks.Delegates.Function{System.Boolean})">
  4032. <summary>
  4033. Set a callback method for the last call
  4034. </summary>
  4035. </member>
  4036. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``1(Rhino.Mocks.Delegates.Function{System.Boolean,``0})">
  4037. <summary>
  4038. Set a callback method for the last call
  4039. </summary>
  4040. </member>
  4041. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``2(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1})">
  4042. <summary>
  4043. Set a callback method for the last call
  4044. </summary>
  4045. </member>
  4046. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``3(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2})">
  4047. <summary>
  4048. Set a callback method for the last call
  4049. </summary>
  4050. </member>
  4051. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``4(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3})">
  4052. <summary>
  4053. Set a callback method for the last call
  4054. </summary>
  4055. </member>
  4056. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``5(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4})">
  4057. <summary>
  4058. Set a callback method for the last call
  4059. </summary>
  4060. </member>
  4061. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``6(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5})">
  4062. <summary>
  4063. Set a callback method for the last call
  4064. </summary>
  4065. </member>
  4066. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``7(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6})">
  4067. <summary>
  4068. Set a callback method for the last call
  4069. </summary>
  4070. </member>
  4071. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Callback``8(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7})">
  4072. <summary>
  4073. Set a callback method for the last call
  4074. </summary>
  4075. </member>
  4076. <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})">
  4077. <summary>
  4078. Set a callback method for the last call
  4079. </summary>
  4080. </member>
  4081. <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})">
  4082. <summary>
  4083. Set a callback method for the last call
  4084. </summary>
  4085. </member>
  4086. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Do(System.Delegate)">
  4087. <summary>
  4088. Set a delegate to be called when the expectation is matched.
  4089. The delegate return value will be returned from the expectation.
  4090. </summary>
  4091. </member>
  4092. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.WhenCalled(System.Action{Rhino.Mocks.MethodInvocation})">
  4093. <summary>
  4094. Set a delegate to be called when the expectation is matched.
  4095. The delegate return value will be returned from the expectation.
  4096. </summary>
  4097. </member>
  4098. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Return(`0)">
  4099. <summary>
  4100. Set the return value for the method.
  4101. </summary>
  4102. <param name="objToReturn">The object the method will return</param>
  4103. <returns>IRepeat that defines how many times the method will return this value</returns>
  4104. </member>
  4105. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.TentativeReturn">
  4106. <summary>
  4107. Set the return value for the method, but allow to override this return value in the future
  4108. </summary>
  4109. <returns>IRepeat that defines how many times the method will return this value</returns>
  4110. </member>
  4111. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Throw(System.Exception)">
  4112. <summary>
  4113. Throws the specified exception when the method is called.
  4114. </summary>
  4115. <param name="exception">Exception to throw</param>
  4116. </member>
  4117. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.IgnoreArguments">
  4118. <summary>
  4119. Ignores the arguments for this method. Any argument will be matched
  4120. againt this method.
  4121. </summary>
  4122. </member>
  4123. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.CallOriginalMethod">
  4124. <summary>
  4125. Call the original method on the class, bypassing the mocking layers.
  4126. </summary>
  4127. <returns></returns>
  4128. </member>
  4129. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.CallOriginalMethod(Rhino.Mocks.Interfaces.OriginalCallOptions)">
  4130. <summary>
  4131. Call the original method on the class, optionally bypassing the mocking layers
  4132. </summary>
  4133. <returns></returns>
  4134. </member>
  4135. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.PropertyBehavior">
  4136. <summary>
  4137. Use the property as a simple property, getting/setting the values without
  4138. causing mock expectations.
  4139. </summary>
  4140. </member>
  4141. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.SetPropertyAndIgnoreArgument">
  4142. <summary>
  4143. Expect last (property) call as property setting, ignore the argument given
  4144. </summary>
  4145. <returns></returns>
  4146. </member>
  4147. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.SetPropertyWithArgument(`0)">
  4148. <summary>
  4149. Expect last (property) call as property setting with a given argument.
  4150. </summary>
  4151. <param name="argument"></param>
  4152. <returns></returns>
  4153. </member>
  4154. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.GetEventRaiser">
  4155. <summary>
  4156. Gets the event raiser for the last event
  4157. </summary>
  4158. </member>
  4159. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.OutRef(System.Object[])">
  4160. <summary>
  4161. Set the parameter values for out and ref parameters.
  4162. This is done using zero based indexing, and _ignoring_ any non out/ref parameter.
  4163. </summary>
  4164. </member>
  4165. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Twice">
  4166. <summary>
  4167. Repeat the method twice.
  4168. </summary>
  4169. </member>
  4170. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Once">
  4171. <summary>
  4172. Repeat the method once.
  4173. </summary>
  4174. </member>
  4175. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.AtLeastOnce">
  4176. <summary>
  4177. Repeat the method at least once, then repeat as many time as it would like.
  4178. </summary>
  4179. </member>
  4180. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Never">
  4181. <summary>
  4182. This method must not appear in the replay state.
  4183. </summary>
  4184. </member>
  4185. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Message(System.String)">
  4186. <summary>
  4187. Documentation message for the expectation
  4188. </summary>
  4189. <param name="documentationMessage">Message</param>
  4190. </member>
  4191. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Any">
  4192. <summary>
  4193. Repeat the method any number of times.
  4194. </summary>
  4195. </member>
  4196. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Times(System.Int32,System.Int32)">
  4197. <summary>
  4198. Set the range to repeat an action.
  4199. </summary>
  4200. <param name="min">Min.</param>
  4201. <param name="max">Max.</param>
  4202. </member>
  4203. <member name="M:Rhino.Mocks.Impl.MethodOptions`1.Times(System.Int32)">
  4204. <summary>
  4205. Set the amount of times to repeat an action.
  4206. </summary>
  4207. </member>
  4208. <member name="P:Rhino.Mocks.Impl.MethodOptions`1.Repeat">
  4209. <summary>
  4210. Better syntax to define repeats.
  4211. </summary>
  4212. </member>
  4213. <member name="T:Rhino.Mocks.Impl.MockedObjectsEquality">
  4214. <summary>
  4215. This class will provide hash code for hashtables without needing
  4216. to call the GetHashCode() on the object, which may very well be mocked.
  4217. This class has no state so it is a singelton to avoid creating a lot of objects
  4218. that does the exact same thing. See flyweight patterns.
  4219. </summary>
  4220. </member>
  4221. <member name="M:Rhino.Mocks.Impl.MockedObjectsEquality.GetHashCode(System.Object)">
  4222. <summary>
  4223. Get the hash code for a proxy object without calling GetHashCode()
  4224. on the object.
  4225. </summary>
  4226. </member>
  4227. <member name="M:Rhino.Mocks.Impl.MockedObjectsEquality.Compare(System.Object,System.Object)">
  4228. <summary>
  4229. Compares two instances of mocked objects
  4230. </summary>
  4231. </member>
  4232. <member name="M:Rhino.Mocks.Impl.MockedObjectsEquality.Equals(System.Object,System.Object)">
  4233. <summary>
  4234. Compare two mocked objects
  4235. </summary>
  4236. </member>
  4237. <member name="P:Rhino.Mocks.Impl.MockedObjectsEquality.NextHashCode">
  4238. <summary>
  4239. The next hash code value for a mock object.
  4240. This is safe for multi threading.
  4241. </summary>
  4242. </member>
  4243. <member name="P:Rhino.Mocks.Impl.MockedObjectsEquality.Instance">
  4244. <summary>
  4245. The sole instance of <see cref="T:Rhino.Mocks.Impl.MockedObjectsEquality"/>
  4246. </summary>
  4247. </member>
  4248. <member name="T:Rhino.Mocks.Impl.ProxyInstance">
  4249. <summary>
  4250. This is a dummy type that is used merely to give DynamicProxy the proxy instance that
  4251. it needs to create IProxy's types.
  4252. </summary>
  4253. </member>
  4254. <member name="T:Rhino.Mocks.Interfaces.IMockedObject">
  4255. <summary>
  4256. Interface to find the repository of a mocked object
  4257. </summary>
  4258. </member>
  4259. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.ShouldCallOriginal(System.Reflection.MethodInfo)">
  4260. <summary>
  4261. Return true if it should call the original method on the object
  4262. instead of pass it to the message chain.
  4263. </summary>
  4264. <param name="method">The method to call</param>
  4265. </member>
  4266. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.RegisterMethodForCallingOriginal(System.Reflection.MethodInfo)">
  4267. <summary>
  4268. Register a method to be called on the object directly
  4269. </summary>
  4270. </member>
  4271. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.RegisterPropertyBehaviorFor(System.Reflection.PropertyInfo)">
  4272. <summary>
  4273. Register a property on the object that will behave as a simple property
  4274. </summary>
  4275. </member>
  4276. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.IsPropertyMethod(System.Reflection.MethodInfo)">
  4277. <summary>
  4278. Check if the method was registered as a property method.
  4279. </summary>
  4280. </member>
  4281. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.HandleProperty(System.Reflection.MethodInfo,System.Object[])">
  4282. <summary>
  4283. Do get/set on the property, according to need.
  4284. </summary>
  4285. </member>
  4286. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.HandleEvent(System.Reflection.MethodInfo,System.Object[])">
  4287. <summary>
  4288. Do add/remove on the event
  4289. </summary>
  4290. </member>
  4291. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.GetEventSubscribers(System.String)">
  4292. <summary>
  4293. Get the subscribers of a spesific event
  4294. </summary>
  4295. </member>
  4296. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.GetDeclaringType(System.Reflection.MethodInfo)">
  4297. <summary>
  4298. Gets the declaring type of the method, taking into acccount the possible generic
  4299. parameters that it was created with.
  4300. </summary>
  4301. </member>
  4302. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.ClearState(Rhino.Mocks.BackToRecordOptions)">
  4303. <summary>
  4304. Clears the state of the object, remove original calls, property behavior, subscribed events, etc.
  4305. </summary>
  4306. </member>
  4307. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.GetCallArgumentsFor(System.Reflection.MethodInfo)">
  4308. <summary>
  4309. Get all the method calls arguments that were made against this object with the specificed
  4310. method.
  4311. </summary>
  4312. <remarks>
  4313. Only method calls in replay mode are counted
  4314. </remarks>
  4315. </member>
  4316. <member name="M:Rhino.Mocks.Interfaces.IMockedObject.MethodCall(System.Reflection.MethodInfo,System.Object[])">
  4317. <summary>
  4318. Records the method call
  4319. </summary>
  4320. </member>
  4321. <member name="P:Rhino.Mocks.Interfaces.IMockedObject.DependentMocks">
  4322. <summary>
  4323. Mocks that are tied to this mock lifestyle
  4324. </summary>
  4325. </member>
  4326. <member name="P:Rhino.Mocks.Interfaces.IMockedObject.ProxyHash">
  4327. <summary>
  4328. The unique hash code of this mock, which is not related
  4329. to the value of the GetHashCode() call on the object.
  4330. </summary>
  4331. </member>
  4332. <member name="P:Rhino.Mocks.Interfaces.IMockedObject.Repository">
  4333. <summary>
  4334. Gets the repository.
  4335. </summary>
  4336. </member>
  4337. <member name="P:Rhino.Mocks.Interfaces.IMockedObject.ImplementedTypes">
  4338. <summary>
  4339. Gets the implemented types by this mocked object
  4340. </summary>
  4341. <value>The implemented.</value>
  4342. </member>
  4343. <member name="P:Rhino.Mocks.Interfaces.IMockedObject.ConstructorArguments">
  4344. <summary>
  4345. Gets or sets the constructor arguments.
  4346. </summary>
  4347. <value>The constructor arguments.</value>
  4348. </member>
  4349. <member name="P:Rhino.Mocks.Interfaces.IMockedObject.MockedObjectInstance">
  4350. <summary>
  4351. The mocked instance that this is representing
  4352. </summary>
  4353. </member>
  4354. <member name="M:Rhino.Mocks.Impl.ProxyInstance.#ctor(Rhino.Mocks.MockRepository,System.Type[])">
  4355. <summary>
  4356. Create a new instance of <see cref="T:Rhino.Mocks.Impl.ProxyInstance"/>
  4357. </summary>
  4358. </member>
  4359. <member name="M:Rhino.Mocks.Impl.ProxyInstance.ShouldCallOriginal(System.Reflection.MethodInfo)">
  4360. <summary>
  4361. Return true if it should call the original method on the object
  4362. instead of pass it to the message chain.
  4363. </summary>
  4364. <param name="method">The method to call</param>
  4365. </member>
  4366. <member name="M:Rhino.Mocks.Impl.ProxyInstance.RegisterMethodForCallingOriginal(System.Reflection.MethodInfo)">
  4367. <summary>
  4368. Register a method to be called on the object directly
  4369. </summary>
  4370. </member>
  4371. <member name="M:Rhino.Mocks.Impl.ProxyInstance.RegisterPropertyBehaviorFor(System.Reflection.PropertyInfo)">
  4372. <summary>
  4373. Register a property on the object that will behave as a simple property
  4374. Return true if there is already a value for the property
  4375. </summary>
  4376. </member>
  4377. <member name="M:Rhino.Mocks.Impl.ProxyInstance.IsPropertyMethod(System.Reflection.MethodInfo)">
  4378. <summary>
  4379. Check if the method was registered as a property method.
  4380. </summary>
  4381. </member>
  4382. <member name="M:Rhino.Mocks.Impl.ProxyInstance.HandleProperty(System.Reflection.MethodInfo,System.Object[])">
  4383. <summary>
  4384. Do get/set on the property, according to need.
  4385. </summary>
  4386. </member>
  4387. <member name="M:Rhino.Mocks.Impl.ProxyInstance.HandleEvent(System.Reflection.MethodInfo,System.Object[])">
  4388. <summary>
  4389. Do add/remove on the event
  4390. </summary>
  4391. </member>
  4392. <member name="M:Rhino.Mocks.Impl.ProxyInstance.GetEventSubscribers(System.String)">
  4393. <summary>
  4394. Get the subscribers of a spesific event
  4395. </summary>
  4396. </member>
  4397. <member name="M:Rhino.Mocks.Impl.ProxyInstance.GetDeclaringType(System.Reflection.MethodInfo)">
  4398. <summary>
  4399. Gets the declaring type of the method, taking into acccount the possible generic
  4400. parameters that it was created with.
  4401. </summary>
  4402. </member>
  4403. <member name="M:Rhino.Mocks.Impl.ProxyInstance.GetCallArgumentsFor(System.Reflection.MethodInfo)">
  4404. <summary>
  4405. Get all the method calls arguments that were made against this object with the specificed
  4406. method.
  4407. </summary>
  4408. <param name="method"></param>
  4409. <returns></returns>
  4410. <remarks>
  4411. Only method calls in replay mode are counted
  4412. </remarks>
  4413. </member>
  4414. <member name="M:Rhino.Mocks.Impl.ProxyInstance.MethodCall(System.Reflection.MethodInfo,System.Object[])">
  4415. <summary>
  4416. Records the method call
  4417. </summary>
  4418. <param name="method"></param>
  4419. <param name="args"></param>
  4420. </member>
  4421. <member name="M:Rhino.Mocks.Impl.ProxyInstance.ClearState(Rhino.Mocks.BackToRecordOptions)">
  4422. <summary>
  4423. Clears the state of the object, remove original calls, property behavior, subscribed events, etc.
  4424. </summary>
  4425. </member>
  4426. <member name="P:Rhino.Mocks.Impl.ProxyInstance.DependentMocks">
  4427. <summary>
  4428. Mocks that are tied to this mock lifestyle
  4429. </summary>
  4430. </member>
  4431. <member name="P:Rhino.Mocks.Impl.ProxyInstance.ProxyHash">
  4432. <summary>
  4433. The unique hash code of this proxy, which is not related
  4434. to the value of the GetHashCode() call on the object.
  4435. </summary>
  4436. </member>
  4437. <member name="P:Rhino.Mocks.Impl.ProxyInstance.Repository">
  4438. <summary>
  4439. Gets the repository.
  4440. </summary>
  4441. </member>
  4442. <member name="P:Rhino.Mocks.Impl.ProxyInstance.ConstructorArguments">
  4443. <summary>
  4444. Gets or sets the constructor arguments.
  4445. </summary>
  4446. <value>The constructor arguments.</value>
  4447. </member>
  4448. <member name="P:Rhino.Mocks.Impl.ProxyInstance.MockedObjectInstance">
  4449. <summary>
  4450. The mocked instance that this is representing
  4451. </summary>
  4452. </member>
  4453. <member name="P:Rhino.Mocks.Impl.ProxyInstance.ImplementedTypes">
  4454. <summary>
  4455. Gets the implemented types by this mocked object
  4456. </summary>
  4457. <value>The implemented.</value>
  4458. </member>
  4459. <member name="T:Rhino.Mocks.Impl.Range">
  4460. <summary>
  4461. Range for expected method calls
  4462. </summary>
  4463. </member>
  4464. <member name="M:Rhino.Mocks.Impl.Range.#ctor(System.Int32,System.Nullable{System.Int32})">
  4465. <summary>
  4466. Creates a new <see cref="T:Rhino.Mocks.Impl.Range"/> instance.
  4467. </summary>
  4468. <param name="min">Min.</param>
  4469. <param name="max">Max.</param>
  4470. </member>
  4471. <member name="M:Rhino.Mocks.Impl.Range.ToString">
  4472. <summary>
  4473. Return the string representation of this range.
  4474. </summary>
  4475. </member>
  4476. <member name="P:Rhino.Mocks.Impl.Range.Min">
  4477. <summary>
  4478. Gets or sets the min.
  4479. </summary>
  4480. <value></value>
  4481. </member>
  4482. <member name="P:Rhino.Mocks.Impl.Range.Max">
  4483. <summary>
  4484. Gets or sets the max.
  4485. </summary>
  4486. <value></value>
  4487. </member>
  4488. <member name="T:Rhino.Mocks.Impl.RecordDynamicMockState">
  4489. <summary>
  4490. Records all the expectations for a mock and
  4491. return a ReplayDynamicMockState when Replay()
  4492. is called.
  4493. </summary>
  4494. </member>
  4495. <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
  4496. <summary>
  4497. Creates a new <see cref="T:Rhino.Mocks.Impl.RecordDynamicMockState"/> instance.
  4498. </summary>
  4499. <param name="repository">Repository.</param>
  4500. <param name="mockedObject">The proxy that generates the method calls</param>
  4501. </member>
  4502. <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.DoReplay">
  4503. <summary>
  4504. Verify that we can move to replay state and move
  4505. to the reply state.
  4506. </summary>
  4507. </member>
  4508. <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.GetDefaultCallCountRangeExpectation">
  4509. <summary>
  4510. Get the default call count range expectation
  4511. </summary>
  4512. <returns></returns>
  4513. </member>
  4514. <member name="M:Rhino.Mocks.Impl.RecordDynamicMockState.BackToRecord">
  4515. <summary>
  4516. Gets a mock state that match the original mock state of the object.
  4517. </summary>
  4518. </member>
  4519. <member name="T:Rhino.Mocks.Impl.RecordPartialMockState">
  4520. <summary>
  4521. Records all the expectations for a mock and
  4522. return a ReplayPartialMockState when Replay()
  4523. is called.
  4524. </summary>
  4525. </member>
  4526. <member name="M:Rhino.Mocks.Impl.RecordPartialMockState.#ctor(Rhino.Mocks.Interfaces.IMockedObject,Rhino.Mocks.MockRepository)">
  4527. <summary>
  4528. Creates a new <see cref="T:Rhino.Mocks.Impl.RecordDynamicMockState"/> instance.
  4529. </summary>
  4530. <param name="repository">Repository.</param>
  4531. <param name="mockedObject">The proxy that generates the method calls</param>
  4532. </member>
  4533. <member name="M:Rhino.Mocks.Impl.RecordPartialMockState.DoReplay">
  4534. <summary>
  4535. Verify that we can move to replay state and move
  4536. to the reply state.
  4537. </summary>
  4538. </member>
  4539. <member name="M:Rhino.Mocks.Impl.RecordPartialMockState.BackToRecord">
  4540. <summary>
  4541. Gets a mock state that matches the original mock state of the object.
  4542. </summary>
  4543. </member>
  4544. <member name="T:Rhino.Mocks.Impl.RepeatableOption">
  4545. <summary>
  4546. Options for special repeat option
  4547. </summary>
  4548. </member>
  4549. <member name="F:Rhino.Mocks.Impl.RepeatableOption.Normal">
  4550. <summary>
  4551. This method can be called only as many times as the IMethodOptions.Expect allows.
  4552. </summary>
  4553. </member>
  4554. <member name="F:Rhino.Mocks.Impl.RepeatableOption.Never">
  4555. <summary>
  4556. This method should never be called
  4557. </summary>
  4558. </member>
  4559. <member name="F:Rhino.Mocks.Impl.RepeatableOption.Any">
  4560. <summary>
  4561. This method can be call any number of times
  4562. </summary>
  4563. </member>
  4564. <member name="F:Rhino.Mocks.Impl.RepeatableOption.OriginalCall">
  4565. <summary>
  4566. This method will call the original method
  4567. </summary>
  4568. </member>
  4569. <member name="F:Rhino.Mocks.Impl.RepeatableOption.OriginalCallBypassingMocking">
  4570. <summary>
  4571. This method will call the original method, bypassing the mocking layer
  4572. </summary>
  4573. </member>
  4574. <member name="F:Rhino.Mocks.Impl.RepeatableOption.PropertyBehavior">
  4575. <summary>
  4576. This method will simulate simple property behavior
  4577. </summary>
  4578. </member>
  4579. <member name="T:Rhino.Mocks.Impl.ReplayDynamicMockState">
  4580. <summary>
  4581. Validate all expectations on a mock and ignores calls to
  4582. any method that was not setup properly.
  4583. </summary>
  4584. </member>
  4585. <member name="M:Rhino.Mocks.Impl.ReplayDynamicMockState.#ctor(Rhino.Mocks.Impl.RecordDynamicMockState)">
  4586. <summary>
  4587. Creates a new <see cref="T:Rhino.Mocks.Impl.ReplayDynamicMockState"/> instance.
  4588. </summary>
  4589. <param name="previousState">The previous state for this method</param>
  4590. </member>
  4591. <member name="M:Rhino.Mocks.Impl.ReplayDynamicMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  4592. <summary>
  4593. Add a method call for this state' mock.
  4594. </summary>
  4595. <param name="invocation">The invocation for this method</param>
  4596. <param name="method">The method that was called</param>
  4597. <param name="args">The arguments this method was called with</param>
  4598. </member>
  4599. <member name="M:Rhino.Mocks.Impl.ReplayDynamicMockState.BackToRecord">
  4600. <summary>
  4601. Gets a mock state that match the original mock state of the object.
  4602. </summary>
  4603. </member>
  4604. <member name="T:Rhino.Mocks.Impl.ReplayPartialMockState">
  4605. <summary>
  4606. Validate all expectations on a mock and ignores calls to
  4607. any method that was not setup properly.
  4608. </summary>
  4609. </member>
  4610. <member name="M:Rhino.Mocks.Impl.ReplayPartialMockState.#ctor(Rhino.Mocks.Impl.RecordPartialMockState)">
  4611. <summary>
  4612. Creates a new <see cref="T:Rhino.Mocks.Impl.ReplayDynamicMockState"/> instance.
  4613. </summary>
  4614. <param name="previousState">The previous state for this method</param>
  4615. </member>
  4616. <member name="M:Rhino.Mocks.Impl.ReplayPartialMockState.DoMethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  4617. <summary>
  4618. Add a method call for this state' mock.
  4619. </summary>
  4620. <param name="invocation">The invocation for this method</param>
  4621. <param name="method">The method that was called</param>
  4622. <param name="args">The arguments this method was called with</param>
  4623. </member>
  4624. <member name="M:Rhino.Mocks.Impl.ReplayPartialMockState.BackToRecord">
  4625. <summary>
  4626. Gets a mock state that match the original mock state of the object.
  4627. </summary>
  4628. </member>
  4629. <member name="T:Rhino.Mocks.Impl.RhinoInterceptor">
  4630. <summary>
  4631. Summary description for RhinoInterceptor.
  4632. </summary>
  4633. </member>
  4634. <member name="M:Rhino.Mocks.Impl.RhinoInterceptor.#ctor(Rhino.Mocks.MockRepository,Rhino.Mocks.Interfaces.IMockedObject,System.Collections.Generic.IEnumerable{Rhino.Mocks.Impl.Invocation.InvocationVisitor})">
  4635. <summary>
  4636. Creates a new <see cref="T:Rhino.Mocks.Impl.RhinoInterceptor"/> instance.
  4637. </summary>
  4638. </member>
  4639. <member name="M:Rhino.Mocks.Impl.RhinoInterceptor.Intercept(Castle.Core.Interceptor.IInvocation)">
  4640. <summary>
  4641. Intercept a method call and direct it to the repository.
  4642. </summary>
  4643. </member>
  4644. <member name="T:Rhino.Mocks.Impl.Validate">
  4645. <summary>
  4646. Validate arguments for methods
  4647. </summary>
  4648. </member>
  4649. <member name="M:Rhino.Mocks.Impl.Validate.IsNotNull(System.Object,System.String)">
  4650. <summary>
  4651. Validate that the passed argument is not null.
  4652. </summary>
  4653. <param name="obj">The object to validate</param>
  4654. <param name="name">The name of the argument</param>
  4655. <exception cref="T:System.ArgumentNullException">
  4656. If the obj is null, an ArgumentNullException with the passed name
  4657. is thrown.
  4658. </exception>
  4659. </member>
  4660. <member name="M:Rhino.Mocks.Impl.Validate.ArgsEqual(System.Object[],System.Object[])">
  4661. <summary>
  4662. Validate that the arguments are equal.
  4663. </summary>
  4664. <param name="expectedArgs">Expected args.</param>
  4665. <param name="actualArgs">Actual Args.</param>
  4666. </member>
  4667. <member name="M:Rhino.Mocks.Impl.Validate.AreEqual(System.Object,System.Object)">
  4668. <summary>
  4669. Validate that the two arguments are equals, including validation for
  4670. when the arguments are collections, in which case it will validate their values.
  4671. </summary>
  4672. </member>
  4673. <member name="M:Rhino.Mocks.Impl.Validate.SafeEquals(System.Object,System.Object)">
  4674. <summary>
  4675. This method is safe for use even if any of the objects is a mocked object
  4676. that override equals.
  4677. </summary>
  4678. </member>
  4679. <member name="T:Rhino.Mocks.Impl.VerifiedMockState">
  4680. <summary>
  4681. Throw an object already verified when accessed
  4682. </summary>
  4683. </member>
  4684. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.#ctor(Rhino.Mocks.Interfaces.IMockState)">
  4685. <summary>
  4686. Create a new instance of VerifiedMockState
  4687. </summary>
  4688. <param name="previous">The previous mock state, used to get the initial record state</param>
  4689. </member>
  4690. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.MethodCall(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  4691. <summary>
  4692. Add a method call for this state' mock.
  4693. </summary>
  4694. <param name="invocation">The invocation for this method</param>
  4695. <param name="method">The method that was called</param>
  4696. <param name="args">The arguments this method was called with</param>
  4697. </member>
  4698. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.Verify">
  4699. <summary>
  4700. Verify that this mock expectations have passed.
  4701. </summary>
  4702. </member>
  4703. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.Replay">
  4704. <summary>
  4705. Verify that we can move to replay state and move
  4706. to the reply state.
  4707. </summary>
  4708. </member>
  4709. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.BackToRecord">
  4710. <summary>
  4711. Gets a mock state that match the original mock state of the object.
  4712. </summary>
  4713. </member>
  4714. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.GetLastMethodOptions``1">
  4715. <summary>
  4716. Get the options for the last method call
  4717. </summary>
  4718. </member>
  4719. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.SetExceptionToThrowOnVerify(System.Exception)">
  4720. <summary>
  4721. Set the exception to throw when Verify is called.
  4722. This is used to report exception that may have happened but where caught in the code.
  4723. This way, they are reported anyway when Verify() is called.
  4724. </summary>
  4725. </member>
  4726. <member name="M:Rhino.Mocks.Impl.VerifiedMockState.NotifyCallOnPropertyBehavior">
  4727. <summary>
  4728. not relevant
  4729. </summary>
  4730. </member>
  4731. <member name="P:Rhino.Mocks.Impl.VerifiedMockState.VerifyState">
  4732. <summary>
  4733. Gets the matching verify state for this state
  4734. </summary>
  4735. </member>
  4736. <member name="P:Rhino.Mocks.Impl.VerifiedMockState.LastMethodOptions">
  4737. <summary>
  4738. Get the options for the last method call
  4739. </summary>
  4740. </member>
  4741. <member name="T:Rhino.Mocks.Interfaces.IMethodRecorder">
  4742. <summary>
  4743. Records the actions on all the mocks created by a repository.
  4744. </summary>
  4745. </member>
  4746. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.Record(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  4747. <summary>
  4748. Records the specified call with the specified args on the mocked object.
  4749. </summary>
  4750. </member>
  4751. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  4752. <summary>
  4753. Get the expectation for this method on this object with this arguments
  4754. </summary>
  4755. </member>
  4756. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetRepeatableExpectation(System.Object,System.Reflection.MethodInfo,System.Object[])">
  4757. <summary>
  4758. This check the methods that were setup using the SetupResult.For()
  4759. or LastCall.Repeat.Any() and that bypass the whole expectation model.
  4760. </summary>
  4761. </member>
  4762. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetAllExpectationsForProxyAndMethod(System.Object,System.Reflection.MethodInfo)">
  4763. <summary>
  4764. Gets the all expectations for a mocked object and method combination,
  4765. regardless of the expected arguments / callbacks / contraints.
  4766. </summary>
  4767. <param name="proxy">Mocked object.</param>
  4768. <param name="method">Method.</param>
  4769. <returns>List of all relevant expectation</returns>
  4770. </member>
  4771. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetAllExpectationsForProxy(System.Object)">
  4772. <summary>
  4773. Gets the all expectations for proxy.
  4774. </summary>
  4775. <param name="proxy">Mocked object.</param>
  4776. <returns>List of all relevant expectation</returns>
  4777. </member>
  4778. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.RemoveAllRepeatableExpectationsForProxy(System.Object)">
  4779. <summary>
  4780. Removes all the repeatable expectations for proxy.
  4781. </summary>
  4782. <param name="proxy">Mocked object.</param>
  4783. </member>
  4784. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.ReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
  4785. <summary>
  4786. Replaces the old expectation with the new expectation for the specified proxy/method pair.
  4787. This replace ALL expectations that equal to old expectations.
  4788. </summary>
  4789. <param name="proxy">Proxy.</param>
  4790. <param name="method">Method.</param>
  4791. <param name="oldExpectation">Old expectation.</param>
  4792. <param name="newExpectation">New expectation.</param>
  4793. </member>
  4794. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.AddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
  4795. <summary>
  4796. Adds the recorder and turn it into the active recorder.
  4797. </summary>
  4798. <param name="recorder">Recorder.</param>
  4799. </member>
  4800. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.MoveToPreviousRecorder">
  4801. <summary>
  4802. Moves to previous recorder.
  4803. </summary>
  4804. </member>
  4805. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
  4806. <summary>
  4807. Gets the recorded expectation or null.
  4808. </summary>
  4809. </member>
  4810. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.GetExpectedCallsMessage">
  4811. <summary>
  4812. Gets the next expected calls string.
  4813. </summary>
  4814. </member>
  4815. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.MoveToParentReplayer">
  4816. <summary>
  4817. Moves to parent recorder.
  4818. </summary>
  4819. </member>
  4820. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.AddToRepeatableMethods(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  4821. <summary>
  4822. Set the expectation so it can repeat any number of times.
  4823. </summary>
  4824. </member>
  4825. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.RemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
  4826. <summary>
  4827. Removes the expectation from the recorder
  4828. </summary>
  4829. </member>
  4830. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.ClearReplayerToCall(Rhino.Mocks.Interfaces.IMethodRecorder)">
  4831. <summary>
  4832. Clear the replayer to call (and all its chain of replayers)
  4833. This also removes it from the list of expectations, so it will never be considered again
  4834. </summary>
  4835. </member>
  4836. <member name="M:Rhino.Mocks.Interfaces.IMethodRecorder.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  4837. <summary>
  4838. Get the expectation for this method on this object with this arguments
  4839. </summary>
  4840. </member>
  4841. <member name="P:Rhino.Mocks.Interfaces.IMethodRecorder.HasExpectations">
  4842. <summary>
  4843. Gets a value indicating whether this instance has expectations that weren't satisfied yet.
  4844. </summary>
  4845. <value>
  4846. <c>true</c> if this instance has expectations; otherwise, <c>false</c>.
  4847. </value>
  4848. </member>
  4849. <member name="T:Rhino.Mocks.LastCall">
  4850. <summary>
  4851. Allows to set various options for the last method call on
  4852. a specified object.
  4853. If the method has a return value, it's recommended to use Expect
  4854. </summary>
  4855. </member>
  4856. <member name="M:Rhino.Mocks.LastCall.On(System.Object)">
  4857. <summary>
  4858. Allows to get an interface to work on the last call.
  4859. </summary>
  4860. <param name="mockedInstance">The mocked object</param>
  4861. <returns>Interface that allows to set options for the last method call on this object</returns>
  4862. </member>
  4863. <member name="M:Rhino.Mocks.LastCall.Return``1(``0)">
  4864. <summary>
  4865. Set the return value for the method.
  4866. </summary>
  4867. <param name="objToReturn">The object the method will return</param>
  4868. <returns>IRepeat that defines how many times the method will return this value</returns>
  4869. </member>
  4870. <member name="M:Rhino.Mocks.LastCall.Return(System.Object)">
  4871. <summary>
  4872. Set the return value for the method. This overload is needed for LastCall.Return(null)
  4873. </summary>
  4874. <param name="objToReturn">The object the method will return</param>
  4875. <returns>IRepeat that defines how many times the method will return this value</returns>
  4876. </member>
  4877. <member name="M:Rhino.Mocks.LastCall.Throw(System.Exception)">
  4878. <summary>
  4879. Throws the specified exception when the method is called.
  4880. </summary>
  4881. <param name="exception">Exception to throw</param>
  4882. </member>
  4883. <member name="M:Rhino.Mocks.LastCall.IgnoreArguments">
  4884. <summary>
  4885. Ignores the arguments for this method. Any argument will be matched
  4886. againt this method.
  4887. </summary>
  4888. </member>
  4889. <member name="M:Rhino.Mocks.LastCall.Constraints(Rhino.Mocks.Constraints.AbstractConstraint[])">
  4890. <summary>
  4891. Add constraints for the method's arguments.
  4892. </summary>
  4893. </member>
  4894. <member name="M:Rhino.Mocks.LastCall.Callback(System.Delegate)">
  4895. <summary>
  4896. Set a callback method for the last call
  4897. </summary>
  4898. </member>
  4899. <member name="M:Rhino.Mocks.LastCall.Callback(Rhino.Mocks.Delegates.Function{System.Boolean})">
  4900. <summary>
  4901. Set a callback method for the last call
  4902. </summary>
  4903. </member>
  4904. <member name="M:Rhino.Mocks.LastCall.Callback``1(Rhino.Mocks.Delegates.Function{System.Boolean,``0})">
  4905. <summary>
  4906. Set a callback method for the last call
  4907. </summary>
  4908. </member>
  4909. <member name="M:Rhino.Mocks.LastCall.Callback``2(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1})">
  4910. <summary>
  4911. Set a callback method for the last call
  4912. </summary>
  4913. </member>
  4914. <member name="M:Rhino.Mocks.LastCall.Callback``3(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2})">
  4915. <summary>
  4916. Set a callback method for the last call
  4917. </summary>
  4918. </member>
  4919. <member name="M:Rhino.Mocks.LastCall.Callback``4(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3})">
  4920. <summary>
  4921. Set a callback method for the last call
  4922. </summary>
  4923. </member>
  4924. <member name="M:Rhino.Mocks.LastCall.Callback``5(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4})">
  4925. <summary>
  4926. Set a callback method for the last call
  4927. </summary>
  4928. </member>
  4929. <member name="M:Rhino.Mocks.LastCall.Callback``6(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5})">
  4930. <summary>
  4931. Set a callback method for the last call
  4932. </summary>
  4933. </member>
  4934. <member name="M:Rhino.Mocks.LastCall.Callback``7(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6})">
  4935. <summary>
  4936. Set a callback method for the last call
  4937. </summary>
  4938. </member>
  4939. <member name="M:Rhino.Mocks.LastCall.Callback``8(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7})">
  4940. <summary>
  4941. Set a callback method for the last call
  4942. </summary>
  4943. </member>
  4944. <member name="M:Rhino.Mocks.LastCall.Callback``9(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8})">
  4945. <summary>
  4946. Set a callback method for the last call
  4947. </summary>
  4948. </member>
  4949. <member name="M:Rhino.Mocks.LastCall.Callback``10(Rhino.Mocks.Delegates.Function{System.Boolean,``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
  4950. <summary>
  4951. Set a callback method for the last call
  4952. </summary>
  4953. </member>
  4954. <member name="M:Rhino.Mocks.LastCall.CallOriginalMethod">
  4955. <summary>
  4956. Call the original method on the class, bypassing the mocking layers, for the last call.
  4957. </summary>
  4958. </member>
  4959. <member name="M:Rhino.Mocks.LastCall.CallOriginalMethod(Rhino.Mocks.Interfaces.OriginalCallOptions)">
  4960. <summary>
  4961. Call the original method on the class, optionally bypassing the mocking layers, for the last call.
  4962. </summary>
  4963. </member>
  4964. <member name="M:Rhino.Mocks.LastCall.Do(System.Delegate)">
  4965. <summary>
  4966. Set a delegate to be called when the expectation is matched.
  4967. The delegate return value will be returned from the expectation.
  4968. </summary>
  4969. </member>
  4970. <member name="M:Rhino.Mocks.LastCall.GetEventRaiser">
  4971. <summary>
  4972. Gets an interface that will raise the last event when called.
  4973. </summary>
  4974. </member>
  4975. <member name="M:Rhino.Mocks.LastCall.OutRef(System.Object[])">
  4976. <summary>
  4977. Set the parameter values for out and ref parameters.
  4978. This is done using zero based indexing, and _ignoring_ any non out/ref parameter.
  4979. </summary>
  4980. </member>
  4981. <member name="M:Rhino.Mocks.LastCall.Message(System.String)">
  4982. <summary>
  4983. Documentation message for the expectation
  4984. </summary>
  4985. <param name="documentationMessage">Message</param>
  4986. </member>
  4987. <member name="M:Rhino.Mocks.LastCall.PropertyBehavior">
  4988. <summary>
  4989. Use the property as a simple property, getting/setting the values without
  4990. causing mock expectations.
  4991. </summary>
  4992. </member>
  4993. <member name="P:Rhino.Mocks.LastCall.Repeat">
  4994. <summary>
  4995. Better syntax to define repeats.
  4996. </summary>
  4997. </member>
  4998. <member name="T:Rhino.Mocks.MethodRecorders.MethodRecorderBase">
  4999. <summary>
  5000. Base class for method recorders, handle delegating to inner recorder if needed.
  5001. </summary>
  5002. </member>
  5003. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.recordedActions">
  5004. <summary>
  5005. List of the expected actions on for this recorder
  5006. The legal values are:
  5007. * Expectations
  5008. * Method Recorders
  5009. </summary>
  5010. </member>
  5011. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.recorderToCall">
  5012. <summary>
  5013. The current recorder.
  5014. </summary>
  5015. </member>
  5016. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.replayerToCall">
  5017. <summary>
  5018. The current replayer;
  5019. </summary>
  5020. </member>
  5021. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.parentRecorder">
  5022. <summary>
  5023. The parent recorder of this one, may be null.
  5024. </summary>
  5025. </member>
  5026. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.replayersToIgnoreForThisCall">
  5027. <summary>
  5028. This contains a list of all the replayers that should be ignored
  5029. for a spesific method call. A replayer gets into this list by calling
  5030. ClearReplayerToCall() on its parent. This list is Clear()ed on each new invocation.
  5031. </summary>
  5032. </member>
  5033. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.repeatableMethods">
  5034. <summary>
  5035. All the repeatable methods calls.
  5036. </summary>
  5037. </member>
  5038. <member name="F:Rhino.Mocks.MethodRecorders.MethodRecorderBase.recursionDepth">
  5039. <summary>
  5040. Counts the recursion depth of the current expectation search stack
  5041. </summary>
  5042. </member>
  5043. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.#ctor(Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
  5044. <summary>
  5045. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.MethodRecorderBase"/> instance.
  5046. </summary>
  5047. </member>
  5048. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.#ctor(Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
  5049. <summary>
  5050. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.MethodRecorderBase"/> instance.
  5051. </summary>
  5052. <param name="parentRecorder">Parent recorder.</param>
  5053. <param name="repeatableMethods">Repeatable methods</param>
  5054. </member>
  5055. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.Record(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  5056. <summary>
  5057. Records the specified call with the specified args on the mocked object.
  5058. </summary>
  5059. </member>
  5060. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  5061. <summary>
  5062. Get the expectation for this method on this object with this arguments
  5063. </summary>
  5064. </member>
  5065. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetAllExpectationsForProxyAndMethod(System.Object,System.Reflection.MethodInfo)">
  5066. <summary>
  5067. Gets the all expectations for a mocked object and method combination,
  5068. regardless of the expected arguments / callbacks / contraints.
  5069. </summary>
  5070. <param name="proxy">Mocked object.</param>
  5071. <param name="method">Method.</param>
  5072. <returns>List of all relevant expectation</returns>
  5073. </member>
  5074. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetAllExpectationsForProxy(System.Object)">
  5075. <summary>
  5076. Gets the all expectations for proxy.
  5077. </summary>
  5078. <param name="proxy">Mocked object.</param>
  5079. <returns>List of all relevant expectation</returns>
  5080. </member>
  5081. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.ReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
  5082. <summary>
  5083. Replaces the old expectation with the new expectation for the specified proxy/method pair.
  5084. This replace ALL expectations that equal to old expectations.
  5085. </summary>
  5086. <param name="proxy">Proxy.</param>
  5087. <param name="method">Method.</param>
  5088. <param name="oldExpectation">Old expectation.</param>
  5089. <param name="newExpectation">New expectation.</param>
  5090. </member>
  5091. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.RemoveAllRepeatableExpectationsForProxy(System.Object)">
  5092. <summary>
  5093. Remove the all repeatable expectations for proxy.
  5094. </summary>
  5095. <param name="proxy">Mocked object.</param>
  5096. </member>
  5097. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.AddToRepeatableMethods(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  5098. <summary>
  5099. Set the expectation so it can repeat any number of times.
  5100. </summary>
  5101. </member>
  5102. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.RemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
  5103. <summary>
  5104. Removes the expectation from the recorder
  5105. </summary>
  5106. </member>
  5107. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.AddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
  5108. <summary>
  5109. Adds the recorder and turn it into the active recorder.
  5110. </summary>
  5111. <param name="recorder">Recorder.</param>
  5112. </member>
  5113. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.MoveToPreviousRecorder">
  5114. <summary>
  5115. Moves to previous recorder.
  5116. </summary>
  5117. </member>
  5118. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.MoveToParentReplayer">
  5119. <summary>
  5120. Moves to parent recorder.
  5121. </summary>
  5122. </member>
  5123. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
  5124. <summary>
  5125. Gets the recorded expectation or null.
  5126. </summary>
  5127. </member>
  5128. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.ClearReplayerToCall(Rhino.Mocks.Interfaces.IMethodRecorder)">
  5129. <summary>
  5130. Clear the replayer to call (and all its chain of replayers).
  5131. This also removes it from the list of expectations, so it will never be considered again
  5132. </summary>
  5133. </member>
  5134. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  5135. <summary>
  5136. Get the expectation for this method on this object with this arguments
  5137. </summary>
  5138. </member>
  5139. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetExpectedCallsMessage">
  5140. <summary>
  5141. Gets the next expected calls string.
  5142. </summary>
  5143. </member>
  5144. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoGetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
  5145. <summary>
  5146. Handles the real getting of the recorded expectation or null.
  5147. </summary>
  5148. </member>
  5149. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoRecord(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  5150. <summary>
  5151. Handle the real execution of this method for the derived class
  5152. </summary>
  5153. </member>
  5154. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoGetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  5155. <summary>
  5156. Handle the real execution of this method for the derived class
  5157. </summary>
  5158. </member>
  5159. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoGetAllExpectationsForProxy(System.Object)">
  5160. <summary>
  5161. Handle the real execution of this method for the derived class
  5162. </summary>
  5163. </member>
  5164. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
  5165. <summary>
  5166. Handle the real execution of this method for the derived class
  5167. </summary>
  5168. </member>
  5169. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoRemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
  5170. <summary>
  5171. Handle the real execution of this method for the derived class
  5172. </summary>
  5173. </member>
  5174. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoAddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
  5175. <summary>
  5176. Handle the real execution of this method for the derived class
  5177. </summary>
  5178. </member>
  5179. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.ShouldConsiderThisReplayer(Rhino.Mocks.Interfaces.IMethodRecorder)">
  5180. <summary>
  5181. Should this replayer be considered valid for this call?
  5182. </summary>
  5183. </member>
  5184. <member name="M:Rhino.Mocks.MethodRecorders.MethodRecorderBase.GetRepeatableExpectation(System.Object,System.Reflection.MethodInfo,System.Object[])">
  5185. <summary>
  5186. This check the methods that were setup using the SetupResult.For()
  5187. or LastCall.Repeat.Any() and that bypass the whole expectation model.
  5188. </summary>
  5189. </member>
  5190. <member name="P:Rhino.Mocks.MethodRecorders.MethodRecorderBase.HasExpectations">
  5191. <summary>
  5192. Gets a value indicating whether this instance has expectations that weren't satisfied yet.
  5193. </summary>
  5194. <value>
  5195. <c>true</c> if this instance has expectations; otherwise, <c>false</c>.
  5196. </value>
  5197. </member>
  5198. <member name="P:Rhino.Mocks.MethodRecorders.MethodRecorderBase.DoHasExpectations">
  5199. <summary>
  5200. Handle the real execution of this method for the derived class
  5201. </summary>
  5202. </member>
  5203. <member name="T:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder">
  5204. <summary>
  5205. Ordered collection of methods, methods must arrive in specified order
  5206. in order to pass.
  5207. </summary>
  5208. </member>
  5209. <member name="T:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder">
  5210. <summary>
  5211. Unordered collection of method records, any expectation that exist
  5212. will be matched.
  5213. </summary>
  5214. </member>
  5215. <member name="F:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.parentRecorderRedirection">
  5216. <summary>
  5217. The parent recorder we have redirected to.
  5218. Useful for certain edge cases in orderring.
  5219. See: FieldProblem_Entropy for the details.
  5220. </summary>
  5221. </member>
  5222. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.#ctor(Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
  5223. <summary>
  5224. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder"/> instance.
  5225. </summary>
  5226. <param name="parentRecorder">Parent recorder.</param>
  5227. <param name="repeatableMethods">Repeatable methods</param>
  5228. </member>
  5229. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.#ctor(Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
  5230. <summary>
  5231. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder"/> instance.
  5232. </summary>
  5233. </member>
  5234. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoRecord(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  5235. <summary>
  5236. Records the specified call with the specified args on the mocked object.
  5237. </summary>
  5238. <param name="proxy">Mocked object.</param>
  5239. <param name="method">Method.</param>
  5240. <param name="expectation">Expectation.</param>
  5241. </member>
  5242. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoGetRecordedExpectation(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  5243. <summary>
  5244. Get the expectation for this method on this object with this arguments
  5245. </summary>
  5246. <param name="invocation">Invocation for this method</param>
  5247. <param name="proxy">Mocked object.</param>
  5248. <param name="method">Method.</param>
  5249. <param name="args">Args.</param>
  5250. <returns>True is the call was recorded, false otherwise</returns>
  5251. </member>
  5252. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.GetAllExpectationsForProxyAndMethod(System.Object,System.Reflection.MethodInfo)">
  5253. <summary>
  5254. Gets the all expectations for a mocked object and method combination,
  5255. regardless of the expected arguments / callbacks / contraints.
  5256. </summary>
  5257. <param name="proxy">Mocked object.</param>
  5258. <param name="method">Method.</param>
  5259. <returns>List of all relevant expectation</returns>
  5260. </member>
  5261. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoGetAllExpectationsForProxy(System.Object)">
  5262. <summary>
  5263. Gets the all expectations for proxy.
  5264. </summary>
  5265. <param name="proxy">Mocked object.</param>
  5266. <returns>List of all relevant expectation</returns>
  5267. </member>
  5268. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoReplaceExpectation(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation,Rhino.Mocks.Interfaces.IExpectation)">
  5269. <summary>
  5270. Replaces the old expectation with the new expectation for the specified proxy/method pair.
  5271. This replace ALL expectations that equal to old expectations.
  5272. </summary>
  5273. <param name="proxy">Proxy.</param>
  5274. <param name="method">Method.</param>
  5275. <param name="oldExpectation">Old expectation.</param>
  5276. <param name="newExpectation">New expectation.</param>
  5277. </member>
  5278. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoRemoveExpectation(Rhino.Mocks.Interfaces.IExpectation)">
  5279. <summary>
  5280. Handle the real execution of this method for the derived class
  5281. </summary>
  5282. </member>
  5283. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoGetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
  5284. <summary>
  5285. Handles the real getting of the recorded expectation or null.
  5286. </summary>
  5287. </member>
  5288. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoAddRecorder(Rhino.Mocks.Interfaces.IMethodRecorder)">
  5289. <summary>
  5290. Handle the real execution of this method for the derived class
  5291. </summary>
  5292. </member>
  5293. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.GetExpectedCallsMessage">
  5294. <summary>
  5295. Gets the next expected calls string.
  5296. </summary>
  5297. </member>
  5298. <member name="M:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  5299. <summary>
  5300. Create an exception for an unexpected method call.
  5301. </summary>
  5302. </member>
  5303. <member name="P:Rhino.Mocks.MethodRecorders.UnorderedMethodRecorder.DoHasExpectations">
  5304. <summary>
  5305. Gets a value indicating whether this instance has expectations that weren't satisfied yet.
  5306. </summary>
  5307. <value>
  5308. <c>true</c> if this instance has expectations; otherwise, <c>false</c>.
  5309. </value>
  5310. </member>
  5311. <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.#ctor(Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
  5312. <summary>
  5313. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder"/> instance.
  5314. </summary>
  5315. <param name="parentRecorder">Parent recorder.</param>
  5316. <param name="repeatableMethods">Repetable methods</param>
  5317. </member>
  5318. <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.#ctor(Rhino.Mocks.Generated.ProxyMethodExpectationsDictionary)">
  5319. <summary>
  5320. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder"/> instance.
  5321. </summary>
  5322. </member>
  5323. <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.DoGetRecordedExpectationOrNull(System.Object,System.Reflection.MethodInfo,System.Object[])">
  5324. <summary>
  5325. Handles the real getting of the recorded expectation or null.
  5326. </summary>
  5327. </member>
  5328. <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.UnexpectedMethodCall(Castle.Core.Interceptor.IInvocation,System.Object,System.Reflection.MethodInfo,System.Object[])">
  5329. <summary>
  5330. Get the expectation for this method on this object with this arguments
  5331. </summary>
  5332. </member>
  5333. <member name="M:Rhino.Mocks.MethodRecorders.OrderedMethodRecorder.GetExpectedCallsMessage">
  5334. <summary>
  5335. Gets the next expected calls string.
  5336. </summary>
  5337. </member>
  5338. <member name="T:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet">
  5339. <summary>
  5340. Hold an expectation for a method call on an object
  5341. </summary>
  5342. </member>
  5343. <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.#ctor(System.Object,System.Reflection.MethodInfo,Rhino.Mocks.Interfaces.IExpectation)">
  5344. <summary>
  5345. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet"/> instance.
  5346. </summary>
  5347. <param name="proxy">Proxy.</param>
  5348. <param name="method">Method.</param>
  5349. <param name="expectation">Expectation.</param>
  5350. </member>
  5351. <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Equals(System.Object)">
  5352. <summary>
  5353. Determines if the object equal to this instance
  5354. </summary>
  5355. <param name="obj">Obj.</param>
  5356. <returns></returns>
  5357. </member>
  5358. <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.GetHashCode">
  5359. <summary>
  5360. Gets the hash code.
  5361. </summary>
  5362. <returns></returns>
  5363. </member>
  5364. <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Proxy">
  5365. <summary>
  5366. Gets the proxy.
  5367. </summary>
  5368. <value></value>
  5369. </member>
  5370. <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Method">
  5371. <summary>
  5372. Gets the method.
  5373. </summary>
  5374. <value></value>
  5375. </member>
  5376. <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodExpectationTriplet.Expectation">
  5377. <summary>
  5378. Gets the expectation.
  5379. </summary>
  5380. <value></value>
  5381. </member>
  5382. <member name="T:Rhino.Mocks.MethodRecorders.ProxyMethodPair">
  5383. <summary>
  5384. Holds a pair of mocked object and a method
  5385. and allows to compare them against each other.
  5386. This allows us to have a distinction between mockOne.MyMethod() and
  5387. mockTwo.MyMethod()...
  5388. </summary>
  5389. </member>
  5390. <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodPair.#ctor(System.Object,System.Reflection.MethodInfo)">
  5391. <summary>
  5392. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.ProxyMethodPair"/> instance.
  5393. </summary>
  5394. <param name="proxy">Proxy.</param>
  5395. <param name="method">Method.</param>
  5396. </member>
  5397. <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodPair.Equals(System.Object)">
  5398. <summary>
  5399. Determines whatever obj equals to this instance.
  5400. ProxyMethodPairs are equal when they point to the same /instance/ of
  5401. an object, and to the same method.
  5402. </summary>
  5403. <param name="obj">Obj.</param>
  5404. <returns></returns>
  5405. </member>
  5406. <member name="M:Rhino.Mocks.MethodRecorders.ProxyMethodPair.GetHashCode">
  5407. <summary>
  5408. Gets the hash code.
  5409. </summary>
  5410. <returns></returns>
  5411. </member>
  5412. <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodPair.Proxy">
  5413. <summary>
  5414. Gets the proxy.
  5415. </summary>
  5416. <value></value>
  5417. </member>
  5418. <member name="P:Rhino.Mocks.MethodRecorders.ProxyMethodPair.Method">
  5419. <summary>
  5420. Gets the method.
  5421. </summary>
  5422. <value></value>
  5423. </member>
  5424. <member name="T:Rhino.Mocks.MethodRecorders.RecorderChanger">
  5425. <summary>
  5426. Change the recorder from ordered to unordered and vice versa
  5427. </summary>
  5428. </member>
  5429. <member name="M:Rhino.Mocks.MethodRecorders.RecorderChanger.#ctor(Rhino.Mocks.MockRepository,Rhino.Mocks.Interfaces.IMethodRecorder,Rhino.Mocks.Interfaces.IMethodRecorder)">
  5430. <summary>
  5431. Creates a new <see cref="T:Rhino.Mocks.MethodRecorders.RecorderChanger"/> instance.
  5432. </summary>
  5433. </member>
  5434. <member name="M:Rhino.Mocks.MethodRecorders.RecorderChanger.Dispose">
  5435. <summary>
  5436. Disposes this instance.
  5437. </summary>
  5438. </member>
  5439. <member name="T:Rhino.Mocks.Mocker">
  5440. <summary>
  5441. Accessor for the current mocker
  5442. </summary>
  5443. </member>
  5444. <member name="P:Rhino.Mocks.Mocker.Current">
  5445. <summary>
  5446. The current mocker
  5447. </summary>
  5448. </member>
  5449. <member name="T:Rhino.Mocks.RhinoMocks">
  5450. <summary>
  5451. Used for [assembly: InternalsVisibleTo(RhinoMocks.StrongName)]
  5452. Used for [assembly: InternalsVisibleTo(RhinoMocks.NormalName)]
  5453. </summary>
  5454. </member>
  5455. <member name="F:Rhino.Mocks.RhinoMocks.StrongName">
  5456. <summary>
  5457. Strong name for the Dynamic Proxy assemblies. Used for InternalsVisibleTo specification.
  5458. </summary>
  5459. </member>
  5460. <member name="F:Rhino.Mocks.RhinoMocks.NormalName">
  5461. <summary>
  5462. Normal name for dynamic proxy assemblies. Used for InternalsVisibleTo specification.
  5463. </summary>
  5464. </member>
  5465. <member name="F:Rhino.Mocks.RhinoMocks.Logger">
  5466. <summary>
  5467. Logs all method calls for methods
  5468. </summary>
  5469. </member>
  5470. <member name="T:Rhino.Mocks.SetupResult">
  5471. <summary>
  5472. Setup method calls to repeat any number of times.
  5473. </summary>
  5474. </member>
  5475. <member name="M:Rhino.Mocks.SetupResult.For``1(``0)">
  5476. <summary>
  5477. Get the method options and set the last method call to repeat
  5478. any number of times.
  5479. This also means that the method would transcend ordering
  5480. </summary>
  5481. </member>
  5482. <member name="M:Rhino.Mocks.SetupResult.On(System.Object)">
  5483. <summary>
  5484. Get the method options for the last method call on the mockInstance and set it
  5485. to repeat any number of times.
  5486. This also means that the method would transcend ordering
  5487. </summary>
  5488. </member>
  5489. <member name="T:Rhino.Mocks.Utilities.MethodCallUtil">
  5490. <summary>
  5491. Utility class for working with method calls.
  5492. </summary>
  5493. </member>
  5494. <member name="M:Rhino.Mocks.Utilities.MethodCallUtil.StringPresentation(Castle.Core.Interceptor.IInvocation,Rhino.Mocks.Utilities.MethodCallUtil.FormatArgumnet,System.Reflection.MethodInfo,System.Object[])">
  5495. <summary>
  5496. Return the string representation of a method call and its arguments.
  5497. </summary>
  5498. <param name="method">The method</param>
  5499. <param name="args">The method arguments</param>
  5500. <param name="invocation">Invocation of the method, used to get the generics arguments</param>
  5501. <param name="format">Delegate to format the parameter</param>
  5502. <returns>The string representation of this method call</returns>
  5503. </member>
  5504. <member name="M:Rhino.Mocks.Utilities.MethodCallUtil.StringPresentation(Castle.Core.Interceptor.IInvocation,System.Reflection.MethodInfo,System.Object[])">
  5505. <summary>
  5506. Return the string representation of a method call and its arguments.
  5507. </summary>
  5508. <param name="invocation">The invocation of the method, used to get the generic parameters</param>
  5509. <param name="method">The method</param>
  5510. <param name="args">The method arguments</param>
  5511. <returns>The string representation of this method call</returns>
  5512. </member>
  5513. <member name="T:Rhino.Mocks.Utilities.MethodCallUtil.FormatArgumnet">
  5514. <summary>
  5515. Delegate to format the argument for the string representation of
  5516. the method call.
  5517. </summary>
  5518. </member>
  5519. <member name="T:Rhino.Mocks.Utilities.ReturnValueUtil">
  5520. <summary>
  5521. Utility to get the default value for a type
  5522. </summary>
  5523. </member>
  5524. <member name="M:Rhino.Mocks.Utilities.ReturnValueUtil.DefaultValue(System.Type,Castle.Core.Interceptor.IInvocation)">
  5525. <summary>
  5526. The default value for a type.
  5527. Null for reference types and void
  5528. 0 for value types.
  5529. First element for enums
  5530. Note that we need to get the value even for opened generic types, such as those from
  5531. generic methods.
  5532. </summary>
  5533. <param name="type">Type.</param>
  5534. <param name="invocation">The invocation.</param>
  5535. <returns>the default value</returns>
  5536. </member>
  5537. <member name="T:Rhino.Mocks.With">
  5538. <summary>
  5539. Allows easier access to MockRepository, works closely with Mocker.Current to
  5540. allow access to a context where the mock repository is automatially verified at
  5541. the end of the code block.
  5542. </summary>
  5543. </member>
  5544. <member name="M:Rhino.Mocks.With.Mocks(Rhino.Mocks.With.Proc)">
  5545. <summary>
  5546. Initialize a code block where Mocker.Current is initialized.
  5547. At the end of the code block, all the expectation will be verified.
  5548. This overload will create a new MockRepository.
  5549. </summary>
  5550. <param name="methodCallThatHasMocks">The code that will be executed under the mock context</param>
  5551. </member>
  5552. <member name="M:Rhino.Mocks.With.Mocks(Rhino.Mocks.MockRepository,Rhino.Mocks.With.Proc)">
  5553. <summary>
  5554. Initialize a code block where Mocker.Current is initialized.
  5555. At the end of the code block, all the expectation will be verified.
  5556. This overload will create a new MockRepository.
  5557. </summary>
  5558. <param name="mocks">The mock repository to use, at the end of the code block, VerifyAll() will be called on the repository.</param>
  5559. <param name="methodCallThatHasMocks">The code that will be executed under the mock context</param>
  5560. </member>
  5561. <member name="M:Rhino.Mocks.With.Mocks(Rhino.Mocks.MockRepository)">
  5562. <summary>
  5563. Create a FluentMocker
  5564. </summary>
  5565. <param name="mocks">The mock repository to use.</param>
  5566. </member>
  5567. <member name="T:Rhino.Mocks.With.Proc">
  5568. <summary>
  5569. A method with no arguments and no return value that will be called under the mock context.
  5570. </summary>
  5571. </member>
  5572. <member name="T:Rhino.Mocks.With.FluentMocker">
  5573. <summary>
  5574. FluentMocker implements some kind of fluent interface attempt
  5575. for saying "With the Mocks [mocks], Expecting (in same order) [things] verify [that]."
  5576. </summary>
  5577. </member>
  5578. <member name="T:Rhino.Mocks.With.IMockVerifier">
  5579. <summary>
  5580. Interface to verify previously defined expectations
  5581. </summary>
  5582. </member>
  5583. <member name="M:Rhino.Mocks.With.IMockVerifier.Verify(Rhino.Mocks.With.Proc)">
  5584. <summary>
  5585. Verifies if a piece of code
  5586. </summary>
  5587. </member>
  5588. <member name="M:Rhino.Mocks.With.FluentMocker.Expecting(Rhino.Mocks.With.Proc)">
  5589. <summary>
  5590. Defines unordered expectations
  5591. </summary>
  5592. <param name="methodCallsDescribingExpectations">A delegate describing the expectations</param>
  5593. <returns>an IMockVerifier</returns>
  5594. </member>
  5595. <member name="M:Rhino.Mocks.With.FluentMocker.ExpectingInSameOrder(Rhino.Mocks.With.Proc)">
  5596. <summary>
  5597. Defines ordered expectations
  5598. </summary>
  5599. <param name="methodCallsDescribingExpectations">A delegate describing the expectations</param>
  5600. <returns>an IMockVerifier</returns>
  5601. </member>
  5602. <member name="M:Rhino.Mocks.With.FluentMocker.Verify(Rhino.Mocks.With.Proc)">
  5603. <summary>
  5604. Verifies previously defined expectations
  5605. </summary>
  5606. </member>
  5607. <member name="T:Rhino.Mocks.Function`2">
  5608. <summary>
  5609. This delegate is compatible with the System.Func{T,R} signature
  5610. We have to define our own to get compatability with 2.0
  5611. </summary>
  5612. </member>
  5613. <member name="T:__ProtectAttribute">
  5614. <summary>
  5615. This attribute is here so we can get better Pex integration
  5616. Using this means that Pex will not try to inspect the work of
  5617. the actual proxies being generated by Rhino Mocks
  5618. </summary>
  5619. </member>
  5620. </members>
  5621. </doc>