root/honeyclient/branches/exp/bhenderson-browser_automation/References/Rhino.Mocks.xml

Revision 1734, 141.4 kB (checked in by bhenderson, 5 months ago)

Redesigned using WatiN and added Firefox functionality

  • Property svn:executable set to *
Line 
1 <?xml version="1.0"?>
2 <doc>
3     <assembly>
4         <name>Rhino.Mocks.Partial</name>
5     </assembly>
6     <members>
7         <member name="T:Rhino.Mocks.Constraints.AbstractConstraint">
8             <summary>
9             Interface for constraints
10             </summary>
11         </member>
12         <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.Eval(System.Object)">
13             <summary>
14             determains if the object pass the constraints
15             </summary>
16         </member>
17         <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseAnd(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
18             <summary>
19             And operator for constraints
20             </summary>
21         </member>
22         <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_LogicalNot(Rhino.Mocks.Constraints.AbstractConstraint)">
23             <summary>
24             Not operator for constraints
25             </summary>
26         </member>
27         <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseOr(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
28             <summary>
29             Or operator for constraints
30             </summary>
31         </member>
32         <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_False(Rhino.Mocks.Constraints.AbstractConstraint)">
33             <summary>
34             Allow overriding of || or &amp;&amp;
35             </summary>
36             <param name="c"></param>
37             <returns></returns>
38         </member>
39         <member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_True(Rhino.Mocks.Constraints.AbstractConstraint)">
40             <summary>
41             Allow overriding of || or &amp;&amp;
42             </summary>
43             <param name="c"></param>
44             <returns></returns>
45         </member>
46         <member name="P:Rhino.Mocks.Constraints.AbstractConstraint.Message">
47             <summary>
48             Gets the message for this constraint
49             </summary>
50             <value></value>
51         </member>
52         <member name="T:Rhino.Mocks.Constraints.PropertyIs">
53             <summary>
54             Constrain that the property has a specified value
55             </summary>
56         </member>
57         <member name="T:Rhino.Mocks.Constraints.PropertyConstraint">
58             <summary>
59             Constrain that the property matches another constraint.
60             </summary>
61         </member>
62         <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
63             <summary>
64             Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance.
65             </summary>
66             <param name="propertyName">Name of the property.</param>
67             <param name="constraint">Constraint to place on the property value.</param>
68         </member>
69         <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
70             <summary>
71             Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance, specifying a disambiguating
72             <paramref name="declaringType"/> for the property.
73             </summary>
74             <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
75             <param name="propertyName">Name of the property.</param>
76             <param name="constraint">Constraint to place on the property value.</param>
77         </member>
78         <member name="M:Rhino.Mocks.Constraints.PropertyConstraint.Eval(System.Object)">
79             <summary>
80             Determines if the object passes the constraint.
81             </summary>
82         </member>
83         <member name="P:Rhino.Mocks.Constraints.PropertyConstraint.Message">
84             <summary>
85             Gets the message for this constraint
86             </summary>
87             <value></value>
88         </member>
89         <member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.String,System.Object)">
90             <summary>
91             Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance.
92             </summary>
93             <param name="propertyName">Name of the property.</param>
94             <param name="expectedValue">Expected value.</param>
95         </member>
96         <member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.Type,System.String,System.Object)">
97             <summary>
98             Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance, specifying a disambiguating
99             <paramref name="declaringType"/> for the property.
100             </summary>
101             <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
102             <param name="propertyName">Name of the property.</param>
103             <param name="expectedValue">Expected value.</param>
104         </member>
105         <member name="T:Rhino.Mocks.Constraints.TypeOf">
106             <summary>
107             Constrain that the parameter must be of the specified type
108             </summary>
109         </member>
110         <member name="M:Rhino.Mocks.Constraints.TypeOf.#ctor(System.Type)">
111             <summary>
112             Creates a new <see cref="T:Rhino.Mocks.Constraints.TypeOf"/> instance.
113             </summary>
114             <param name="type">Type.</param>
115         </member>
116         <member name="M:Rhino.Mocks.Constraints.TypeOf.Eval(System.Object)">
117             <summary>
118             determains if the object pass the constraints
119             </summary>
120         </member>
121         <member name="P:Rhino.Mocks.Constraints.TypeOf.Message">
122             <summary>
123             Gets the message for this constraint
124             </summary>
125             <value></value>
126         </member>
127         <member name="T:Rhino.Mocks.Constraints.Same">
128             <summary>
129             Constraint that determines whether an object is the same object as another.
130             </summary>
131         </member>
132         <member name="M:Rhino.Mocks.Constraints.Same.#ctor(System.Object)">
133             <summary>
134             Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
135             </summary>
136             <param name="obj">Obj.</param>
137         </member>
138         <member name="M:Rhino.Mocks.Constraints.Same.Eval(System.Object)">
139             <summary>
140             Determines if the object passes the constraints.
141             </summary>
142         </member>
143         <member name="P:Rhino.Mocks.Constraints.Same.Message">
144             <summary>
145             Gets the message for this constraint.
146             </summary>
147         </member>
148         <member name="T:Rhino.Mocks.Constraints.CollectionEqual">
149             <summary>
150             Constrain that the list contains the same items as the parameter list
151             </summary>
152         </member>
153         <member name="M:Rhino.Mocks.Constraints.CollectionEqual.#ctor(System.Collections.ICollection)">
154             <summary>
155             Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionEqual"/> instance.
156             </summary>
157             <param name="collection">In list.</param>
158         </member>
159         <member name="M:Rhino.Mocks.Constraints.CollectionEqual.Eval(System.Object)">
160             <summary>
161             determains if the object pass the constraints
162             </summary>
163         </member>
164         <member name="P:Rhino.Mocks.Constraints.CollectionEqual.Message">
165             <summary>
166             Gets the message for this constraint
167             </summary>
168             <value></value>
169         </member>
170         <member name="T:Rhino.Mocks.Constraints.OneOf">
171             <summary>
172             Constrain that the parameter is one of the items in the list
173             </summary>
174         </member>
175         <member name="M:Rhino.Mocks.Constraints.OneOf.#ctor(System.Collections.ICollection)">
176             <summary>
177             Creates a new <see cref="T:Rhino.Mocks.Constraints.OneOf"/> instance.
178             </summary>
179             <param name="collection">In list.</param>
180         </member>
181         <member name="M:Rhino.Mocks.Constraints.OneOf.Eval(System.Object)">
182             <summary>
183             determains if the object pass the constraints
184             </summary>
185         </member>
186         <member name="P:Rhino.Mocks.Constraints.OneOf.Message">
187             <summary>
188             Gets the message for this constraint
189             </summary>
190             <value></value>
191         </member>
192         <member name="T:Rhino.Mocks.Constraints.IsIn">
193             <summary>
194             Constrain that the object is inside the parameter list
195             </summary>
196         </member>
197         <member name="M:Rhino.Mocks.Constraints.IsIn.#ctor(System.Object)">
198             <summary>
199             Creates a new <see cref="T:Rhino.Mocks.Constraints.IsIn"/> instance.
200             </summary>
201             <param name="inList">In list.</param>
202         </member>
203         <member name="M:Rhino.Mocks.Constraints.IsIn.Eval(System.Object)">
204             <summary>
205             determains if the object pass the constraints
206             </summary>
207         </member>
208         <member name="P:Rhino.Mocks.Constraints.IsIn.Message">
209             <summary>
210             Gets the message for this constraint
211             </summary>
212             <value></value>
213         </member>
214         <member name="T:Rhino.Mocks.Constraints.Or">
215             <summary>
216             Combines two constraints, constraint pass if either is fine.
217             </summary>
218         </member>
219         <member name="M:Rhino.Mocks.Constraints.Or.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
220             <summary>
221             Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
222             </summary>
223             <param name="c1">C1.</param>
224             <param name="c2">C2.</param>
225         </member>
226         <member name="M:Rhino.Mocks.Constraints.Or.Eval(System.Object)">
227             <summary>
228             determains if the object pass the constraints
229             </summary>
230         </member>
231         <member name="P:Rhino.Mocks.Constraints.Or.Message">
232             <summary>
233             Gets the message for this constraint
234             </summary>
235             <value></value>
236         </member>
237         <member name="T:Rhino.Mocks.Constraints.Not">
238             <summary>
239             Negate a constraint
240             </summary>
241         </member>
242         <member name="M:Rhino.Mocks.Constraints.Not.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
243             <summary>
244             Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
245             </summary>
246             <param name="c1">C1.</param>
247         </member>
248         <member name="M:Rhino.Mocks.Constraints.Not.Eval(System.Object)">
249             <summary>
250             determains if the object pass the constraints
251             </summary>
252         </member>
253         <member name="P:Rhino.Mocks.Constraints.Not.Message">
254             <summary>
255             Gets the message for this constraint
256             </summary>
257             <value></value>
258         </member>
259         <member name="T:Rhino.Mocks.Constraints.And">
260             <summary>
261             Combines two constraints
262             </summary>
263             <remarks></remarks>
264         </member>
265         <member name="M:Rhino.Mocks.Constraints.And.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
266             <summary>
267             Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
268             </summary>
269             <param name="c1">C1.</param>
270             <param name="c2">C2.</param>
271         </member>
272         <member name="M:Rhino.Mocks.Constraints.And.Eval(System.Object)">
273             <summary>
274             determains if the object pass the constraints
275             </summary>
276         </member>
277         <member name="P:Rhino.Mocks.Constraints.And.Message">
278             <summary>
279             Gets the message for this constraint
280             </summary>
281             <value></value>
282         </member>
283         <member name="T:Rhino.Mocks.Constraints.Like">
284             <summary>
285             Constrain the argument to validate according to regex pattern
286             </summary>
287         </member>
288         <member name="M:Rhino.Mocks.Constraints.Like.#ctor(System.String)">
289             <summary>
290             Creates a new <see cref="T:Rhino.Mocks.Constraints.Like"/> instance.
291             </summary>
292             <param name="pattern">Pattern.</param>
293         </member>
294         <member name="M:Rhino.Mocks.Constraints.Like.Eval(System.Object)">
295             <summary>
296             determains if the object pass the constraints
297             </summary>
298         </member>
299         <member name="P:Rhino.Mocks.Constraints.Like.Message">
300             <summary>
301             Gets the message for this constraint
302             </summary>
303             <value></value>
304         </member>
305         <member name="T:Rhino.Mocks.Constraints.Contains">
306             <summary>
307             Constraint that evaluate whatever an argument contains the specified string.
308             </summary>
309         </member>
310         <member name="M:Rhino.Mocks.Constraints.Contains.#ctor(System.String)">
311             <summary>
312             Creates a new <see cref="T:Rhino.Mocks.Constraints.Contains"/> instance.
313             </summary>
314             <param name="innerString">Inner string.</param>
315         </member>
316         <member name="M:Rhino.Mocks.Constraints.Contains.Eval(System.Object)">
317             <summary>
318             determains if the object pass the constraints
319             </summary>
320         </member>
321         <member name="P:Rhino.Mocks.Constraints.Contains.Message">
322             <summary>
323             Gets the message for this constraint
324             </summary>
325             <value></value>
326         </member>
327         <member name="T:Rhino.Mocks.Constraints.EndsWith">
328             <summary>
329             Constraint that evaluate whatever an argument ends with the specified string
330             </summary>
331         </member>
332         <member name="M:Rhino.Mocks.Constraints.EndsWith.#ctor(System.String)">
333             <summary>
334             Creates a new <see cref="T:Rhino.Mocks.Constraints.EndsWith"/> instance.
335             </summary>
336             <param name="end">End.</param>
337         </member>
338         <member name="M:Rhino.Mocks.Constraints.EndsWith.Eval(System.Object)">
339             <summary>
340             determains if the object pass the constraints
341             </summary>
342         </member>
343         <member name="P:Rhino.Mocks.Constraints.EndsWith.Message">
344             <summary>
345             Gets the message for this constraint
346             </summary>
347             <value></value>
348         </member>
349         <member name="T:Rhino.Mocks.Constraints.StartsWith">
350             <summary>
351             Constraint that evaluate whatever an argument start with the specified string
352             </summary>
353         </member>
354         <member name="M:Rhino.Mocks.Constraints.StartsWith.#ctor(System.String)">
355             <summary>
356             Creates a new <see cref="T:Rhino.Mocks.Constraints.StartsWith"/> instance.
357             </summary>
358             <param name="start">Start.</param>
359         </member>
360         <member name="M:Rhino.Mocks.Constraints.StartsWith.Eval(System.Object)">
361             <summary>
362             determains if the object pass the constraints
363             </summary>
364         </member>
365         <member name="P:Rhino.Mocks.Constraints.StartsWith.Message">
366             <summary>
367             Gets the message for this constraint
368             </summary>
369             <value></value>
370         </member>
371         <member name="T:Rhino.Mocks.Constraints.Equal">
372             <summary>
373             Constraint that evaluate whatever an object equals another
374             </summary>
375         </member>
376         <member name="M:Rhino.Mocks.Constraints.Equal.#ctor(System.Object)">
377             <summary>
378             Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
379             </summary>
380             <param name="obj">Obj.</param>
381         </member>
382         <member name="M:Rhino.Mocks.Constraints.Equal.Eval(System.Object)">
383             <summary>
384             determains if the object pass the constraints
385             </summary>
386         </member>
387         <member name="P:Rhino.Mocks.Constraints.Equal.Message">
388             <summary>
389             Gets the message for this constraint
390             </summary>
391             <value></value>
392         </member>
393         <member name="T:Rhino.Mocks.Constraints.Anything">
394             <summary>
395             Constraint that always returns true
396             </summary>
397         </member>
398         <member name="M:Rhino.Mocks.Constraints.Anything.Eval(System.Object)">
399             <summary>
400             determains if the object pass the constraints
401             </summary>
402         </member>
403         <member name="P:Rhino.Mocks.Constraints.Anything.Message">
404             <summary>
405             Gets the message for this constraint
406             </summary>
407             <value></value>
408         </member>
409         <member name="T:Rhino.Mocks.Constraints.ComparingConstraint">
410             <summary>
411             Constraint that evaluate whatever a comparable is greater than another
412             </summary>
413         </member>
414         <member name="M:Rhino.Mocks.Constraints.ComparingConstraint.#ctor(System.IComparable,System.Boolean,System.Boolean)">
415             <summary>
416             Creates a new <see cref="T:Rhino.Mocks.Constraints.ComparingConstraint"/> instance.
417             </summary>
418         </member>
419         <member name="M:Rhino.Mocks.Constraints.ComparingConstraint.Eval(System.Object)">
420             <summary>
421             determains if the object pass the constraints
422             </summary>
423         </member>
424         <member name="P:Rhino.Mocks.Constraints.ComparingConstraint.Message">
425             <summary>
426             Gets the message for this constraint
427             </summary>
428             <value></value>
429         </member>
430         <member name="T:Rhino.Mocks.Is">
431             <summary>
432             Central location for constraints
433             </summary>
434         </member>
435         <member name="M:Rhino.Mocks.Is.GreaterThan(System.IComparable)">
436             <summary>
437             Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
438             </summary>
439             <param name="objToCompare">The object the parameter should be greater than</param>
440         </member>
441         <member name="M:Rhino.Mocks.Is.LessThan(System.IComparable)">
442             <summary>
443             Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
444             </summary>
445             <param name="objToCompare">The object the parameter should be less than</param>
446         </member>
447         <member name="M:Rhino.Mocks.Is.LessThanOrEqual(System.IComparable)">
448             <summary>
449             Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
450             </summary>
451             <param name="objToCompare">The object the parameter should be less than or equal to</param>
452         </member>
453         <member name="M:Rhino.Mocks.Is.GreaterThanOrEqual(System.IComparable)">
454             <summary>
455             Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
456             </summary>
457             <param name="objToCompare">The object the parameter should be greater than or equal to</param>
458         </member>
459         <member name="M:Rhino.Mocks.Is.Equal(System.Object)">
460             <summary>
461             Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
462             </summary>
463             <param name="obj">The object the parameter should equal to</param>
464         </member>
465         <member name="M:Rhino.Mocks.Is.NotEqual(System.Object)">
466             <summary>
467             Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
468             </summary>
469             <param name="obj">The object the parameter should not equal to</param>
470         </member>
471         <member name="M:Rhino.Mocks.Is.Same(System.Object)">
472             <summary>
473             Evaluate a same as constraint.
474             </summary>
475             <param name="obj">The object the parameter should the same as.</param>
476         </member>
477         <member name="M:Rhino.Mocks.Is.NotSame(System.Object)">
478             <summary>
479             Evaluate a not same as constraint.
480             </summary>
481             <param name="obj">The object the parameter should not be the same as.</param>
482         </member>
483         <member name="M:Rhino.Mocks.Is.Anything">
484             <summary>
485             A constraints that accept anything
486             </summary>
487             <returns></returns>
488         </member>
489         <member name="M:Rhino.Mocks.Is.Null">
490             <summary>
491             A constraint that accept only nulls
492             </summary>
493             <returns></returns>
494         </member>
495         <member name="M:Rhino.Mocks.Is.NotNull">
496             <summary>
497             A constraint that accept only non null values
498             </summary>
499             <returns></returns>
500         </member>
501         <member name="M:Rhino.Mocks.Is.TypeOf(System.Type)">
502             <summary>
503             A constraint that accept only value of the specified type
504             </summary>
505         </member>
506         <member name="T:Rhino.Mocks.List">
507             <summary>
508             Central location for constraints about lists and collections
509             </summary>
510         </member>
511         <member name="M:Rhino.Mocks.List.IsIn(System.Object)">
512             <summary>
513             Determines whether the specified obj is in the paramter.
514             The parameter must be IEnumerable.
515             </summary>
516             <param name="obj">Obj.</param>
517             <returns></returns>
518         </member>
519         <member name="M:Rhino.Mocks.List.OneOf(System.Collections.ICollection)">
520             <summary>
521             Determains whatever the parameter is in the collection.
522             </summary>
523         </member>
524         <member name="M:Rhino.Mocks.List.Equal(System.Collections.ICollection)">
525             <summary>
526             Determains that the parameter collection is identical to the specified collection
527             </summary>
528         </member>
529         <member name="T:Rhino.Mocks.Property">
530             <summary>
531             Central location for constraints for object's properties
532             </summary>
533         </member>
534         <member name="M:Rhino.Mocks.Property.Value(System.String,System.Object)">
535             <summary>
536             Constrains the parameter to have property with the specified value
537             </summary>
538             <param name="propertyName">Name of the property.</param>
539             <param name="expectedValue">Expected value.</param>
540             <returns></returns>
541         </member>
542         <member name="M:Rhino.Mocks.Property.Value(System.Type,System.String,System.Object)">
543             <summary>
544             Constrains the parameter to have property with the specified value.
545             </summary>
546             <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
547             <param name="propertyName">Name of the property.</param>
548             <param name="expectedValue">Expected value.</param>
549             <returns></returns>
550         </member>
551         <member name="M:Rhino.Mocks.Property.ValueConstraint(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
552             <summary>
553             Constrains the parameter to have a property satisfying a specified constraint.
554             </summary>
555             <param name="propertyName">Name of the property.</param>
556             <param name="propertyConstraint">Constraint for the property.</param>
557         </member>
558         <member name="M:Rhino.Mocks.Property.ValueConstraint(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
559             <summary>
560             Constrains the parameter to have a property satisfying a specified constraint.
561             </summary>
562             <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
563             <param name="propertyName">Name of the property.</param>
564             <param name="propertyConstraint">Constraint for the property.</param>
565         </member>
566         <member name="M:Rhino.Mocks.Property.IsNull(System.String)">
567             <summary>
568             Determines whether the parameter has the specified property and that it is null.
569             </summary>
570             <param name="propertyName">Name of the property.</param>
571             <returns></returns>
572         </member>
573         <member name="M:Rhino.Mocks.Property.IsNull(System.Type,System.String)">
574             <summary>
575             Determines whether the parameter has the specified property and that it is null.
576             </summary>
577             <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
578             <param name="propertyName">Name of the property.</param>
579             <returns></returns>
580         </member>
581         <member name="M:Rhino.Mocks.Property.IsNotNull(System.String)">
582             <summary>
583             Determines whether the parameter has the specified property and that it is not null.
584             </summary>
585             <param name="propertyName">Name of the property.</param>
586             <returns></returns>
587         </member>
588         <member name="M:Rhino.Mocks.Property.IsNotNull(System.Type,System.String)">
589             <summary>
590             Determines whether the parameter has the specified property and that it is not null.
591             </summary>
592             <param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
593             <param name="propertyName">Name of the property.</param>
594             <returns></returns>
595         </member>
596         <member name="T:Rhino.Mocks.Text">
597             <summary>
598             Central location for all text related constraints
599             </summary>
600         </member>
601         <member name="M:Rhino.Mocks.Text.StartsWith(System.String)">
602             <summary>
603             Constrain the argument to starts with the specified string
604             </summary>
605         </member>
606         <member name="M:Rhino.Mocks.Text.EndsWith(System.String)">
607             <summary>
608             Constrain the argument to end with the specified string
609             </summary>
610         </member>
611         <member name="M:Rhino.Mocks.Text.Contains(System.String)">
612             <summary>
613             Constrain the argument to contain the specified string
614             </summary>
615         </member>
616         <member name="M:Rhino.Mocks.Text.Like(System.String)">
617             <summary>
618             Constrain the argument to validate according to regex pattern
619             </summary>
620         </member>
621         <member name="T:Rhino.Mocks.Exceptions.ExpectationViolationException">
622             <summary>
623             An expectaton violation was detected.
624             </summary>
625         </member>
626         <member name="M:Rhino.Mocks.Exceptions.ExpectationViolationException.#ctor(System.String)">
627             <summary>
628             Creates a new <see cref="T:Rhino.Mocks.Exceptions.ExpectationViolationException"/> instance.
629             </summary>
630             <param name="message">Message.</param>
631         </member>
632         <member name="M:Rhino.Mocks.Exceptions.ExpectationViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
633             <summary>
634             Serialization constructor
635             </summary>
636         </member>
637         <member name="T:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException">
638             <summary>
639             Signals that an object was call on a mock repostiroy which doesn't
640             belong to this mock repository or not a mock
641             </summary>
642         </member>
643         <member name="M:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException.#ctor(System.String)">
644             <summary>
645             Creates a new <see cref="T:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException"/> instance.
646             </summary>
647             <param name="message">Message.</param>
648         </member>
649         <member name="M:Rhino.Mocks.Exceptions.ObjectNotMockFromThisRepositoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
650             <summary>
651             Serialization constructor
652             </summary>
653         </member>
654         <member name="T:Rhino.Mocks.Expectations.AbstractExpectation">
655             <summary>
656             Abstract class that holds common information for
657             expectations.
658             </summary>
659         </member>
660         <member name="T:Rhino.Mocks.Interfaces.IExpectation">
661             <summary>
662             Interface to validate that a method call is correct.
663             </summary>
664         </member>
665         <member name="M:Rhino.Mocks.Interfaces.IExpectation.IsExpected(System.Object[])">
666             <summary>
667             Validate the arguments for the method.
668             This method can be called numerous times, so be careful about side effects
669             </summary>
670             <param name="args">The arguments with which the method was called</param>
671         </member>
672         <member name="M:Rhino.Mocks.Interfaces.IExpectation.AddActualCall">
673             <summary>
674             Add an actual method call to this expectation
675             </summary>
676         </member>
677         <member name="M:Rhino.Mocks.Interfaces.IExpectation.ReturnOrThrow(System.Object[])">
678             <summary>
679             Returns the return value or throw the exception and setup any output / ref parameters
680             that has been set.
681             </summary>
682         </member>
683         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ErrorMessage">
684             <summary>
685             Gets the error message.
686             </summary>
687             <value></value>
688         </member>
689         <member name="P:Rhino.Mocks.Interfaces.IExpectation.Expected">
690             <summary>
691             Range of expected calls
692             </summary>
693         </member>
694         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActualCalls">
695             <summary>
696             Number of call actually made for this method
697             </summary>
698         </member>
699         <member name="P:Rhino.Mocks.Interfaces.IExpectation.CanAcceptCalls">
700             <summary>
701             If this expectation is still waiting for calls.
702             </summary>
703         </member>
704         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ReturnValue">
705             <summary>
706             The return value for a method matching this expectation
707             </summary>
708         </member>
709         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ExceptionToThrow">
710             <summary>
711             Gets or sets the exception to throw on a method matching this expectation.
712             </summary>
713         </member>
714         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActionsSatisfied">
715             <summary>
716             Gets a value indicating whether this instance's action is staisfied.
717             A staisfied instance means that there are no more requirements from
718             this method. A method with non void return value must register either
719             a return value or an exception to throw.
720             </summary>
721         </member>
722         <member name="P:Rhino.Mocks.Interfaces.IExpectation.Method">
723             <summary>
724             Gets the method this expectation is for.
725             </summary>
726         </member>
727         <member name="P:Rhino.Mocks.Interfaces.IExpectation.RepeatableOption">
728             <summary>
729             Gets or sets what special condtions there are for this method
730             repeating.
731             </summary>
732         </member>
733         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ExpectationSatisfied">
734             <summary>
735             Gets a value indicating whether this expectation was satisfied
736             </summary>
737         </member>
738         <member name="P:Rhino.Mocks.Interfaces.IExpectation.HasReturnValue">
739             <summary>
740             Specify whatever this expectation has a return value set
741             You can't check ReturnValue for this because a valid return value include null.
742             </summary>
743         </member>
744         <member name="P:Rhino.Mocks.Interfaces.IExpectation.ActionToExecute">
745             <summary>
746             An action to execute when the method is matched.
747             </summary>
748         </member>
749         <member name="P:Rhino.Mocks.Interfaces.IExpectation.OutRefParams">
750             <summary>
751             Set the out / ref parameters for the method call.
752             The indexing is zero based and ignores any non out/ref parameter.
753             It is possible not to pass all the parameters. This method can be called only once.
754             </summary>
755         </member>
756         <member name="P:Rhino.Mocks.Interfaces.IExpectation.Message">
757             <summary>
758             Documentation Message
759             </summary>
760         </member>
761         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.actualCalls">
762             <summary>
763             Number of actuall calls made that passed this expectation
764             </summary>
765         </member>
766         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.expected">
767             <summary>
768             Range of expected calls that should pass this expectation.
769             </summary>
770         </member>
771         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.returnValue">
772             <summary>
773             The return value for a method matching this expectation
774             </summary>
775         </member>
776         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.exceptionToThrow">
777             <summary>
778             The exception to throw on a method matching this expectation.
779             </summary>
780         </member>
781         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.method">
782             <summary>
783             The method this expectation is for.
784             </summary>
785         </member>
786         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.returnValueSet">
787             <summary>
788             The return value for this method was set
789             </summary>
790         </member>
791         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.repeatableOption">
792             <summary>
793             Whether this method will repeat
794             unlimited number of times.
795             </summary>
796         </member>
797         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.actionToExecute">
798             <summary>
799             A delegate that will be run when the
800             expectation is matched.
801             </summary>
802         </member>
803         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.matchingArgs">
804             <summary>
805             The arguments that matched this expectation.
806             </summary>
807         </member>
808         <member name="F:Rhino.Mocks.Expectations.AbstractExpectation.message">
809             <summary>
810             Documentation message
811             </summary>
812         </member>
813         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.GetHashCode">
814             <summary>
815             Get the hash code
816             </summary>
817         </member>
818         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.AddActualCall">
819             <summary>
820             Add an actual method call to this expectation
821             </summary>
822         </member>
823         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.ReturnOrThrow(System.Object[])">
824             <summary>
825             Returns the return value or throw the exception and setup output / ref parameters
826             </summary>
827         </member>
828         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.IsExpected(System.Object[])">
829             <summary>
830             Validate the arguments for the method on the child methods
831             </summary>
832             <param name="args">The arguments with which the method was called</param>
833         </member>
834         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.#ctor(System.Reflection.MethodInfo)">
835             <summary>
836             Creates a new <see cref="T:Rhino.Mocks.Expectations.AbstractExpectation"/> instance.
837             </summary>
838             <param name="method">Method.</param>
839         </member>
840         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.#ctor(Rhino.Mocks.Interfaces.IExpectation)">
841             <summary>
842             Creates a new <see cref="T:Rhino.Mocks.Expectations.AbstractExpectation"/> instance.
843             </summary>
844             <param name="expectation">Expectation.</param>
845         </member>
846         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.DoIsExpected(System.Object[])">
847             <summary>
848             Validate the arguments for the method on the child methods
849             </summary>
850             <param name="args">The arguments with which the method was called</param>
851         </member>
852         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.Equals(System.Object)">
853             <summary>
854             Determines if this object equal to obj
855             </summary>
856         </member>
857         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.CreateErrorMessage(System.String)">
858             <summary>
859             The error message for these arguments
860             </summary>
861         </member>
862         <member name="M:Rhino.Mocks.Expectations.AbstractExpectation.AssertDelegateArgumentsMatchMethod(System.Delegate)">
863             <summary>
864             Asserts that the delegate has the same parameters as the expectation's method call
865             </summary>
866         </member>
867         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.OutRefParams">
868             <summary>
869             Setter for the outpur / ref parameters for this expecataion.
870             Can only be set once.
871             </summary>
872         </member>
873         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.HasReturnValue">
874             <summary>
875             Specify whatever this expectation has a return value set
876             You can't check ReturnValue for this because a valid return value include null.
877             </summary>
878         </member>
879         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Method">
880             <summary>
881             Gets the method this expectation is for.
882             </summary>
883         </member>
884         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.RepeatableOption">
885             <summary>
886             Gets or sets what special condtions there are for this method
887             </summary>
888         </member>
889         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.Expected">
890             <summary>
891             Range of expected calls
892             </summary>
893         </member>
894         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.ActualCalls">
895             <summary>
896             Number of call actually made for this method
897             </summary>
898         </member>
899         <member name="P:Rhino.Mocks.Expectations.AbstractExpectation.CanAcceptCalls">
900             <summary>
901             If this expectation is still waiting for calls.
902             </summary>