-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rhino.Mocks.xml
5226 lines (5224 loc) · 243 KB
/
Rhino.Mocks.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Rhino.Mocks.Partial</name>
</assembly>
<members>
<member name="T:Rhino.Mocks.Constraints.AbstractConstraint">
<summary>
Interface for constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.AbstractConstraint.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseAnd(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
And operator for constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_LogicalNot(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Not operator for constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_BitwiseOr(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Or operator for constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_False(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Allow overriding of || or &&
</summary>
<param name="c"></param>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.AbstractConstraint.op_True(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Allow overriding of || or &&
</summary>
<param name="c"></param>
<returns></returns>
</member>
<member name="P:Rhino.Mocks.Constraints.AbstractConstraint.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.#ctor(System.Object)">
<summary>
Initializes a new constraint object.
</summary>
<param name="expected">The expected object, The actual object is passed in as a parameter to the <see cref="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Eval(System.Object)"/> method</param>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Eval(System.Object)">
<summary>
Evaluate this constraint.
</summary>
<param name="obj">The actual object that was passed in the method call to the mock.</param>
<returns>True when the constraint is met, else false.</returns>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckReferenceType(System.Object,System.Object)">
<summary>
Checks if the properties of the <paramref name="actual"/> object
are the same as the properies of the <paramref name="expected"/> object.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<returns>True when both objects have the same values, else False.</returns>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckValue(System.Object,System.Object)">
<summary>
</summary>
<param name="expected"></param>
<param name="actual"></param>
<returns></returns>
<remarks>This is the real heart of the beast.</remarks>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckProperties(System.Object,System.Object)">
<summary>
Used by CheckReferenceType to check all properties of the reference type.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<returns>True when both objects have the same values, else False.</returns>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckFields(System.Object,System.Object)">
<summary>
Used by CheckReferenceType to check all fields of the reference type.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<returns>True when both objects have the same values, else False.</returns>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.CheckCollection(System.Collections.IEnumerable,System.Collections.IEnumerable)">
<summary>
Checks the items of both collections
</summary>
<param name="expectedCollection">The expected collection</param>
<param name="actualCollection"></param>
<returns>True if both collections contain the same items in the same order.</returns>
</member>
<member name="M:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.BuildPropertyName">
<summary>
Builds a propertyname from the Stack _properties like 'Order.Product.Price'
to be used in the error message.
</summary>
<returns>A nested property name.</returns>
</member>
<member name="P:Rhino.Mocks.Constraints.AllPropertiesMatchConstraint.Message">
<summary>
Rhino.Mocks uses this property to generate an error message.
</summary>
<value>
A message telling the tester why the constraint failed.
</value>
</member>
<member name="T:Rhino.Mocks.Constraints.PublicFieldIs">
<summary>
Constrain that the public field has a specified value
</summary>
</member>
<member name="T:Rhino.Mocks.Constraints.PublicFieldConstraint">
<summary>
Constrain that the public field matches another constraint.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldConstraint"/> instance.
</summary>
<param name="publicFieldName">Name of the public field.</param>
<param name="constraint">Constraint to place on the public field value.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldConstraint"/> instance, specifying a disambiguating
<paramref name="declaringType"/> for the public field.
</summary>
<param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
<param name="publicFieldName">Name of the public field.</param>
<param name="constraint">Constraint to place on the public field value.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.PublicFieldConstraint.Eval(System.Object)">
<summary>
Determines if the object passes the constraint.
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.PublicFieldConstraint.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="M:Rhino.Mocks.Constraints.PublicFieldIs.#ctor(System.String,System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldIs"/> instance.
</summary>
<param name="publicFieldName">Name of the public field.</param>
<param name="expectedValue">Expected value.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.PublicFieldIs.#ctor(System.Type,System.String,System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PublicFieldIs"/> instance, specifying a disambiguating
<paramref name="declaringType"/> for the public field.
</summary>
<param name="declaringType">The type that declares the public field, used to disambiguate between public fields.</param>
<param name="publicFieldName">Name of the public field.</param>
<param name="expectedValue">Expected value.</param>
</member>
<member name="T:Rhino.Mocks.Constraints.PropertyIs">
<summary>
Constrain that the property has a specified value
</summary>
</member>
<member name="T:Rhino.Mocks.Constraints.PropertyConstraint">
<summary>
Constrain that the property matches another constraint.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance.
</summary>
<param name="propertyName">Name of the property.</param>
<param name="constraint">Constraint to place on the property value.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.PropertyConstraint.#ctor(System.Type,System.String,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyConstraint"/> instance, specifying a disambiguating
<paramref name="declaringType"/> for the property.
</summary>
<param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
<param name="propertyName">Name of the property.</param>
<param name="constraint">Constraint to place on the property value.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.PropertyConstraint.Eval(System.Object)">
<summary>
Determines if the object passes the constraint.
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.PropertyConstraint.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.String,System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance.
</summary>
<param name="propertyName">Name of the property.</param>
<param name="expectedValue">Expected value.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.PropertyIs.#ctor(System.Type,System.String,System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.PropertyIs"/> instance, specifying a disambiguating
<paramref name="declaringType"/> for the property.
</summary>
<param name="declaringType">The type that declares the property, used to disambiguate between properties.</param>
<param name="propertyName">Name of the property.</param>
<param name="expectedValue">Expected value.</param>
</member>
<member name="T:Rhino.Mocks.Constraints.TypeOf">
<summary>
Constrain that the parameter must be of the specified type
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.TypeOf.#ctor(System.Type)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.TypeOf"/> instance.
</summary>
<param name="type">Type.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.TypeOf.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.TypeOf.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Same">
<summary>
Constraint that determines whether an object is the same object as another.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Same.#ctor(System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
</summary>
<param name="obj">Obj.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Same.Eval(System.Object)">
<summary>
Determines if the object passes the constraints.
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Same.Message">
<summary>
Gets the message for this constraint.
</summary>
</member>
<member name="T:Rhino.Mocks.Constraints.PredicateConstraint`1">
<summary>
Evaluate a parameter using constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
<summary>
Create new instance
</summary>
<param name="predicate"></param>
</member>
<member name="M:Rhino.Mocks.Constraints.PredicateConstraint`1.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.PredicateConstraint`1.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.LambdaConstraint">
<summary>
A constraint based on lambda expression, we are using Expression{T}
because we want to be able to get good error reporting on that.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.LambdaConstraint.#ctor(System.Linq.Expressions.Expression)">
<summary>
Initializes a new instance of the <see cref="T:Rhino.Mocks.Constraints.LambdaConstraint"/> class.
</summary>
<param name="expr">The expr.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.LambdaConstraint.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="P:Rhino.Mocks.Constraints.LambdaConstraint.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.CollectionEqual">
<summary>
Constrain that the list contains the same items as the parameter list
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.CollectionEqual.#ctor(System.Collections.IEnumerable)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionEqual"/> instance.
</summary>
<param name="collection">In list.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.CollectionEqual.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.CollectionEqual.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.OneOf">
<summary>
Constrain that the parameter is one of the items in the list
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.OneOf.#ctor(System.Collections.IEnumerable)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.OneOf"/> instance.
</summary>
<param name="collection">In list.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.OneOf.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.OneOf.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.IsIn">
<summary>
Constrain that the object is inside the parameter list
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.IsIn.#ctor(System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.IsIn"/> instance.
</summary>
<param name="inList">In list.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsIn.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.IsIn.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.CollectionCount">
<summary>
Applies another AbstractConstraint to the collection count.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.CollectionCount.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.CollectionCount"/> instance.
</summary>
<param name="constraint">The constraint that should be applied to the collection count.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.CollectionCount.Eval(System.Object)">
<summary>
Determines if the parameter conforms to this constraint.
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.CollectionCount.Message">
<summary>
Gets the message for this constraint.
</summary>
</member>
<member name="T:Rhino.Mocks.Constraints.ListElement">
<summary>
Applies another AbstractConstraint to a specific list element.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ListElement.#ctor(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.ListElement"/> instance.
</summary>
<param name="index">The zero-based index of the list element.</param>
<param name="constraint">The constraint that should be applied to the list element.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.ListElement.Eval(System.Object)">
<summary>
Determines if the parameter conforms to this constraint.
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.ListElement.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.KeyedListElement`1">
<summary>
Applies another AbstractConstraint to a specific generic keyed list element.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.KeyedListElement`1.#ctor(`0,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:KeyedListElement"/> instance.
</summary>
<param name="key">The key of the list element.</param>
<param name="constraint">The constraint that should be applied to the list element.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.KeyedListElement`1.Eval(System.Object)">
<summary>
Determines if the parameter conforms to this constraint.
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.KeyedListElement`1.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.ContainsAll">
<summary>
Constrains that all elements are in the parameter list
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ContainsAll.#ctor(System.Collections.IEnumerable)">
<summary>
Initializes a new instance of the <see cref="T:Rhino.Mocks.Constraints.ContainsAll"/> class.
</summary>
<param name="these">The these.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.ContainsAll.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="P:Rhino.Mocks.Constraints.ContainsAll.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Or">
<summary>
Combines two constraints, constraint pass if either is fine.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Or.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
</summary>
<param name="c1">C1.</param>
<param name="c2">C2.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Or.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Or.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Not">
<summary>
Negate a constraint
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Not.#ctor(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
</summary>
<param name="c1">C1.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Not.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Not.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.And">
<summary>
Combines two constraints
</summary>
<remarks></remarks>
</member>
<member name="M:Rhino.Mocks.Constraints.And.#ctor(Rhino.Mocks.Constraints.AbstractConstraint,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.And"/> instance.
</summary>
<param name="c1">C1.</param>
<param name="c2">C2.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.And.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.And.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Like">
<summary>
Constrain the argument to validate according to regex pattern
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Like.#ctor(System.String)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.Like"/> instance.
</summary>
<param name="pattern">Pattern.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Like.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Like.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Contains">
<summary>
Constraint that evaluate whatever an argument contains the specified string.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Contains.#ctor(System.String)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.Contains"/> instance.
</summary>
<param name="innerString">Inner string.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Contains.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Contains.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.EndsWith">
<summary>
Constraint that evaluate whatever an argument ends with the specified string
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.EndsWith.#ctor(System.String)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.EndsWith"/> instance.
</summary>
<param name="end">End.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.EndsWith.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.EndsWith.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.StartsWith">
<summary>
Constraint that evaluate whatever an argument start with the specified string
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.StartsWith.#ctor(System.String)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.StartsWith"/> instance.
</summary>
<param name="start">Start.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.StartsWith.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.StartsWith.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Equal">
<summary>
Constraint that evaluate whatever an object equals another
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Equal.#ctor(System.Object)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.Equal"/> instance.
</summary>
<param name="obj">Obj.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Equal.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Equal.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Anything">
<summary>
Constraint that always returns true
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Anything.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.Anything.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.ComparingConstraint">
<summary>
Constraint that evaluate whatever a comparable is greater than another
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ComparingConstraint.#ctor(System.IComparable,System.Boolean,System.Boolean)">
<summary>
Creates a new <see cref="T:Rhino.Mocks.Constraints.ComparingConstraint"/> instance.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ComparingConstraint.Eval(System.Object)">
<summary>
determains if the object pass the constraints
</summary>
</member>
<member name="P:Rhino.Mocks.Constraints.ComparingConstraint.Message">
<summary>
Gets the message for this constraint
</summary>
<value></value>
</member>
<member name="T:Rhino.Mocks.Constraints.Is">
<summary>
Central location for constraints
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.GreaterThan(System.IComparable)">
<summary>
Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be greater than</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.LessThan(System.IComparable)">
<summary>
Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be less than</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.LessThanOrEqual(System.IComparable)">
<summary>
Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be less than or equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.GreaterThanOrEqual(System.IComparable)">
<summary>
Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be greater than or equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.Equal(System.Object)">
<summary>
Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="obj">The object the parameter should equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.NotEqual(System.Object)">
<summary>
Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="obj">The object the parameter should not equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.Same(System.Object)">
<summary>
Evaluate a same as constraint.
</summary>
<param name="obj">The object the parameter should the same as.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.NotSame(System.Object)">
<summary>
Evaluate a not same as constraint.
</summary>
<param name="obj">The object the parameter should not be the same as.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.Anything">
<summary>
A constraints that accept anything
</summary>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.Null">
<summary>
A constraint that accept only nulls
</summary>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.NotNull">
<summary>
A constraint that accept only non null values
</summary>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.TypeOf(System.Type)">
<summary>
A constraint that accept only value of the specified type
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.TypeOf``1">
<summary>
A constraint that accept only value of the specified type
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Is.Matching``1(System.Predicate{``0})">
<summary>
Evaluate a parameter using a predicate
</summary>
<param name="predicate">The predicate to use</param>
</member>
<member name="T:Rhino.Mocks.Constraints.IsArg`1">
<summary>
Provides access to the constraintes defined in the class <see cref="T:Rhino.Mocks.Constraints.Is"/> to be used in context
with the <see cref="T:Rhino.Mocks.Arg`1"/> syntax.
</summary>
<typeparam name="T">The type of the argument</typeparam>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.GreaterThan(System.IComparable)">
<summary>
Evaluate a greater than constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be greater than</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.LessThan(System.IComparable)">
<summary>
Evaluate a less than constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be less than</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.LessThanOrEqual(System.IComparable)">
<summary>
Evaluate a less than or equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be less than or equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.GreaterThanOrEqual(System.IComparable)">
<summary>
Evaluate a greater than or equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="objToCompare">The object the parameter should be greater than or equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.Equal(System.Object)">
<summary>
Evaluate an equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="obj">The object the parameter should equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.NotEqual(System.Object)">
<summary>
Evaluate a not equal constraint for <see cref="T:System.IComparable"/>.
</summary>
<param name="obj">The object the parameter should not equal to</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.Same(System.Object)">
<summary>
Evaluate a same as constraint.
</summary>
<param name="obj">The object the parameter should the same as.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.NotSame(System.Object)">
<summary>
Evaluate a not same as constraint.
</summary>
<param name="obj">The object the parameter should not be the same as.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.Equals(System.Object)">
<summary>
Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.IsArg`1.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="P:Rhino.Mocks.Constraints.IsArg`1.Anything">
<summary>
A constraints that accept anything
</summary>
<returns></returns>
</member>
<member name="P:Rhino.Mocks.Constraints.IsArg`1.Null">
<summary>
A constraint that accept only nulls
</summary>
<returns></returns>
</member>
<member name="P:Rhino.Mocks.Constraints.IsArg`1.NotNull">
<summary>
A constraint that accept only non null values
</summary>
<returns></returns>
</member>
<member name="P:Rhino.Mocks.Constraints.IsArg`1.TypeOf">
<summary>
A constraint that accept only value of the specified type.
The check is performed on the type that has been defined
as the argument type.
</summary>
</member>
<member name="T:Rhino.Mocks.Constraints.List">
<summary>
Central location for constraints about lists and collections
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.List.IsIn(System.Object)">
<summary>
Determines whether the specified obj is in the paramter.
The parameter must be IEnumerable.
</summary>
<param name="obj">Obj.</param>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.List.OneOf(System.Collections.IEnumerable)">
<summary>
Determains whatever the parameter is in the collection.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.List.Equal(System.Collections.IEnumerable)">
<summary>
Determains that the parameter collection is identical to the specified collection
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.List.Count(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Determines that the parameter collection has the specified number of elements.
</summary>
<param name="constraint">The constraint that should be applied to the collection count.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.List.Element(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Determines that an element of the parameter collections conforms to another AbstractConstraint.
</summary>
<param name="index">The zero-based index of the list element.</param>
<param name="constraint">The constraint which should be applied to the list element.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.List.Element``1(``0,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Determines that an element of the parameter collections conforms to another AbstractConstraint.
</summary>
<param name="key">The key of the element.</param>
<param name="constraint">The constraint which should be applied to the element.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.List.ContainsAll(System.Collections.IEnumerable)">
<summary>
Determines that all elements of the specified collection are in the the parameter collection
</summary>
<param name="collection">The collection to compare against</param>
<returns>The constraint which should be applied to the list parameter.</returns>
</member>
<member name="T:Rhino.Mocks.Constraints.ListArg`1">
<summary>
Provides access to the constraintes defined in the class <see cref="T:Rhino.Mocks.Constraints.Text"/> to be used in context
with the <see cref="T:Rhino.Mocks.Arg`1"/> syntax.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.IsIn(System.Object)">
<summary>
Determines whether the specified object is in the paramter.
The parameter must be IEnumerable.
</summary>
<param name="obj">Obj.</param>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.OneOf(System.Collections.IEnumerable)">
<summary>
Determains whatever the parameter is in the collection.
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.Equal(System.Collections.IEnumerable)">
<summary>
Determains that the parameter collection is identical to the specified collection
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.Count(Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Determines that the parameter collection has the specified number of elements.
</summary>
<param name="constraint">The constraint that should be applied to the collection count.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.Element(System.Int32,Rhino.Mocks.Constraints.AbstractConstraint)">
<summary>
Determines that an element of the parameter collections conforms to another AbstractConstraint.
</summary>
<param name="index">The zero-based index of the list element.</param>
<param name="constraint">The constraint which should be applied to the list element.</param>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.ContainsAll(System.Collections.IEnumerable)">
<summary>
Determines that all elements of the specified collection are in the the parameter collection
</summary>
<param name="collection">The collection to compare against</param>
<returns>The constraint which should be applied to the list parameter.</returns>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.Equals(System.Object)">
<summary>
Throws NotSupportedException. Don't use Equals to define constraints. Use Equal instead.
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:Rhino.Mocks.Constraints.ListArg`1.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="T:Rhino.Mocks.Constraints.OutRefArgDummy`1">
<summary>
Provides a dummy field to pass as out or ref argument.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="F:Rhino.Mocks.Constraints.OutRefArgDummy`1.Dummy">
<summary>
Dummy field to satisfy the compiler. Used for out and ref arguments.
</summary>
</member>
<member name="T:Rhino.Mocks.Constraints.Property">
<summary>
Central location for constraints for object's properties
</summary>
</member>
<member name="M:Rhino.Mocks.Constraints.Property.Value(System.String,System.Object)">
<summary>
Constrains the parameter to have property with the specified value