comparison SilverlightValidation/Libs/FluentAssertions.Silverlight.xml @ 107:572886951353

Working tests under StatLight
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 16:09:28 +0100
parents
children
comparison
equal deleted inserted replaced
106:62477c2e8837 107:572886951353
1 <?xml version="1.0"?>
2 <doc>
3 <assembly>
4 <name>FluentAssertions.Silverlight</name>
5 </assembly>
6 <members>
7 <member name="M:FluentAssertions.AndConstraint`1.#ctor(`0)">
8 <summary>
9 Initializes a new instance of the <see cref="T:System.Object"/> class.
10 </summary>
11 </member>
12 <member name="T:FluentAssertions.AssertionExtensions">
13 <summary>
14 Contains extension methods for custom assertions in unit tests.
15 </summary>
16 </member>
17 <member name="M:FluentAssertions.AssertionExtensions.Invoking``1(``0,System.Action{``0})">
18 <summary>
19 Invokes the specified action on an subject so that you can chain it with any of the ShouldThrow or ShouldNotThrow
20 overloads.
21 </summary>
22 </member>
23 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Xml.Linq.XDocument)">
24 <summary>
25 Returns an <see cref="T:FluentAssertions.Assertions.XDocumentAssertions"/> object that can be used to assert the
26 current <see cref="T:System.Xml.Linq.XElement"/>.
27 </summary>
28 </member>
29 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Xml.Linq.XElement)">
30 <summary>
31 Returns an <see cref="T:FluentAssertions.Assertions.XElementAssertions"/> object that can be used to assert the
32 current <see cref="T:System.Xml.Linq.XElement"/>.
33 </summary>
34 </member>
35 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Xml.Linq.XAttribute)">
36 <summary>
37 Returns an <see cref="T:FluentAssertions.Assertions.XAttributeAssertions"/> object that can be used to assert the
38 current <see cref="T:System.Xml.Linq.XAttribute"/>.
39 </summary>
40 </member>
41 <member name="M:FluentAssertions.AssertionExtensions.ShouldThrow``1(System.Action)">
42 <summary>
43 Asserts that the <paramref name="action"/> throws an exception.
44 </summary>
45 <typeparam name="TException">
46 The type of the exception it should throw.
47 </typeparam>
48 <returns>
49 Returns an object that allows asserting additional members of the thrown exception.
50 </returns>
51 </member>
52 <member name="M:FluentAssertions.AssertionExtensions.ShouldThrow``1(System.Action,System.String,System.Object[])">
53 <summary>
54 Asserts that the <paramref name="action"/> throws an exception.
55 </summary>
56 <param name="action">A reference to the method or property.</param>
57 <typeparam name="TException">
58 The type of the exception it should throw.
59 </typeparam>
60 <param name="reason">
61 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
62 start with the word <i>because</i>, it is prepended to the message.
63 </param>
64 <param name="reasonArgs">
65 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
66 </param>
67 <returns>
68 Returns an object that allows asserting additional members of the thrown exception.
69 </returns>
70 </member>
71 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow``1(System.Action)">
72 <summary>
73 Asserts that the <paramref name="action"/> does not throw a particular exception.
74 </summary>
75 <typeparam name="TException">
76 The type of the exception it should not throw. Any other exceptions are ignored and will satisfy the assertion.
77 </typeparam>
78 </member>
79 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow``1(System.Action,System.String,System.Object[])">
80 <summary>
81 Asserts that the <paramref name="action"/> does not throw a particular exception.
82 </summary>
83 <param name="action">The current method or property.</param>
84 <typeparam name="TException">
85 The type of the exception it should not throw. Any other exceptions are ignored and will satisfy the assertion.
86 </typeparam>
87 <param name="reason">
88 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
89 start with the word <i>because</i>, it is prepended to the message.
90 </param>
91 <param name="reasonArgs">
92 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
93 </param>
94 </member>
95 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow(System.Action)">
96 <summary>
97 Asserts that the <paramref name="action"/> does not throw any exception at all.
98 </summary>
99 </member>
100 <member name="M:FluentAssertions.AssertionExtensions.ShouldNotThrow(System.Action,System.String,System.Object[])">
101 <summary>
102 Asserts that the <paramref name="action"/> does not throw any exception at all.
103 </summary>
104 <param name="action">The current method or property.</param>
105 <param name="reason">
106 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
107 start with the word <i>because</i>, it is prepended to the message.
108 </param>
109 <param name="reasonArgs">
110 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
111 </param>
112 </member>
113 <member name="M:FluentAssertions.AssertionExtensions.Enumerating(System.Func{System.Collections.IEnumerable})">
114 <summary>
115 Forces enumerating a collection. Should be used to assert that a method that uses the
116 <c>yield</c> keyword throws a particular exception.
117 </summary>
118 </member>
119 <member name="M:FluentAssertions.AssertionExtensions.Enumerating``1(System.Func{System.Collections.Generic.IEnumerable{``0}})">
120 <summary>
121 Forces enumerating a collection. Should be used to assert that a method that uses the
122 <c>yield</c> keyword throws a particular exception.
123 </summary>
124 </member>
125 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Object)">
126 <summary>
127 Returns an <see cref="T:FluentAssertions.Assertions.ObjectAssertions"/> object that can be used to assert the
128 current <see cref="T:System.Object"/>.
129 </summary>
130 </member>
131 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Boolean)">
132 <summary>
133 Returns an <see cref="T:FluentAssertions.Assertions.BooleanAssertions"/> object that can be used to assert the
134 current <see cref="T:System.Boolean"/>.
135 </summary>
136 </member>
137 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Boolean})">
138 <summary>
139 Returns an <see cref="T:FluentAssertions.Assertions.NullableBooleanAssertions"/> object that can be used to assert the
140 current nullable <see cref="T:System.Boolean"/>.
141 </summary>
142 </member>
143 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Guid)">
144 <summary>
145 Returns an <see cref="T:FluentAssertions.Assertions.GuidAssertions"/> object that can be used to assert the
146 current <see cref="T:System.Guid"/>.
147 </summary>
148 </member>
149 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Guid})">
150 <summary>
151 Returns an <see cref="T:FluentAssertions.Assertions.NullableGuidAssertions"/> object that can be used to assert the
152 current nullable <see cref="T:System.Guid"/>.
153 </summary>
154 </member>
155 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Collections.IEnumerable)">
156 <summary>
157 Returns an <see cref="T:FluentAssertions.Assertions.NonGenericCollectionAssertions"/> object that can be used to assert the
158 current <see cref="T:System.Collections.IEnumerable"/>.
159 </summary>
160 </member>
161 <member name="M:FluentAssertions.AssertionExtensions.Should``1(System.Collections.Generic.IEnumerable{``0})">
162 <summary>
163 Returns an <see cref="T:FluentAssertions.Assertions.GenericCollectionAssertions`1"/> object that can be used to assert the
164 current <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
165 </summary>
166 </member>
167 <member name="M:FluentAssertions.AssertionExtensions.Should``2(System.Collections.Generic.IDictionary{``0,``1})">
168 <summary>
169 Returns an <see cref="T:FluentAssertions.Assertions.GenericDictionaryAssertions`2"/> object that can be used to assert the
170 current <see cref="T:System.Collections.Generic.IDictionary`2"/>.
171 </summary>
172 </member>
173 <member name="M:FluentAssertions.AssertionExtensions.Should(System.DateTime)">
174 <summary>
175 Returns an <see cref="T:FluentAssertions.Assertions.DateTimeAssertions"/> object that can be used to assert the
176 current <see cref="T:System.DateTime"/>.
177 </summary>
178 </member>
179 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.DateTime})">
180 <summary>
181 Returns an <see cref="T:FluentAssertions.Assertions.NullableDateTimeAssertions"/> object that can be used to assert the
182 current nullable <see cref="T:System.DateTime"/>.
183 </summary>
184 </member>
185 <member name="M:FluentAssertions.AssertionExtensions.Should``1(System.IComparable{``0})">
186 <summary>
187 Returns an <see cref="T:FluentAssertions.Assertions.ComparableTypeAssertions`1"/> object that can be used to assert the
188 current <see cref="T:System.IComparable`1"/>.
189 </summary>
190 </member>
191 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Int32)">
192 <summary>
193 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
194 current <see cref="T:System.Int32"/>.
195 </summary>
196 </member>
197 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Int32})">
198 <summary>
199 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
200 current nullable <see cref="T:System.Int32"/>.
201 </summary>
202 </member>
203 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Byte)">
204 <summary>
205 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
206 current <see cref="T:System.Byte"/>.
207 </summary>
208 </member>
209 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Byte})">
210 <summary>
211 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
212 current nullable <see cref="T:System.Byte"/>.
213 </summary>
214 </member>
215 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Int16)">
216 <summary>
217 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
218 current <see cref="T:System.Int16"/>.
219 </summary>
220 </member>
221 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Int16})">
222 <summary>
223 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
224 current nullable <see cref="T:System.Int16"/>.
225 </summary>
226 </member>
227 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Int64)">
228 <summary>
229 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
230 current <see cref="T:System.Int64"/>.
231 </summary>
232 </member>
233 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Int64})">
234 <summary>
235 Returns an <see cref="T:FluentAssertions.Assertions.IntegralAssertions`1"/> object that can be used to assert the
236 current nullable <see cref="T:System.Int64"/>.
237 </summary>
238 </member>
239 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Single)">
240 <summary>
241 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the
242 current <see cref="T:System.Single"/>.
243 </summary>
244 </member>
245 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Single})">
246 <summary>
247 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the
248 current nullable <see cref="T:System.Single"/>.
249 </summary>
250 </member>
251 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Double)">
252 <summary>
253 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the
254 current <see cref="T:System.Double"/>.
255 </summary>
256 </member>
257 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.Double})">
258 <summary>
259 Returns an <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that can be used to assert the
260 current nullable <see cref="T:System.Double"/>.
261 </summary>
262 </member>
263 <member name="M:FluentAssertions.AssertionExtensions.Should(System.String)">
264 <summary>
265 Returns an <see cref="T:FluentAssertions.Assertions.StringAssertions"/> object that can be used to assert the
266 current <see cref="T:System.String"/>.
267 </summary>
268 </member>
269 <member name="M:FluentAssertions.AssertionExtensions.Should(System.TimeSpan)">
270 <summary>
271 Returns an <see cref="T:FluentAssertions.Assertions.SimpleTimeSpanAssertions"/> object that can be used to assert the
272 current <see cref="T:System.TimeSpan"/>.
273 </summary>
274 </member>
275 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Nullable{System.TimeSpan})">
276 <summary>
277 Returns an <see cref="T:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions"/> object that can be used to assert the
278 current nullable <see cref="T:System.TimeSpan"/>.
279 </summary>
280 </member>
281 <member name="M:FluentAssertions.AssertionExtensions.ShouldHave``1(``0)">
282 <summary>
283 Asserts that the properties of an object matches those of another object.
284 </summary>
285 </member>
286 <member name="M:FluentAssertions.AssertionExtensions.Should(System.Type)">
287 <summary>
288 Returns a <see cref="T:FluentAssertions.Assertions.TypeAssertions"/> object that can be used to assert the
289 current <see cref="T:System.Type"/>.
290 </summary>
291 </member>
292 <member name="M:FluentAssertions.AssertionExtensions.Should(FluentAssertions.Assertions.MethodInfoSelector)">
293 <summary>
294 Returns a <see cref="T:FluentAssertions.Assertions.MethodInfoAssertions"/> object that can be used to assert the methods returned by the
295 current <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/>.
296 </summary>
297 <seealso cref="T:FluentAssertions.Assertions.TypeAssertions"/>
298 </member>
299 <member name="M:FluentAssertions.AssertionExtensions.Should(FluentAssertions.Assertions.PropertyInfoSelector)">
300 <summary>
301 Returns a <see cref="T:FluentAssertions.Assertions.PropertyInfoAssertions"/> object that can be used to assert the properties returned by the
302 current <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/>.
303 </summary>
304 <seealso cref="T:FluentAssertions.Assertions.TypeAssertions"/>
305 </member>
306 <member name="M:FluentAssertions.AssertionExtensions.As``1(System.Object)">
307 <summary>
308 Safely casts the specified object to the type specified through <typeparamref name="TTo"/>.
309 </summary>
310 <remarks>
311 Has been introduced to allow casting objects without breaking the fluent API.
312 </remarks>
313 <typeparam name="TTo"></typeparam>
314 </member>
315 <member name="T:FluentAssertions.Assertions.ActionAssertions">
316 <summary>
317 Contains a number of methods to assert that an <see cref="T:System.Action"/> yields the expected result.
318 </summary>
319 </member>
320 <member name="M:FluentAssertions.Assertions.ActionAssertions.ShouldThrow``1(System.String,System.Object[])">
321 <summary>
322 Asserts that the current <see cref="T:System.Action"/> throws an exception of type <typeparamref name="TException"/>.
323 </summary>
324 <param name="reason">
325 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
326 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
327 </param>
328 <param name="reasonArgs">
329 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
330 </param>
331 </member>
332 <member name="M:FluentAssertions.Assertions.ActionAssertions.ShouldNotThrow``1(System.String,System.Object[])">
333 <summary>
334 Asserts that the current <see cref="T:System.Action"/> does not throw an exception of type <typeparamref name="TException"/>.
335 </summary>
336 <param name="reason">
337 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
338 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
339 </param>
340 <param name="reasonArgs">
341 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
342 </param>
343 </member>
344 <member name="M:FluentAssertions.Assertions.ActionAssertions.ShouldNotThrow(System.String,System.Object[])">
345 <summary>
346 Asserts that the current <see cref="T:System.Action"/> does not throw any exception.
347 </summary>
348 <param name="reason">
349 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
350 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
351 </param>
352 <param name="reasonArgs">
353 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
354 </param>
355 </member>
356 <member name="P:FluentAssertions.Assertions.ActionAssertions.Subject">
357 <summary>
358 Gets the <see cref="T:System.Action"/> that is being asserted.
359 </summary>
360 </member>
361 <member name="T:FluentAssertions.Assertions.BooleanAssertions">
362 <summary>
363 Contains a number of methods to assert that a <see cref="T:System.Boolean"/> is in the expected state.
364 </summary>
365 </member>
366 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeFalse">
367 <summary>
368 Asserts that the value is <c>false</c>.
369 </summary>
370 </member>
371 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeFalse(System.String,System.Object[])">
372 <summary>
373 Asserts that the value is <c>false</c>.
374 </summary>
375 <param name="reason">
376 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
377 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
378 </param>
379 <param name="reasonArgs">
380 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
381 </param>
382 </member>
383 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeTrue">
384 <summary>
385 Asserts that the value is <c>true</c>.
386 </summary>
387 </member>
388 <member name="M:FluentAssertions.Assertions.BooleanAssertions.BeTrue(System.String,System.Object[])">
389 <summary>
390 Asserts that the value is <c>true</c>.
391 </summary>
392 <param name="reason">
393 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
394 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
395 </param>
396 <param name="reasonArgs">
397 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
398 </param>
399 </member>
400 <member name="M:FluentAssertions.Assertions.BooleanAssertions.Be(System.Boolean)">
401 <summary>
402 Asserts that the value is equal to the specified <paramref name="expected"/> value.
403 </summary>
404 <param name="expected">The expected value</param>
405 </member>
406 <member name="M:FluentAssertions.Assertions.BooleanAssertions.Be(System.Boolean,System.String,System.Object[])">
407 <summary>
408 Asserts that the value is equal to the specified <paramref name="expected"/> value.
409 </summary>
410 <param name="expected">The expected value</param>
411 <param name="reason">
412 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
413 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
414 </param>
415 <param name="reasonArgs">
416 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
417 </param>
418 </member>
419 <member name="P:FluentAssertions.Assertions.BooleanAssertions.Subject">
420 <summary>
421 Gets the object which value is being asserted.
422 </summary>
423 </member>
424 <member name="T:FluentAssertions.Assertions.CollectionAssertions`2">
425 <summary>
426 Contains a number of methods to assert that an <see cref="T:System.Collections.IEnumerable"/> is in the expected state.
427 </summary>
428 </member>
429 <member name="T:FluentAssertions.Assertions.ReferenceTypeAssertions`2">
430 <summary>
431 Contains a number of methods to assert that a reference type object is in the expected state.
432 </summary>
433 </member>
434 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeOfType``1">
435 <summary>
436 Asserts that the object is of the specified type <typeparamref name="T"/>.
437 </summary>
438 <typeparam name="T">The expected type of the object.</typeparam>
439 </member>
440 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeOfType``1(System.String,System.Object[])">
441 <summary>
442 Asserts that the object is of the specified type <typeparamref name="T"/>.
443 </summary>
444 <typeparam name="T">The expected type of the object.</typeparam>
445 <param name="reason">
446 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
447 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
448 </param>
449 <param name="reasonArgs">
450 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
451 </param>
452 </member>
453 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeAssignableTo``1">
454 <summary>
455 Asserts that the object is assignable to a variable of type <typeparamref name="T"/>.
456 </summary>
457 <typeparam name="T">The type to which the object should be assignable.</typeparam>
458 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
459 </member>
460 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.BeAssignableTo``1(System.String,System.Object[])">
461 <summary>
462 Asserts that the object is assignable to a variable of type <typeparamref name="T"/>.
463 </summary>
464 <typeparam name="T">The type to which the object should be assignable.</typeparam>
465 <param name="reason">The reason why the object should be assignable to the type.</param>
466 <param name="reasonArgs">The parameters used when formatting the <paramref name="reason"/>.</param>
467 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
468 </member>
469 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
470 <summary>
471 Asserts that the <paramref name="predicate"/> is statisfied.
472 </summary>
473 <param name="predicate">The predicate which must be satisfied by the <typeparamref name="TSubject"/>.</param>
474 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
475 </member>
476 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
477 <summary>
478 Asserts that the <paramref name="predicate"/> is satisfied.
479 </summary>
480 <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param>
481 <param name="reason">The reason why the predicate should be satisfied.</param>
482 <param name="reasonArgs">The parameters used when formatting the <paramref name="reason"/>.</param>
483 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
484 </member>
485 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
486 <summary>
487 Asserts that the <paramref name="predicate"/> is satisfied.
488 </summary>
489 <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param>
490 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
491 </member>
492 <member name="M:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Match``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.String,System.Object[])">
493 <summary>
494 Asserts that the <paramref name="predicate"/> is satisfied.
495 </summary>
496 <param name="predicate">The predicate which must be statisfied by the <typeparamref name="TSubject"/>.</param>
497 <param name="reason">The reason why the predicate should be satisfied.</param>
498 <param name="reasonArgs">The parameters used when formatting the <paramref name="reason"/>.</param>
499 <returns>An <see cref="T:FluentAssertions.AndConstraint`1"/> which can be used to chain assertions.</returns>
500 </member>
501 <member name="P:FluentAssertions.Assertions.ReferenceTypeAssertions`2.Subject">
502 <summary>
503 Gets the object which value is being asserted.
504 </summary>
505 </member>
506 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Int32)">
507 <summary>
508 Asserts that the number of items in the collection matches the supplied <paramref name="expected" /> amount.
509 </summary>
510 <param name="expected">The expected number of items in the collection.</param>
511 </member>
512 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Int32,System.String,System.Object[])">
513 <summary>
514 Asserts that the number of items in the collection matches the supplied <paramref name="expected"/> amount.
515 </summary>
516 <param name="expected">The expected number of items in the collection.</param>
517 <param name="reason">
518 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
519 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
520 </param>
521 <param name="reasonArgs">
522 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
523 </param>
524 </member>
525 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})">
526 <summary>
527 Asserts that the number of items in the collection matches a condition stated by the <paramref name="countPredicate"/>.
528 </summary>
529 <param name="countPredicate">A predicate that yields the number of items that is expected to be in the collection.</param>
530 </member>
531 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}},System.String,System.Object[])">
532 <summary>
533 Asserts that the number of items in the collection matches a condition stated by the <paramref name="countPredicate"/>.
534 </summary>
535 <param name="countPredicate">A predicate that yields the number of items that is expected to be in the collection.</param>
536 <param name="reason">
537 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
538 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
539 </param>
540 <param name="reasonArgs">
541 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
542 </param>
543 </member>
544 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEmpty">
545 <summary>
546 Asserts that the collection does not contain any items.
547 </summary>
548 </member>
549 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEmpty(System.String,System.Object[])">
550 <summary>
551 Asserts that the collection does not contain any items.
552 </summary>
553 <param name="reason">
554 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
555 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
556 </param>
557 <param name="reasonArgs">
558 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
559 </param>
560 </member>
561 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEmpty">
562 <summary>
563 Asserts that the collection contains at least 1 item.
564 </summary>
565 </member>
566 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEmpty(System.String,System.Object[])">
567 <summary>
568 Asserts that the collection contains at least 1 item.
569 </summary>
570 <param name="reason">
571 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
572 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
573 </param>
574 <param name="reasonArgs">
575 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
576 </param>
577 </member>
578 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.OnlyHaveUniqueItems">
579 <summary>
580 Asserts that the collection does not contain any duplicate items.
581 </summary>
582 </member>
583 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.OnlyHaveUniqueItems(System.String,System.Object[])">
584 <summary>
585 Asserts that the collection does not contain any duplicate items.
586 </summary>
587 <param name="reason">
588 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
589 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
590 </param>
591 <param name="reasonArgs">
592 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
593 </param>
594 </member>
595 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContainNulls">
596 <summary>
597 Asserts that the collection does not contain any <c>null</c> items.
598 </summary>
599 </member>
600 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContainNulls(System.String,System.Object[])">
601 <summary>
602 Asserts that the collection does not contain any <c>null</c> items.
603 </summary>
604 <param name="reason">
605 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
606 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
607 </param>
608 <param name="reasonArgs">
609 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
610 </param>
611 </member>
612 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Equal(System.Collections.IEnumerable)">
613 <summary>
614 Expects the current collection to contain all the same elements in the same order as the collection identified by
615 <paramref name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
616 </summary>
617 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected items.</param>
618 </member>
619 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Equal(System.Object[])">
620 <summary>
621 Expects the current collection to contain all the same elements in the same order as the collection identified by
622 <paramref name="elements"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
623 </summary>
624 <param name="elements">A params array with the expected elements.</param>
625 </member>
626 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Equal(System.Collections.IEnumerable,System.String,System.Object[])">
627 <summary>
628 Expects the current collection to contain all the same elements in the same order as the collection identified by
629 <paramref name="expected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
630 </summary>
631 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
632 <param name="reason">
633 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
634 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
635 </param>
636 <param name="reasonArgs">
637 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
638 </param>
639 </member>
640 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotEqual(System.Collections.IEnumerable)">
641 <summary>
642 Expects the current collection not to contain all the same elements in the same order as the collection identified by
643 <paramref name="unexpected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
644 </summary>
645 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the elements that are not expected.</param>
646 </member>
647 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotEqual(System.Collections.IEnumerable,System.String,System.Object[])">
648 <summary>
649 Expects the current collection not to contain all the same elements in the same order as the collection identified by
650 <paramref name="unexpected"/>. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
651 </summary>
652 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the elements that are not expected.</param>
653 <param name="reason">
654 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
655 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
656 </param>
657 <param name="reasonArgs">
658 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
659 </param>
660 </member>
661 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEquivalentTo(System.Collections.IEnumerable)">
662 <summary>
663 Expects the current collection to contain all elements of the collection identified by <paramref name="expected"/>,
664 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
665 </summary>
666 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
667 </member>
668 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEquivalentTo(System.Object[])">
669 <summary>
670 Expects the current collection to contain all elements of the collection identified by <paramref name="elements"/>,
671 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
672 </summary>
673 <param name="elements">A params array with the expected elements.</param>
674 </member>
675 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeEquivalentTo(System.Collections.IEnumerable,System.String,System.Object[])">
676 <summary>
677 Expects the current collection to contain all elements of the collection identified by <paramref name="expected"/>,
678 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
679 </summary>
680 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
681 <param name="reason">
682 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
683 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
684 </param>
685 <param name="reasonArgs">
686 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
687 </param>
688 </member>
689 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEquivalentTo(System.Collections.IEnumerable)">
690 <summary>
691 Expects the current collection not to contain all elements of the collection identified by <paramref name="unexpected"/>,
692 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
693 </summary>
694 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected elements.</param>
695 </member>
696 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeEquivalentTo(System.Collections.IEnumerable,System.String,System.Object[])">
697 <summary>
698 Expects the current collection not to contain all elements of the collection identified by <paramref name="unexpected"/>,
699 regardless of the order. Elements are compared using their <see cref="M:System.Object.Equals(System.Object)"/>.
700 </summary>
701 <param name="unexpected">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected elements.</param>
702 <param name="reason">
703 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
704 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
705 </param>
706 <param name="reasonArgs">
707 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
708 </param>
709 </member>
710 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainItemsAssignableTo``1(System.String,System.Object[])">
711 <summary>
712 Asserts that the current collection only contains items that are assignable to the type <typeparamref name="T"/>.
713 </summary>
714 <param name="reason">
715 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
716 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
717 </param>
718 <param name="reasonArgs">
719 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
720 </param>
721 </member>
722 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Contain(System.Collections.IEnumerable)">
723 <summary>
724 Expects the current collection to contain the specified elements in any order. Elements are compared
725 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
726 </summary>
727 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
728 </member>
729 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.Contain(System.Collections.IEnumerable,System.String,System.Object[])">
730 <summary>
731 Expects the current collection to contain the specified elements in any order. Elements are compared
732 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
733 </summary>
734 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
735 <param name="reason">
736 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
737 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
738 </param>
739 <param name="reasonArgs">
740 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
741 </param>
742 </member>
743 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainInOrder(System.Collections.IEnumerable)">
744 <summary>
745 Expects the current collection to contain the specified elements in the exact same order. Elements are compared
746 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
747 </summary>
748 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
749 </member>
750 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainInOrder(System.Collections.IEnumerable,System.String,System.Object[])">
751 <summary>
752 Expects the current collection to contain the specified elements in the exact same order. Elements are compared
753 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
754 </summary>
755 <param name="expected">An <see cref="T:System.Collections.IEnumerable"/> with the expected elements.</param>
756 <param name="reason">
757 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
758 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
759 </param>
760 <param name="reasonArgs">
761 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
762 </param>
763 </member>
764 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeSubsetOf(System.Collections.IEnumerable)">
765 <summary>
766 Asserts that the collection is a subset of the <paramref name="expectedSuperset"/>.
767 </summary>
768 <param name="expectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the expected superset.</param>
769 </member>
770 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeSubsetOf(System.Collections.IEnumerable,System.String,System.Object[])">
771 <summary>
772 Asserts that the collection is a subset of the <paramref name="expectedSuperset"/>.
773 </summary>
774 <param name="expectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the expected superset.</param>
775 <param name="reason">
776 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
777 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
778 </param>
779 <param name="reasonArgs">
780 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
781 </param>
782 </member>
783 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeSubsetOf(System.Collections.IEnumerable)">
784 <summary>
785 Asserts that the collection is not a subset of the <paramref name="unexpectedSuperset"/>.
786 </summary>
787 <param name="unexpectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected superset.</param>
788 </member>
789 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeSubsetOf(System.Collections.IEnumerable,System.String,System.Object[])">
790 <summary>
791 Asserts that the collection is not a subset of the <paramref name="unexpectedSuperset"/>.
792 </summary>
793 <param name="unexpectedSuperset">An <see cref="T:System.Collections.IEnumerable"/> with the unexpected superset.</param>
794 <param name="reason">
795 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
796 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
797 </param>
798 <param name="reasonArgs">
799 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
800 </param>
801 </member>
802 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveSameCount(System.Collections.IEnumerable)">
803 <summary>
804 Assert that the current collection has the same number of elements as <paramref name="otherCollection" />.
805 </summary>
806 <param name="otherCollection">The other collection with the same expected number of elements</param>
807 </member>
808 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveSameCount(System.Collections.IEnumerable,System.String,System.Object[])">
809 <summary>
810 Assert that the current collection has the same number of elements as <paramref name="otherCollection"/>.
811 </summary>
812 <param name="otherCollection">The other collection with the same expected number of elements</param>
813 <param name="reason">
814 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
815 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
816 </param>
817 <param name="reasonArgs">
818 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
819 </param>
820 </member>
821 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeNull">
822 <summary>
823 Asserts that the current collection has not been initialized yet with an actual collection.
824 </summary>
825 </member>
826 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.BeNull(System.String,System.Object[])">
827 <summary>
828 Asserts that the current collection has not been initialized yet with an actual collection.
829 </summary>
830 <param name="reason">
831 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
832 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
833 </param>
834 <param name="reasonArgs">
835 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
836 </param>
837 </member>
838 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeNull">
839 <summary>
840 Asserts that the current collection has been initialized with an actual collection.
841 </summary>
842 </member>
843 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotBeNull(System.String,System.Object[])">
844 <summary>
845 Asserts that the current collection has been initialized with an actual collection.
846 </summary>
847 <param name="reason">
848 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
849 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
850 </param>
851 <param name="reasonArgs">
852 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
853 </param>
854 </member>
855 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveElementAt(System.Int32,System.Object)">
856 <summary>
857 Asserts that the current collection has the supplied <paramref name="element" /> at the
858 supplied <paramref name="index" />.
859 </summary>
860 <param name="index">The index where the element is expected</param>
861 <param name="element">The expected element</param>
862 </member>
863 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.HaveElementAt(System.Int32,System.Object,System.String,System.Object[])">
864 <summary>
865 Asserts that the current collection has the supplied <paramref name="element"/> at the
866 supplied <paramref name="index"/>.
867 </summary>
868 <param name="index">The index where the element is expected</param>
869 <param name="element">The expected element</param>
870 <param name="reason">
871 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
872 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
873 </param>
874 <param name="reasonArgs">
875 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
876 </param>
877 </member>
878 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.ContainItemsAssignableTo``1">
879 <summary>
880 Asserts that the current collection only contains items that are assignable to the type <typeparamref name="T" />.
881 </summary>
882 </member>
883 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContain(System.Object)">
884 <summary>
885 Asserts that the current collection does not contain the supplied <paramref name="unexpected" /> item.
886 </summary>
887 <param name="unexpected">The element that is not expected to be in the collection</param>
888 </member>
889 <member name="M:FluentAssertions.Assertions.CollectionAssertions`2.NotContain(System.Object,System.String,System.Object[])">
890 <summary>
891 Asserts that the current collection does not contain the supplied <paramref name="unexpected"/> item.
892 </summary>
893 <param name="unexpected">The element that is not expected to be in the collection</param>
894 <param name="reason">
895 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
896 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
897 </param>
898 <param name="reasonArgs">
899 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
900 </param>
901 </member>
902 <member name="T:FluentAssertions.Assertions.ComparableTypeAssertions`1">
903 <summary>
904 Contains a number of methods to assert that an <see cref="T:System.IComparable`1"/> is in the expected state.
905 </summary>
906 </member>
907 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.Be(`0)">
908 <summary>
909 Asserts that the subject is considered equal to another object according to the implementation of <see cref="T:System.IComparable`1"/>.
910 </summary>
911 <param name="expected">
912 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
913 </param>
914 </member>
915 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.Be(`0,System.String,System.Object[])">
916 <summary>
917 Asserts that the subject is considered equal to another object according to the implementation of <see cref="T:System.IComparable`1"/>.
918 </summary>
919 <param name="expected">
920 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
921 </param>
922 <param name="reason">
923 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
924 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
925 </param>
926 <param name="reasonArgs">
927 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
928 </param>
929 </member>
930 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBe(`0)">
931 <summary>
932 Asserts that the subject is not equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>.
933 </summary>
934 <param name="expected">
935 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
936 </param>
937 </member>
938 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBe(`0,System.String,System.Object[])">
939 <summary>
940 Asserts that the subject is not equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>.
941 </summary>
942 <param name="expected">
943 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
944 </param>
945 <param name="reason">
946 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
947 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
948 </param>
949 <param name="reasonArgs">
950 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
951 </param>
952 </member>
953 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessThan(`0)">
954 <summary>
955 Asserts that the subject is less than another object according to its implementation of <see cref="T:System.IComparable`1"/>.
956 </summary>
957 <param name="expected">
958 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
959 </param>
960 </member>
961 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessThan(`0,System.String,System.Object[])">
962 <summary>
963 Asserts that the subject is less than another object according to its implementation of <see cref="T:System.IComparable`1"/>.
964 </summary>
965 <param name="expected">
966 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
967 </param>
968 <param name="reason">
969 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
970 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
971 </param>
972 <param name="reasonArgs">
973 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
974 </param>
975 </member>
976 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessOrEqualTo(`0)">
977 <summary>
978 Asserts that the subject is less than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>.
979 </summary>
980 <param name="expected">
981 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
982 </param>
983 </member>
984 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeLessOrEqualTo(`0,System.String,System.Object[])">
985 <summary>
986 Asserts that the subject is less than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>.
987 </summary>
988 <param name="expected">
989 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
990 </param>
991 <param name="reason">
992 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
993 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
994 </param>
995 <param name="reasonArgs">
996 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
997 </param>
998 </member>
999 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterThan(`0)">
1000 <summary>
1001 Asserts that the subject is greater than another object according to its implementation of <see cref="T:System.IComparable`1"/>.
1002 </summary>
1003 <param name="expected">
1004 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
1005 </param>
1006 </member>
1007 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterThan(`0,System.String,System.Object[])">
1008 <summary>
1009 Asserts that the subject is greater than another object according to its implementation of <see cref="T:System.IComparable`1"/>.
1010 </summary>
1011 <param name="expected">
1012 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
1013 </param>
1014 <param name="reason">
1015 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1016 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1017 </param>
1018 <param name="reasonArgs">
1019 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1020 </param>
1021 </member>
1022 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterOrEqualTo(`0)">
1023 <summary>
1024 Asserts that the subject is greater than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>.
1025 </summary>
1026 <param name="expected">
1027 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
1028 </param>
1029 </member>
1030 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeGreaterOrEqualTo(`0,System.String,System.Object[])">
1031 <summary>
1032 Asserts that the subject is greater than or equal to another object according to its implementation of <see cref="T:System.IComparable`1"/>.
1033 </summary>
1034 <param name="expected">
1035 The object to pass to the subject's <see cref="M:System.IComparable`1.CompareTo(`0)"/> method.
1036 </param>
1037 <param name="reason">
1038 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1039 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1040 </param>
1041 <param name="reasonArgs">
1042 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1043 </param>
1044 </member>
1045 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeInRange(`0,`0)">
1046 <summary>
1047 Asserts that a value is within a range.
1048 </summary>
1049 <remarks>
1050 Where the range is continuous or incremental depends on the actual type of the value.
1051 </remarks>
1052 <param name="minimumValue">
1053 The minimum valid value of the range.
1054 </param>
1055 <param name="maximumValue">
1056 The maximum valid value of the range.
1057 </param>
1058 </member>
1059 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeInRange(`0,`0,System.String,System.Object[])">
1060 <summary>
1061 Asserts that a value is within a range.
1062 </summary>
1063 <remarks>
1064 Where the range is continuous or incremental depends on the actual type of the value.
1065 </remarks>
1066 <param name="minimumValue">
1067 The minimum valid value of the range.
1068 </param>
1069 <param name="maximumValue">
1070 The maximum valid value of the range.
1071 </param>
1072 <param name="reason">
1073 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1074 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1075 </param>
1076 <param name="reasonArgs">
1077 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1078 </param>
1079 </member>
1080 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBeNull">
1081 <summary>
1082 Asserts that a nullable numeric value is not <c>null</c>.
1083 </summary>
1084 </member>
1085 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.NotBeNull(System.String,System.Object[])">
1086 <summary>
1087 Asserts that a nullable numeric value is not <c>null</c>.
1088 </summary>
1089 <param name="reason">
1090 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1091 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1092 </param>
1093 <param name="reasonArgs">
1094 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1095 </param>
1096 </member>
1097 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeNull">
1098 <summary>
1099 Asserts that a nullable numeric value is <c>null</c>.
1100 </summary>
1101 </member>
1102 <member name="M:FluentAssertions.Assertions.ComparableTypeAssertions`1.BeNull(System.String,System.Object[])">
1103 <summary>
1104 Asserts that a nullable numeric value is <c>null</c>.
1105 </summary>
1106 <param name="reason">
1107 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1108 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1109 </param>
1110 <param name="reasonArgs">
1111 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1112 </param>
1113 </member>
1114 <member name="P:FluentAssertions.Assertions.ComparableTypeAssertions`1.Subject">
1115 <summary>
1116 Gets the object which value is being asserted.
1117 </summary>
1118 </member>
1119 <member name="T:FluentAssertions.Assertions.ComparisonMode">
1120 <summary>
1121 Defines the way <see cref="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String)"/> compares the expected exception
1122 message with the actual one.
1123 </summary>
1124 </member>
1125 <member name="F:FluentAssertions.Assertions.ComparisonMode.Exact">
1126 <summary>
1127 The message must match exactly, including the casing of the characters.
1128 </summary>
1129 </member>
1130 <member name="F:FluentAssertions.Assertions.ComparisonMode.Equivalent">
1131 <summary>
1132 The message must match except for the casing of the characters.
1133 </summary>
1134 </member>
1135 <member name="F:FluentAssertions.Assertions.ComparisonMode.StartWith">
1136 <summary>
1137 The message must start with the exact text, including the casing of the characters..
1138 </summary>
1139 </member>
1140 <member name="F:FluentAssertions.Assertions.ComparisonMode.StartWithEquivalent">
1141 <summary>
1142 The message must start with the text except for the casing of the characters.
1143 </summary>
1144 </member>
1145 <member name="F:FluentAssertions.Assertions.ComparisonMode.Substring">
1146 <summary>
1147 The message must contain the exact text.
1148 </summary>
1149 </member>
1150 <member name="F:FluentAssertions.Assertions.ComparisonMode.EquivalentSubstring">
1151 <summary>
1152 The message must contain the text except for the casing of the characters.
1153 </summary>
1154 </member>
1155 <member name="F:FluentAssertions.Assertions.ComparisonMode.Wildcard">
1156 <summary>
1157 The message must match a wildcard pattern consisting of ordinary characters as well as * and ?.
1158 </summary>
1159 </member>
1160 <member name="T:FluentAssertions.Assertions.CyclicReferenceHandling">
1161 <summary>
1162 Indication of how cyclic references should be handled when validating equality of nested properties.
1163 </summary>
1164 </member>
1165 <member name="F:FluentAssertions.Assertions.CyclicReferenceHandling.Ignore">
1166 <summary>
1167 Cyclic references will be ignored.
1168 </summary>
1169 </member>
1170 <member name="F:FluentAssertions.Assertions.CyclicReferenceHandling.ThrowException">
1171 <summary>
1172 Cyclic references will result in an exception.
1173 </summary>
1174 </member>
1175 <member name="T:FluentAssertions.Assertions.DateTimeAssertions">
1176 <summary>
1177 Contains a number of methods to assert that a <see cref="T:System.DateTime"/> is in the expected state.
1178 </summary>
1179 <remarks>
1180 You can use the <see cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> for a more fluent way of specifying a <see cref="T:System.DateTime"/>.
1181 </remarks>
1182 </member>
1183 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.Be(System.DateTime)">
1184 <summary>
1185 Asserts that the current <see cref="T:System.DateTime"/> is exactly equal to the <paramref name="expected"/> value.
1186 </summary>
1187 </member>
1188 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.Be(System.DateTime,System.String,System.Object[])">
1189 <summary>
1190 Asserts that the current <see cref="T:System.DateTime"/> is exactly equal to the <paramref name="expected"/> value.
1191 </summary>
1192 <param name="expected">The expected value</param>
1193 <param name="reason">
1194 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1195 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1196 </param>
1197 <param name="reasonArgs">
1198 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1199 </param>
1200 </member>
1201 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.NotBe(System.DateTime)">
1202 <summary>
1203 Asserts that the current <see cref="T:System.DateTime"/> is not equal to the <paramref name="unexpected"/> value.
1204 </summary>
1205 <param name="unexpected">The unexpected value</param>
1206 </member>
1207 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.NotBe(System.DateTime,System.String,System.Object[])">
1208 <summary>
1209 Asserts that the current <see cref="T:System.DateTime"/> is not equal to the <paramref name="unexpected"/> value.
1210 </summary>
1211 <param name="unexpected">The unexpected value</param>
1212 <param name="reason">
1213 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1214 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1215 </param>
1216 <param name="reasonArgs">
1217 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1218 </param>
1219 </member>
1220 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeBefore(System.DateTime)">
1221 <summary>
1222 Asserts that the current <see cref="T:System.DateTime"/> is before the specified value.
1223 </summary>
1224 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be before.</param>
1225 </member>
1226 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeBefore(System.DateTime,System.String,System.Object[])">
1227 <summary>
1228 Asserts that the current <see cref="T:System.DateTime"/> is before the specified value.
1229 </summary>
1230 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be before.</param>
1231 <param name="reason">
1232 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1233 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1234 </param>
1235 <param name="reasonArgs">
1236 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1237 </param>
1238 </member>
1239 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrBefore(System.DateTime)">
1240 <summary>
1241 Asserts that the current <see cref="T:System.DateTime"/> is either on, or before the specified value.
1242 </summary>
1243 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or before.</param>
1244 </member>
1245 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrBefore(System.DateTime,System.String,System.Object[])">
1246 <summary>
1247 Asserts that the current <see cref="T:System.DateTime"/> is either on, or before the specified value.
1248 </summary>
1249 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or before.</param>
1250 <param name="reason">
1251 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1252 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1253 </param>
1254 <param name="reasonArgs">
1255 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1256 </param>
1257 </member>
1258 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeAfter(System.DateTime)">
1259 <summary>
1260 Asserts that the current <see cref="T:System.DateTime"/> is after the specified value.
1261 </summary>
1262 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be after.</param>
1263 </member>
1264 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeAfter(System.DateTime,System.String,System.Object[])">
1265 <summary>
1266 Asserts that the current <see cref="T:System.DateTime"/> is after the specified value.
1267 </summary>
1268 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be after.</param>
1269 <param name="reason">
1270 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1271 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1272 </param>
1273 <param name="reasonArgs">
1274 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1275 </param>
1276 </member>
1277 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrAfter(System.DateTime)">
1278 <summary>
1279 Asserts that the current <see cref="T:System.DateTime"/> is either on, or after the specified value.
1280 </summary>
1281 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or after.</param>
1282 </member>
1283 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeOnOrAfter(System.DateTime,System.String,System.Object[])">
1284 <summary>
1285 Asserts that the current <see cref="T:System.DateTime"/> is either on, or after the specified value.
1286 </summary>
1287 <param name="expected">The <see cref="T:System.DateTime"/> that the current value is expected to be on or after.</param>
1288 <param name="reason">
1289 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1290 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1291 </param>
1292 <param name="reasonArgs">
1293 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1294 </param>
1295 </member>
1296 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveYear(System.Int32)">
1297 <summary>
1298 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> year.
1299 </summary>
1300 <param name="expected">The expected year of the current value.</param>
1301 </member>
1302 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveYear(System.Int32,System.String,System.Object[])">
1303 <summary>
1304 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> year.
1305 </summary>
1306 <param name="expected">The expected year of the current value.</param>
1307 <param name="reason">
1308 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1309 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1310 </param>
1311 <param name="reasonArgs">
1312 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1313 </param>
1314 </member>
1315 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMonth(System.Int32)">
1316 <summary>
1317 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> month.
1318 </summary>
1319 <param name="expected">The expected month of the current value.</param>
1320 </member>
1321 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMonth(System.Int32,System.String,System.Object[])">
1322 <summary>
1323 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> month.
1324 </summary>
1325 <param name="expected">The expected month of the current value.</param>
1326 <param name="reason">
1327 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1328 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1329 </param>
1330 <param name="reasonArgs">
1331 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1332 </param>
1333 </member>
1334 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveDay(System.Int32)">
1335 <summary>
1336 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> day.
1337 </summary>
1338 <param name="expected">The expected day of the current value.</param>
1339 </member>
1340 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveDay(System.Int32,System.String,System.Object[])">
1341 <summary>
1342 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> day.
1343 </summary>
1344 <param name="expected">The expected day of the current value.</param>
1345 <param name="reason">
1346 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1347 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1348 </param>
1349 <param name="reasonArgs">
1350 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1351 </param>
1352 </member>
1353 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveHour(System.Int32)">
1354 <summary>
1355 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> hour.
1356 </summary>
1357 <param name="expected">The expected hour of the current value.</param>
1358 </member>
1359 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveHour(System.Int32,System.String,System.Object[])">
1360 <summary>
1361 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> hour.
1362 </summary>
1363 <param name="expected">The expected hour of the current value.</param>
1364 <param name="reason">
1365 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1366 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1367 </param>
1368 <param name="reasonArgs">
1369 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1370 </param>
1371 </member>
1372 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMinute(System.Int32)">
1373 <summary>
1374 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> minute.
1375 </summary>
1376 <param name="expected">The expected minutes of the current value.</param>
1377 </member>
1378 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveMinute(System.Int32,System.String,System.Object[])">
1379 <summary>
1380 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> minute.
1381 </summary>
1382 <param name="expected">The expected minutes of the current value.</param>
1383 <param name="reason">
1384 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1385 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1386 </param>
1387 <param name="reasonArgs">
1388 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1389 </param>
1390 </member>
1391 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveSecond(System.Int32)">
1392 <summary>
1393 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> second.
1394 </summary>
1395 <param name="expected">The expected seconds of the current value.</param>
1396 </member>
1397 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.HaveSecond(System.Int32,System.String,System.Object[])">
1398 <summary>
1399 Asserts that the current <see cref="T:System.DateTime"/> has the <paramref name="expected"/> second.
1400 </summary>
1401 <param name="expected">The expected seconds of the current value.</param>
1402 <param name="reason">
1403 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1404 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1405 </param>
1406 <param name="reasonArgs">
1407 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1408 </param>
1409 </member>
1410 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeMoreThan(System.TimeSpan)">
1411 <summary>
1412 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/>
1413 exceeds the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>.
1414 </summary>
1415 <param name="timeSpan">
1416 The amount of time that the current <see cref="T:System.DateTime"/> should exceed compared to another <see cref="T:System.DateTime"/>.
1417 </param>
1418 </member>
1419 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeAtLeast(System.TimeSpan)">
1420 <summary>
1421 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/>
1422 is equal to or exceeds the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>.
1423 </summary>
1424 <param name="timeSpan">
1425 The amount of time that the current <see cref="T:System.DateTime"/> should be equal or exceed compared to
1426 another <see cref="T:System.DateTime"/>.
1427 </param>
1428 </member>
1429 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeExactly(System.TimeSpan)">
1430 <summary>
1431 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/>
1432 differs exactly the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>.
1433 </summary>
1434 <param name="timeSpan">
1435 The amount of time that the current <see cref="T:System.DateTime"/> should differ exactly compared to another <see cref="T:System.DateTime"/>.
1436 </param>
1437 </member>
1438 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeWithin(System.TimeSpan)">
1439 <summary>
1440 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/>
1441 is within the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>.
1442 </summary>
1443 <param name="timeSpan">
1444 The amount of time that the current <see cref="T:System.DateTime"/> should be within another <see cref="T:System.DateTime"/>.
1445 </param>
1446 </member>
1447 <member name="M:FluentAssertions.Assertions.DateTimeAssertions.BeLessThan(System.TimeSpan)">
1448 <summary>
1449 Returns a <see cref="T:FluentAssertions.Assertions.TimeSpanAssertions"/> object that can be used to assert that the current <see cref="T:System.DateTime"/>
1450 differs at maximum the specified <paramref name="timeSpan"/> compared to another <see cref="T:System.DateTime"/>.
1451 </summary>
1452 <param name="timeSpan">
1453 The maximum amount of time that the current <see cref="T:System.DateTime"/> should differ compared to another <see cref="T:System.DateTime"/>.
1454 </param>
1455 </member>
1456 <member name="P:FluentAssertions.Assertions.DateTimeAssertions.Subject">
1457 <summary>
1458 Gets the object which value is being asserted.
1459 </summary>
1460 </member>
1461 <member name="T:FluentAssertions.Assertions.ExceptionAssertions`1">
1462 <summary>
1463 Contains a number of methods to assert that an <see cref="T:System.Exception"/> is in the correct state.
1464 </summary>
1465 </member>
1466 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String)">
1467 <summary>
1468 Asserts that the thrown exception has a message that exactly matches the <paramref name = "expectedMessage" />
1469 </summary>
1470 <param name = "expectedMessage">
1471 The expected message of the exception.
1472 </param>
1473 </member>
1474 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String,System.String,System.Object[])">
1475 <summary>
1476 Asserts that the thrown exception has a message that matches <paramref name="expectedMessage"/>
1477 depending on the specified matching mode.
1478 </summary>
1479 <param name="expectedMessage">
1480 The expected message of the exception.
1481 </param>
1482 <param name="reason">
1483 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1484 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1485 </param>
1486 <param name="reasonArgs">
1487 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1488 </param>
1489 </member>
1490 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String,FluentAssertions.Assertions.ComparisonMode)">
1491 <summary>
1492 Asserts that the thrown exception has a message that matches <paramref name = "expectedMessage" />
1493 depending on the specified matching mode.
1494 </summary>
1495 <param name = "expectedMessage">
1496 The expected message of the exception.
1497 </param>
1498 <param name = "comparisonMode">
1499 Determines how the expected message is compared with the actual message.
1500 </param>
1501 </member>
1502 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithMessage(System.String,FluentAssertions.Assertions.ComparisonMode,System.String,System.Object[])">
1503 <summary>
1504 Asserts that the thrown exception has a message that matches <paramref name="expectedMessage"/>
1505 depending on the specified matching mode.
1506 </summary>
1507 <param name="expectedMessage">
1508 The expected message of the exception.
1509 </param>
1510 <param name="comparisonMode">
1511 Determines how the expected message is compared with the actual message.
1512 </param>
1513 <param name="reason">
1514 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1515 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1516 </param>
1517 <param name="reasonArgs">
1518 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1519 </param>
1520 </member>
1521 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerException``1">
1522 <summary>
1523 Asserts that the thrown exception contains an inner exception of type <typeparamref name = "TInnerException" />.
1524 </summary>
1525 <typeparam name = "TInnerException">The expected type of the inner exception.</typeparam>
1526 </member>
1527 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerException``1(System.String,System.Object[])">
1528 <summary>
1529 Asserts that the thrown exception contains an inner exception of type <typeparamref name = "TInnerException" />.
1530 </summary>
1531 <typeparam name = "TInnerException">The expected type of the inner exception.</typeparam>
1532 <param name = "reason">The reason why the inner exception should be of the supplied type.</param>
1533 <param name = "reasonArgs">The parameters used when formatting the <paramref name = "reason" />.</param>
1534 </member>
1535 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String)">
1536 <summary>
1537 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />.
1538 </summary>
1539 <param name = "expectedInnerMessage">The expected message of the inner exception.</param>
1540 </member>
1541 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String,FluentAssertions.Assertions.ComparisonMode)">
1542 <summary>
1543 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />.
1544 </summary>
1545 <param name = "expectedInnerMessage">The expected message of the inner exception.</param>
1546 <param name = "comparisonMode">Determines how the expected message is compared with the actual message.</param>
1547 </member>
1548 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String,System.String,System.Object[])">
1549 <summary>
1550 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />.
1551 </summary>
1552 <param name = "expectedInnerMessage">The expected message of the inner exception.</param>
1553 <param name = "reason">
1554 The reason why the message of the inner exception should match <paramref name = "expectedInnerMessage" />.
1555 </param>
1556 <param name = "reasonArgs">The parameters used when formatting the <paramref name = "reason" />.</param>
1557 </member>
1558 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.WithInnerMessage(System.String,FluentAssertions.Assertions.ComparisonMode,System.String,System.Object[])">
1559 <summary>
1560 Asserts that the thrown exception contains an inner exception with the <paramref name = "expectedInnerMessage" />.
1561 </summary>
1562 <param name = "expectedInnerMessage">The expected message of the inner exception.</param>
1563 <param name = "comparisonMode">Determines how the expected message is compared with the actual message.</param>
1564 <param name = "reason">
1565 The reason why the message of the inner exception should match <paramref name = "expectedInnerMessage" />.
1566 </param>
1567 <param name = "reasonArgs">The parameters used when formatting the <paramref name = "reason" />.</param>
1568 </member>
1569 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
1570 <summary>
1571 Asserts that the exception matches a particular condition.
1572 </summary>
1573 <param name = "exceptionExpression">
1574 The condition that the exception must match.
1575 </param>
1576 </member>
1577 <member name="M:FluentAssertions.Assertions.ExceptionAssertions`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
1578 <summary>
1579 Asserts that the exception matches a particular condition.
1580 </summary>
1581 <param name="exceptionExpression">
1582 The condition that the exception must match.
1583 </param>
1584 <param name="reason">
1585 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
1586 start with the word <i>because</i>, it is prepended to the message.
1587 </param>
1588 <param name="reasonArgs">
1589 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
1590 </param>
1591 </member>
1592 <member name="P:FluentAssertions.Assertions.ExceptionAssertions`1.And">
1593 <summary>
1594 Gets the exception object of the exception thrown.
1595 </summary>
1596 </member>
1597 <member name="T:FluentAssertions.Assertions.FloatingPointExtensions">
1598 <summary>
1599 Contains a number of extension methods for floating point <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/>.
1600 </summary>
1601 </member>
1602 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Single}},System.Single,System.Single)">
1603 <summary>
1604 Asserts a floating point value approximates another value as close as possible.
1605 </summary>
1606 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1607 <param name="expectedValue">
1608 The expected value to compare the actual value with.
1609 </param>
1610 <param name="precision">
1611 The maximum amount of which the two values may differ.
1612 </param>
1613 </member>
1614 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Single}},System.Single,System.Single,System.String,System.Object[])">
1615 <summary>
1616 Asserts a floating point value approximates another value as close as possible.
1617 </summary>
1618 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1619 <param name="expectedValue">
1620 The expected value to compare the actual value with.
1621 </param>
1622 <param name="precision">
1623 The maximum amount of which the two values may differ.
1624 </param>
1625 <param name="reason">
1626 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1627 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1628 </param>
1629 <param name="reasonArgs">
1630 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1631 </param>
1632 </member>
1633 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Single},System.Single,System.Single)">
1634 <summary>
1635 Asserts a floating point value approximates another value as close as possible.
1636 </summary>
1637 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1638 <param name="expectedValue">
1639 The expected value to compare the actual value with.
1640 </param>
1641 <param name="precision">
1642 The maximum amount of which the two values may differ.
1643 </param>
1644 </member>
1645 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Single},System.Single,System.Single,System.String,System.Object[])">
1646 <summary>
1647 Asserts a floating point value approximates another value as close as possible.
1648 </summary>
1649 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1650 <param name="expectedValue">
1651 The expected value to compare the actual value with.
1652 </param>
1653 <param name="precision">
1654 The maximum amount of which the two values may differ.
1655 </param>
1656 <param name="reason">
1657 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1658 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1659 </param>
1660 <param name="reasonArgs">
1661 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1662 </param>
1663 </member>
1664 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Double}},System.Double,System.Double)">
1665 <summary>
1666 Asserts a floating point value approximates another value as close as possible.
1667 </summary>
1668 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1669 <param name="expectedValue">
1670 The expected value to compare the actual value with.
1671 </param>
1672 <param name="precision">
1673 The maximum amount of which the two values may differ.
1674 </param>
1675 </member>
1676 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Nullable{System.Double}},System.Double,System.Double,System.String,System.Object[])">
1677 <summary>
1678 Asserts a floating point value approximates another value as close as possible.
1679 </summary>
1680 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1681 <param name="expectedValue">
1682 The expected value to compare the actual value with.
1683 </param>
1684 <param name="precision">
1685 The maximum amount of which the two values may differ.
1686 </param>
1687 <param name="reason">
1688 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1689 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1690 </param>
1691 <param name="reasonArgs">
1692 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1693 </param>
1694 </member>
1695 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Double},System.Double,System.Double)">
1696 <summary>
1697 Asserts a floating point value approximates another value as close as possible.
1698 </summary>
1699 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1700 <param name="expectedValue">
1701 The expected value to compare the actual value with.
1702 </param>
1703 <param name="precision">
1704 The maximum amount of which the two values may differ.
1705 </param>
1706 </member>
1707 <member name="M:FluentAssertions.Assertions.FloatingPointExtensions.BeApproximately(FluentAssertions.Assertions.NumericAssertions{System.Double},System.Double,System.Double,System.String,System.Object[])">
1708 <summary>
1709 Asserts a floating point value approximates another value as close as possible.
1710 </summary>
1711 <param name="parent">The <see cref="T:FluentAssertions.Assertions.NumericAssertions`1"/> object that is being extended.</param>
1712 <param name="expectedValue">
1713 The expected value to compare the actual value with.
1714 </param>
1715 <param name="precision">
1716 The maximum amount of which the two values may differ.
1717 </param>
1718 <param name="reason">
1719 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1720 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1721 </param>
1722 <param name="reasonArgs">
1723 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1724 </param>
1725 </member>
1726 <member name="T:FluentAssertions.Assertions.GenericCollectionAssertions`1">
1727 <summary>
1728 Contains a number of methods to assert that an <see cref="T:System.Collections.Generic.IEnumerable`1"/> is in the expected state.
1729 </summary>
1730 </member>
1731 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(`0)">
1732 <summary>
1733 Asserts that the collection contains the specified item.
1734 </summary>
1735 </member>
1736 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(`0,System.String,System.Object[])">
1737 <summary>
1738 Asserts that the collection contains the specified item.
1739 </summary>
1740 <param name="expected">The expected item.</param>
1741 <param name="reason">
1742 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
1743 start with the word <i>because</i>, it is prepended to the message.
1744 </param>
1745 <param name="reasonArgs">
1746 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
1747 </param>
1748 </member>
1749 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(System.Collections.Generic.IEnumerable{`0},`0[])">
1750 <summary>
1751 Asserts that the collection contains some extra items in addition to the original items.
1752 </summary>
1753 <param name="expectedItemsList">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of expected items.</param>
1754 <param name="additionalExpectedItems">Additional items that are expected to be contained by the collection.</param>
1755 </member>
1756 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
1757 <summary>
1758 Asserts that the collection contains at least one item that matches the predicate.
1759 </summary>
1760 <param name="predicate">A predicate to match the items in the collection against.</param>
1761 </member>
1762 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.Contain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
1763 <summary>
1764 Asserts that the collection contains at least one item that matches the predicate.
1765 </summary>
1766 <param name="predicate">A predicate to match the items in the collection against.</param>
1767 <param name="reason">
1768 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
1769 start with the word <i>because</i>, it is prepended to the message.
1770 </param>
1771 <param name="reasonArgs">
1772 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
1773 </param>
1774 </member>
1775 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.OnlyContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
1776 <summary>
1777 Asserts that the collection only contains items that match a predicate.
1778 </summary>
1779 <param name="predicate">A predicate to match the items in the collection against.</param>
1780 </member>
1781 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.OnlyContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
1782 <summary>
1783 Asserts that the collection only contains items that match a predicate.
1784 </summary>
1785 <param name="predicate">A predicate to match the items in the collection against.</param>
1786 <param name="reason">
1787 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
1788 start with the word <i>because</i>, it is prepended to the message.
1789 </param>
1790 <param name="reasonArgs">
1791 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
1792 </param>
1793 </member>
1794 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.NotContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
1795 <summary>
1796 Asserts that the collection does not contain any items that match the predicate.
1797 </summary>
1798 <param name="predicate">A predicate to match the items in the collection against.</param>
1799 </member>
1800 <member name="M:FluentAssertions.Assertions.GenericCollectionAssertions`1.NotContain(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.String,System.Object[])">
1801 <summary>
1802 Asserts that the collection does not contain any items that match the predicate.
1803 </summary>
1804 <param name="predicate">A predicate to match the items in the collection against.</param>
1805 <param name="reason">
1806 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
1807 start with the word <i>because</i>, it is prepended to the message.
1808 </param>
1809 <param name="reasonArgs">
1810 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
1811 </param>
1812 </member>
1813 <member name="T:FluentAssertions.Assertions.GenericDictionaryAssertions`2">
1814 <summary>
1815 Contains a number of methods to assert that an <see cref="T:System.Collections.Generic.IDictionary`2"/> is in the expected state.
1816 </summary>
1817 </member>
1818 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeNull">
1819 <summary>
1820 Asserts that the current dictionary has not been initialized yet with an actual dictionary.
1821 </summary>
1822 </member>
1823 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeNull(System.String,System.Object[])">
1824 <summary>
1825 Asserts that the current dictionary has not been initialized yet with an actual dictionary.
1826 </summary>
1827 <param name="reason">
1828 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1829 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1830 </param>
1831 <param name="reasonArgs">
1832 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1833 </param>
1834 </member>
1835 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeNull">
1836 <summary>
1837 Asserts that the current dictionary has been initialized with an actual dictionary.
1838 </summary>
1839 </member>
1840 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeNull(System.String,System.Object[])">
1841 <summary>
1842 Asserts that the current dictionary has been initialized with an actual dictionary.
1843 </summary>
1844 <param name="reason">
1845 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1846 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1847 </param>
1848 <param name="reasonArgs">
1849 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1850 </param>
1851 </member>
1852 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Int32)">
1853 <summary>
1854 Asserts that the number of items in the dictionary matches the supplied <paramref name="expected" /> amount.
1855 </summary>
1856 <param name="expected">The expected number of items.</param>
1857 </member>
1858 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Int32,System.String,System.Object[])">
1859 <summary>
1860 Asserts that the number of items in the dictionary matches the supplied <paramref name="expected"/> amount.
1861 </summary>
1862 <param name="expected">The expected number of items.</param>
1863 <param name="reason">
1864 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1865 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1866 </param>
1867 <param name="reasonArgs">
1868 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1869 </param>
1870 </member>
1871 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})">
1872 <summary>
1873 Asserts that the number of items in the dictionary matches a condition stated by a predicate.
1874 </summary>
1875 <param name="countPredicate">The predicate which must be statisfied by the amount of items.</param>
1876 </member>
1877 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.HaveCount(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}},System.String,System.Object[])">
1878 <summary>
1879 Asserts that the number of items in the dictionary matches a condition stated by a predicate.
1880 </summary>
1881 <param name="countPredicate">The predicate which must be statisfied by the amount of items.</param>
1882 <param name="reason">
1883 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1884 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1885 </param>
1886 <param name="reasonArgs">
1887 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1888 </param>
1889 </member>
1890 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeEmpty">
1891 <summary>
1892 Asserts that the dictionary does not contain any items.
1893 </summary>
1894 </member>
1895 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.BeEmpty(System.String,System.Object[])">
1896 <summary>
1897 Asserts that the dictionary does not contain any items.
1898 </summary>
1899 <param name="reason">
1900 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1901 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1902 </param>
1903 <param name="reasonArgs">
1904 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1905 </param>
1906 </member>
1907 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeEmpty">
1908 <summary>
1909 Asserts that the dictionary contains at least 1 item.
1910 </summary>
1911 </member>
1912 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotBeEmpty(System.String,System.Object[])">
1913 <summary>
1914 Asserts that the dictionary contains at least 1 item.
1915 </summary>
1916 <param name="reason">
1917 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1918 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1919 </param>
1920 <param name="reasonArgs">
1921 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1922 </param>
1923 </member>
1924 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Equal(System.Collections.Generic.IDictionary{`0,`1})">
1925 <summary>
1926 Asserts that the current dictionary contains all the same key-value pairs as the
1927 specified <paramref name="expected"/> dictionary. Keys and values are compared using
1928 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1929 </summary>
1930 <param name="expected">The expected dictionary</param>
1931 </member>
1932 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Equal(System.Collections.Generic.IDictionary{`0,`1},System.String,System.Object[])">
1933 <summary>
1934 Asserts that the current dictionary contains all the same key-value pairs as the
1935 specified <paramref name="expected"/> dictionary. Keys and values are compared using
1936 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1937 </summary>
1938 <param name="expected">The expected dictionary</param>
1939 <param name="reason">
1940 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1941 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1942 </param>
1943 <param name="reasonArgs">
1944 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1945 </param>
1946 </member>
1947 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotEqual(System.Collections.Generic.IDictionary{`0,`1})">
1948 <summary>
1949 Asserts the current dictionary not to contain all the same key-value pairs as the
1950 specified <paramref name="unexpected"/> dictionary. Keys and values are compared using
1951 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1952 </summary>
1953 <param name="unexpected">The unexpected dictionary</param>
1954 </member>
1955 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotEqual(System.Collections.Generic.IDictionary{`0,`1},System.String,System.Object[])">
1956 <summary>
1957 Asserts the current dictionary not to contain all the same key-value pairs as the
1958 specified <paramref name="unexpected"/> dictionary. Keys and values are compared using
1959 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1960 </summary>
1961 <param name="unexpected">The unexpected dictionary</param>
1962 <param name="reason">
1963 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1964 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1965 </param>
1966 <param name="reasonArgs">
1967 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1968 </param>
1969 </member>
1970 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKey(`0)">
1971 <summary>
1972 Asserts that the dictionary contains the specified key. Keys are compared using
1973 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1974 </summary>
1975 <param name="expected">The expected key</param>
1976 </member>
1977 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKey(`0,System.String,System.Object[])">
1978 <summary>
1979 Asserts that the dictionary contains the specified key. Keys are compared using
1980 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1981 </summary>
1982 <param name="expected">The expected key</param>
1983 <param name="reason">
1984 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
1985 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
1986 </param>
1987 <param name="reasonArgs">
1988 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
1989 </param>
1990 </member>
1991 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKeys(`0[])">
1992 <summary>
1993 Asserts that the dictionary contains all of the specified keys. Keys are compared using
1994 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
1995 </summary>
1996 <param name="expected">The expected keys</param>
1997 </member>
1998 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainKeys(System.Collections.Generic.IEnumerable{`0},System.String,System.Object[])">
1999 <summary>
2000 Asserts that the dictionary contains all of the specified keys. Keys are compared using
2001 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2002 </summary>
2003 <param name="expected">The expected keys</param>
2004 <param name="reason">
2005 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2006 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2007 </param>
2008 <param name="reasonArgs">
2009 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2010 </param>
2011 </member>
2012 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainKey(`0)">
2013 <summary>
2014 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> key.
2015 Keys are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2016 </summary>
2017 <param name="unexpected">The unexpected key</param>
2018 </member>
2019 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainKey(`0,System.String,System.Object[])">
2020 <summary>
2021 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> key.
2022 Keys are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2023 </summary>
2024 <param name="unexpected">The unexpected key</param>
2025 <param name="reason">
2026 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2027 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2028 </param>
2029 <param name="reasonArgs">
2030 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2031 </param>
2032 </member>
2033 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValue(`1)">
2034 <summary>
2035 Asserts that the dictionary contains the specified value. Values are compared using
2036 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2037 </summary>
2038 <param name="expected">The expected value</param>
2039 </member>
2040 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValue(`1,System.String,System.Object[])">
2041 <summary>
2042 Asserts that the dictionary contains the specified value. Values are compared using
2043 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2044 </summary>
2045 <param name="expected">The expected value</param>
2046 <param name="reason">
2047 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2048 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2049 </param>
2050 <param name="reasonArgs">
2051 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2052 </param>
2053 </member>
2054 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValues(`1[])">
2055 <summary>
2056 Asserts that the dictionary contains all of the specified values. Values are compared using
2057 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2058 </summary>
2059 <param name="expected">The expected values</param>
2060 </member>
2061 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.ContainValues(System.Collections.Generic.IEnumerable{`1},System.String,System.Object[])">
2062 <summary>
2063 Asserts that the dictionary contains all of the specified values. Values are compared using
2064 their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2065 </summary>
2066 <param name="expected">The expected values</param>
2067 <param name="reason">
2068 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2069 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2070 </param>
2071 <param name="reasonArgs">
2072 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2073 </param>
2074 </member>
2075 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainValue(`1)">
2076 <summary>
2077 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> value.
2078 Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2079 </summary>
2080 <param name="unexpected">The unexpected value</param>
2081 </member>
2082 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContainValue(`1,System.String,System.Object[])">
2083 <summary>
2084 Asserts that the current dictionary does not contain the specified <paramref name="unexpected"/> value.
2085 Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2086 </summary>
2087 <param name="unexpected">The unexpected value</param>
2088 <param name="reason">
2089 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2090 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2091 </param>
2092 <param name="reasonArgs">
2093 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2094 </param>
2095 </member>
2096 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(System.Collections.Generic.KeyValuePair{`0,`1})">
2097 <summary>
2098 Asserts that the current dictionary contains the specified <paramref name="expected"/>.
2099 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2100 </summary>
2101 <param name="expected">The expected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param>
2102 </member>
2103 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(System.Collections.Generic.KeyValuePair{`0,`1},System.String,System.Object[])">
2104 <summary>
2105 Asserts that the current dictionary contains the specified <paramref name="expected"/>.
2106 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2107 </summary>
2108 <param name="expected">The expected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param>
2109 <param name="reason">
2110 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2111 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2112 </param>
2113 <param name="reasonArgs">
2114 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2115 </param>
2116 </member>
2117 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(`0,`1)">
2118 <summary>
2119 Asserts that the current dictionary contains the specified <paramref name="value"/> for the supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2120 </summary>
2121 <param name="key">The key for which to validate the value</param>
2122 <param name="value">The value to validate</param>
2123 </member>
2124 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Contain(`0,`1,System.String,System.Object[])">
2125 <summary>
2126 Asserts that the current dictionary contains the specified <paramref name="value"/> for the supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2127 </summary>
2128 <param name="key">The key for which to validate the value</param>
2129 <param name="value">The value to validate</param>
2130 <param name="reason">
2131 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2132 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2133 </param>
2134 <param name="reasonArgs">
2135 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2136 </param>
2137 </member>
2138 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(System.Collections.Generic.KeyValuePair{`0,`1})">
2139 <summary>
2140 Asserts that the current dictionary does not contain the specified <paramref name="item"/>.
2141 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2142 </summary>
2143 <param name="item">The unexpected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param>
2144 </member>
2145 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(System.Collections.Generic.KeyValuePair{`0,`1},System.String,System.Object[])">
2146 <summary>
2147 Asserts that the current dictionary does not contain the specified <paramref name="item"/>.
2148 Keys and values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2149 </summary>
2150 <param name="item">The unexpected <see cref="T:System.Collections.Generic.KeyValuePair`2"/></param>
2151 <param name="reason">
2152 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2153 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2154 </param>
2155 <param name="reasonArgs">
2156 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2157 </param>
2158 </member>
2159 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(`0,`1)">
2160 <summary>
2161 Asserts that the current dictionary does not contain the specified <paramref name="value"/> for the
2162 supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2163 </summary>
2164 <param name="key">The key for which to validate the value</param>
2165 <param name="value">The value to validate</param>
2166 </member>
2167 <member name="M:FluentAssertions.Assertions.GenericDictionaryAssertions`2.NotContain(`0,`1,System.String,System.Object[])">
2168 <summary>
2169 Asserts that the current dictionary does not contain the specified <paramref name="value"/> for the
2170 supplied <paramref name="key"/>. Values are compared using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2171 </summary>
2172 <param name="key">The key for which to validate the value</param>
2173 <param name="value">The value to validate</param>
2174 <param name="reason">
2175 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2176 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2177 </param>
2178 <param name="reasonArgs">
2179 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2180 </param>
2181 </member>
2182 <member name="P:FluentAssertions.Assertions.GenericDictionaryAssertions`2.Subject">
2183 <summary>
2184 Gets the object which value is being asserted.
2185 </summary>
2186 </member>
2187 <member name="T:FluentAssertions.Assertions.GuidAssertions">
2188 <summary>
2189 Contains a number of methods to assert that a <see cref="T:System.Guid"/> is in the correct state.
2190 </summary>
2191 </member>
2192 <member name="M:FluentAssertions.Assertions.GuidAssertions.BeEmpty">
2193 <summary>
2194 Asserts that the <see cref="T:System.Guid"/> is <see cref="F:System.Guid.Empty"/>.
2195 </summary>
2196 </member>
2197 <member name="M:FluentAssertions.Assertions.GuidAssertions.BeEmpty(System.String,System.Object[])">
2198 <summary>
2199 Asserts that the <see cref="T:System.Guid"/> is <see cref="F:System.Guid.Empty"/>.
2200 </summary>
2201 <param name="reason">
2202 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2203 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2204 </param>
2205 <param name="reasonArgs">
2206 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2207 </param>
2208 </member>
2209 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBeEmpty">
2210 <summary>
2211 Asserts that the <see cref="T:System.Guid"/> is not <see cref="F:System.Guid.Empty"/>.
2212 </summary>
2213 </member>
2214 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBeEmpty(System.String,System.Object[])">
2215 <summary>
2216 Asserts that the <see cref="T:System.Guid"/> is not <see cref="F:System.Guid.Empty"/>.
2217 </summary>
2218 <param name="reason">
2219 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2220 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2221 </param>
2222 <param name="reasonArgs">
2223 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2224 </param>
2225 </member>
2226 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.Guid)">
2227 <summary>
2228 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID.
2229 </summary>
2230 <param name="expected">The expected value to compare the actual value with.</param>
2231 </member>
2232 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.String)">
2233 <summary>
2234 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID.
2235 </summary>
2236 <param name="expected">The expected <see cref="T:System.String"/> value to compare the actual value with.</param>
2237 </member>
2238 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.String,System.String,System.Object[])">
2239 <summary>
2240 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID.
2241 </summary>
2242 <param name="expected">The expected <see cref="T:System.String"/> value to compare the actual value with.</param>
2243 <param name="reason">
2244 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2245 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2246 </param>
2247 <param name="reasonArgs">
2248 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2249 </param>
2250 </member>
2251 <member name="M:FluentAssertions.Assertions.GuidAssertions.Be(System.Guid,System.String,System.Object[])">
2252 <summary>
2253 Asserts that the <see cref="T:System.Guid"/> is equal to the <paramref name="expected"/> GUID.
2254 </summary>
2255 <param name="expected">The expected value to compare the actual value with.</param>
2256 <param name="reason">
2257 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2258 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2259 </param>
2260 <param name="reasonArgs">
2261 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2262 </param>
2263 </member>
2264 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBe(System.Guid)">
2265 <summary>
2266 Asserts that the <see cref="T:System.Guid"/> is not equal to the <paramref name="unexpected"/> GUID.
2267 </summary>
2268 <param name="unexpected">The unexpected value to compare the actual value with.</param>
2269 </member>
2270 <member name="M:FluentAssertions.Assertions.GuidAssertions.NotBe(System.Guid,System.String,System.Object[])">
2271 <summary>
2272 Asserts that the <see cref="T:System.Guid"/> is not equal to the <paramref name="unexpected"/> GUID.
2273 </summary>
2274 <param name="unexpected">The unexpected value to compare the actual value with.</param>
2275 <param name="reason">
2276 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2277 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2278 </param>
2279 <param name="reasonArgs">
2280 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2281 </param>
2282 </member>
2283 <member name="P:FluentAssertions.Assertions.GuidAssertions.Subject">
2284 <summary>
2285 Gets the object which value is being asserted.
2286 </summary>
2287 </member>
2288 <member name="T:FluentAssertions.Assertions.IntegralAssertions`1">
2289 <summary>
2290 Contains a number of methods to assert that an integral number is in the correct state.
2291 </summary>
2292 </member>
2293 <member name="T:FluentAssertions.Assertions.NumericAssertions`1">
2294 <summary>
2295 Contains a number of methods to assert that an <see cref="T:System.IComparable"/> is in the expected state.
2296 </summary>
2297 </member>
2298 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BePositive">
2299 <summary>
2300 Asserts that the numeric value is greater than or equal to zero.
2301 </summary>
2302 </member>
2303 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BePositive(System.String,System.Object[])">
2304 <summary>
2305 Asserts that the numeric value is greater than or equal to zero.
2306 </summary>
2307 <param name="reason">
2308 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2309 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2310 </param>
2311 <param name="reasonArgs">
2312 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2313 </param>
2314 </member>
2315 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeNegative">
2316 <summary>
2317 Asserts that the numeric value is less than zero.
2318 </summary>
2319 </member>
2320 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeNegative(System.String,System.Object[])">
2321 <summary>
2322 Asserts that the numeric value is less than zero.
2323 </summary>
2324 <param name="reason">
2325 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2326 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2327 </param>
2328 <param name="reasonArgs">
2329 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2330 </param>
2331 </member>
2332 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessThan(`0)">
2333 <summary>
2334 Asserts that the numeric value is less than the specified <paramref name="expected"/> value.
2335 </summary>
2336 <param name="expected">The value to compare the current numeric value with.</param>
2337 </member>
2338 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessThan(`0,System.String,System.Object[])">
2339 <summary>
2340 Asserts that the numeric value is less than the specified <paramref name="expected"/> value.
2341 </summary>
2342 <param name="expected">The value to compare the current numeric value with.</param>
2343 <param name="reason">
2344 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2345 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2346 </param>
2347 <param name="reasonArgs">
2348 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2349 </param>
2350 </member>
2351 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessOrEqualTo(`0)">
2352 <summary>
2353 Asserts that the numeric value is less than or equal to the specified <paramref name="expected"/> value.
2354 </summary>
2355 <param name="expected">The value to compare the current numeric value with.</param>
2356 </member>
2357 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeLessOrEqualTo(`0,System.String,System.Object[])">
2358 <summary>
2359 Asserts that the numeric value is less than or equal to the specified <paramref name="expected"/> value.
2360 </summary>
2361 <param name="expected">The value to compare the current numeric value with.</param>
2362 <param name="reason">
2363 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2364 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2365 </param>
2366 <param name="reasonArgs">
2367 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2368 </param>
2369 </member>
2370 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterThan(`0)">
2371 <summary>
2372 Asserts that the numeric value is greater than the specified <paramref name="expected"/> value.
2373 </summary>
2374 <param name="expected">The value to compare the current numeric value with.</param>
2375 </member>
2376 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterThan(`0,System.String,System.Object[])">
2377 <summary>
2378 Asserts that the numeric value is greater than the specified <paramref name="expected"/> value.
2379 </summary>
2380 <param name="expected">The value to compare the current numeric value with.</param>
2381 <param name="reason">
2382 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2383 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2384 </param>
2385 <param name="reasonArgs">
2386 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2387 </param>
2388 </member>
2389 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterOrEqualTo(`0)">
2390 <summary>
2391 Asserts that the numeric value is greater than or equal to the specified <paramref name="expected"/> value.
2392 </summary>
2393 <param name="expected">The value to compare the current numeric value with.</param>
2394 </member>
2395 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeGreaterOrEqualTo(`0,System.String,System.Object[])">
2396 <summary>
2397 Asserts that the numeric value is greater than or equal to the specified <paramref name="expected"/> value.
2398 </summary>
2399 <param name="expected">The value to compare the current numeric value with.</param>
2400 <param name="reason">
2401 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2402 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2403 </param>
2404 <param name="reasonArgs">
2405 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2406 </param>
2407 </member>
2408 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeInRange(`0,`0)">
2409 <summary>
2410 Asserts that a value is within a range.
2411 </summary>
2412 <remarks>
2413 Where the range is continuous or incremental depends on the actual type of the value.
2414 </remarks>
2415 <param name="minimumValue">
2416 The minimum valid value of the range.
2417 </param>
2418 <param name="maximumValue">
2419 The maximum valid value of the range.
2420 </param>
2421 </member>
2422 <member name="M:FluentAssertions.Assertions.NumericAssertions`1.BeInRange(`0,`0,System.String,System.Object[])">
2423 <summary>
2424 Asserts that a value is within a range.
2425 </summary>
2426 <remarks>
2427 Where the range is continuous or incremental depends on the actual type of the value.
2428 </remarks>
2429 <param name="minimumValue">
2430 The minimum valid value of the range.
2431 </param>
2432 <param name="maximumValue">
2433 The maximum valid value of the range.
2434 </param>
2435 <param name="reason">
2436 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2437 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2438 </param>
2439 <param name="reasonArgs">
2440 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2441 </param>
2442 </member>
2443 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.Be(`0)">
2444 <summary>
2445 Asserts that the integral number value is exactly the same as the <paramref name="expected"/> value.
2446 </summary>
2447 <param name="expected">The expected value.</param>
2448 </member>
2449 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.Be(`0,System.String,System.Object[])">
2450 <summary>
2451 Asserts that the integral number value is exactly the same as the <paramref name="expected"/> value.
2452 </summary>
2453 <param name="expected">The expected value.</param>
2454 <param name="reason">
2455 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2456 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2457 </param>
2458 <param name="reasonArgs">
2459 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2460 </param>
2461 </member>
2462 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.NotBe(`0)">
2463 <summary>
2464 Asserts that the integral number value is not the same as the <paramref name="unexpected"/> value.
2465 </summary>
2466 <param name="unexpected">The unexpected value.</param>
2467 </member>
2468 <member name="M:FluentAssertions.Assertions.IntegralAssertions`1.NotBe(`0,System.String,System.Object[])">
2469 <summary>
2470 Asserts that the integral number value is not the same as the <paramref name="unexpected"/> value.
2471 </summary>
2472 <param name="unexpected">The unexpected value.</param>
2473 <param name="reason">
2474 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2475 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2476 </param>
2477 <param name="reasonArgs">
2478 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2479 </param>
2480 </member>
2481 <member name="T:FluentAssertions.Assertions.MethodInfoAssertions">
2482 <summary>
2483 Contains assertions for the <see cref="T:System.Reflection.MethodInfo"/> objects returned by the parent <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/>.
2484 </summary>
2485 </member>
2486 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.MethodInfo})">
2487 <summary>
2488 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.MethodInfoAssertions"/> class.
2489 </summary>
2490 <param name="methods">The methods.</param>
2491 </member>
2492 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeVirtual">
2493 <summary>
2494 Asserts that the selected methods are virtual.
2495 </summary>
2496 </member>
2497 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeVirtual(System.String,System.Object[])">
2498 <summary>
2499 Asserts that the selected methods are virtual.
2500 </summary>
2501 <param name="reason">
2502 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2503 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2504 </param>
2505 <param name="reasonArgs">
2506 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2507 </param>
2508 </member>
2509 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeDecoratedWith``1">
2510 <summary>
2511 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>.
2512 </summary>
2513 </member>
2514 <member name="M:FluentAssertions.Assertions.MethodInfoAssertions.BeDecoratedWith``1(System.String,System.Object[])">
2515 <summary>
2516 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>.
2517 </summary>
2518 <param name="reason">
2519 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2520 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2521 </param>
2522 <param name="reasonArgs">
2523 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2524 </param>
2525 </member>
2526 <member name="P:FluentAssertions.Assertions.MethodInfoAssertions.SubjectMethods">
2527 <summary>
2528 Gets the object which value is being asserted.
2529 </summary>
2530 </member>
2531 <member name="T:FluentAssertions.Assertions.MethodInfoSelector">
2532 <summary>
2533 Allows for fluent selection of methods of a type through reflection.
2534 </summary>
2535 </member>
2536 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.#ctor(System.Type)">
2537 <summary>
2538 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/> class.
2539 </summary>
2540 <param name="type">The type from which to select methods.</param>
2541 </member>
2542 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.#ctor(System.Collections.Generic.IEnumerable{System.Type})">
2543 <summary>
2544 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.MethodInfoSelector"/> class.
2545 </summary>
2546 <param name="types">The types from which to select methods.</param>
2547 </member>
2548 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.ThatReturn``1">
2549 <summary>
2550 Only select the methods that return the specified type
2551 </summary>
2552 </member>
2553 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.ThatAreDecoratedWith``1">
2554 <summary>
2555 Only select the methods that are decorated with an attribute of the specified type.
2556 </summary>
2557 </member>
2558 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.ToArray">
2559 <summary>
2560 The resulting <see cref="T:System.Reflection.MethodInfo"/> objects.
2561 </summary>
2562 </member>
2563 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.HasSpecialName(System.Reflection.MethodInfo)">
2564 <summary>
2565 Determines whether the specified method has a special name (like properties and events).
2566 </summary>
2567 </member>
2568 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.GetEnumerator">
2569 <summary>
2570 Returns an enumerator that iterates through the collection.
2571 </summary>
2572 <returns>
2573 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
2574 </returns>
2575 <filterpriority>1</filterpriority>
2576 </member>
2577 <member name="M:FluentAssertions.Assertions.MethodInfoSelector.System#Collections#IEnumerable#GetEnumerator">
2578 <summary>
2579 Returns an enumerator that iterates through a collection.
2580 </summary>
2581 <returns>
2582 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
2583 </returns>
2584 <filterpriority>2</filterpriority>
2585 </member>
2586 <member name="P:FluentAssertions.Assertions.MethodInfoSelector.ThatArePublicOrInternal">
2587 <summary>
2588 Only select the methods that are public or internal.
2589 </summary>
2590 </member>
2591 <member name="P:FluentAssertions.Assertions.MethodInfoSelector.ThatReturnVoid">
2592 <summary>
2593 Only select the methods without a return value
2594 </summary>
2595 </member>
2596 <member name="T:FluentAssertions.Assertions.NonGenericCollectionAssertions">
2597 <summary>
2598 Contains a number of methods to assert that an <see cref="T:System.Collections.IEnumerable"/> is in the expected state.
2599 </summary>
2600 </member>
2601 <member name="M:FluentAssertions.Assertions.NonGenericCollectionAssertions.Contain(System.Object)">
2602 <summary>
2603 Asserts that the current collection contains the specified <paramref name="expected"/> object. Elements are compared
2604 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2605 </summary>
2606 <param name="expected">An object, or <see cref="T:System.Collections.IEnumerable"/> of objects that are expected to be in the collection.</param>
2607 </member>
2608 <member name="M:FluentAssertions.Assertions.NonGenericCollectionAssertions.Contain(System.Object,System.String,System.Object[])">
2609 <summary>
2610 Asserts that the current collection contains the specified <paramref name="expected"/> object. Elements are compared
2611 using their <see cref="M:System.Object.Equals(System.Object)"/> implementation.
2612 </summary>
2613 <param name="expected">An object, or <see cref="T:System.Collections.IEnumerable"/> of objects that are expected to be in the collection.</param>
2614 <param name="reason">
2615 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2616 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2617 </param>
2618 <param name="reasonArgs">
2619 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2620 </param>
2621 </member>
2622 <member name="T:FluentAssertions.Assertions.NullableBooleanAssertions">
2623 <summary>
2624 Contains a number of methods to assert that a nullable <see cref="T:System.Boolean"/> is in the expected state.
2625 </summary>
2626 </member>
2627 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.HaveValue">
2628 <summary>
2629 Asserts that a nullable boolean value is not <c>null</c>.
2630 </summary>
2631 </member>
2632 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.HaveValue(System.String,System.Object[])">
2633 <summary>
2634 Asserts that a nullable boolean value is not <c>null</c>.
2635 </summary>
2636 <param name="reason">
2637 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2638 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2639 </param>
2640 <param name="reasonArgs">
2641 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2642 </param>
2643 </member>
2644 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.NotHaveValue">
2645 <summary>
2646 Asserts that a nullable boolean value is <c>null</c>.
2647 </summary>
2648 </member>
2649 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.NotHaveValue(System.String,System.Object[])">
2650 <summary>
2651 Asserts that a nullable boolean value is <c>null</c>.
2652 </summary>
2653 <param name="reason">
2654 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2655 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2656 </param>
2657 <param name="reasonArgs">
2658 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2659 </param>
2660 </member>
2661 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.Be(System.Nullable{System.Boolean})">
2662 <summary>
2663 Asserts that the value is equal to the specified <paramref name="expected"/> value.
2664 </summary>
2665 <param name="expected">The expected value</param>
2666 </member>
2667 <member name="M:FluentAssertions.Assertions.NullableBooleanAssertions.Be(System.Nullable{System.Boolean},System.String,System.Object[])">
2668 <summary>
2669 Asserts that the value is equal to the specified <paramref name="expected"/> value.
2670 </summary>
2671 <param name="expected">The expected value</param>
2672 <param name="reason">
2673 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2674 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2675 </param>
2676 <param name="reasonArgs">
2677 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2678 </param>
2679 </member>
2680 <member name="T:FluentAssertions.Assertions.NullableDateTimeAssertions">
2681 <summary>
2682 Contains a number of methods to assert that a nullable <see cref="T:System.DateTime"/> is in the expected state.
2683 </summary>
2684 <remarks>
2685 You can use the <see cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> for a more fluent way of specifying a <see cref="T:System.DateTime"/>.
2686 </remarks>
2687 </member>
2688 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.HaveValue">
2689 <summary>
2690 Asserts that a nullable <see cref="T:System.DateTime"/> value is not <c>null</c>.
2691 </summary>
2692 </member>
2693 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.HaveValue(System.String,System.Object[])">
2694 <summary>
2695 Asserts that a nullable <see cref="T:System.DateTime"/> value is not <c>null</c>.
2696 </summary>
2697 <param name="reason">
2698 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2699 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2700 </param>
2701 <param name="reasonArgs">
2702 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2703 </param>
2704 </member>
2705 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.NotHaveValue">
2706 <summary>
2707 Asserts that a nullable <see cref="T:System.DateTime"/> value is <c>null</c>.
2708 </summary>
2709 </member>
2710 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.NotHaveValue(System.String,System.Object[])">
2711 <summary>
2712 Asserts that a nullable <see cref="T:System.DateTime"/> value is <c>null</c>.
2713 </summary>
2714 <param name="reason">
2715 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2716 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2717 </param>
2718 <param name="reasonArgs">
2719 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2720 </param>
2721 </member>
2722 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.Be(System.Nullable{System.DateTime})">
2723 <summary>
2724 Asserts that the value is equal to the specified <paramref name="expected"/> value.
2725 </summary>
2726 <param name="expected">The expected value</param>
2727 </member>
2728 <member name="M:FluentAssertions.Assertions.NullableDateTimeAssertions.Be(System.Nullable{System.DateTime},System.String,System.Object[])">
2729 <summary>
2730 Asserts that the value is equal to the specified <paramref name="expected"/> value.
2731 </summary>
2732 <param name="expected">The expected value</param>
2733 <param name="reason">
2734 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2735 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2736 </param>
2737 <param name="reasonArgs">
2738 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2739 </param>
2740 </member>
2741 <member name="T:FluentAssertions.Assertions.NullableGuidAssertions">
2742 <summary>
2743 Contains a number of methods to assert that a nullable <see cref="T:System.Guid"/> is in the expected state.
2744 </summary>
2745 </member>
2746 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.HaveValue">
2747 <summary>
2748 Asserts that a nullable <see cref="T:System.Guid"/> value is not <c>null</c>.
2749 </summary>
2750 </member>
2751 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.HaveValue(System.String,System.Object[])">
2752 <summary>
2753 Asserts that a nullable <see cref="T:System.Guid"/> value is not <c>null</c>.
2754 </summary>
2755 <param name="reason">
2756 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2757 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2758 </param>
2759 <param name="reasonArgs">
2760 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2761 </param>
2762 </member>
2763 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.NotHaveValue">
2764 <summary>
2765 Asserts that a nullable <see cref="T:System.Guid"/> value is <c>null</c>.
2766 </summary>
2767 </member>
2768 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.NotHaveValue(System.String,System.Object[])">
2769 <summary>
2770 Asserts that a nullable <see cref="T:System.Guid"/> value is <c>null</c>.
2771 </summary>
2772 <param name="reason">
2773 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2774 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2775 </param>
2776 <param name="reasonArgs">
2777 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2778 </param>
2779 </member>
2780 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.Be(System.Nullable{System.Guid})">
2781 <summary>
2782 Asserts that the value is equal to the specified <paramref name="expected"/> value.
2783 </summary>
2784 <param name="expected">The expected value</param>
2785 </member>
2786 <member name="M:FluentAssertions.Assertions.NullableGuidAssertions.Be(System.Nullable{System.Guid},System.String,System.Object[])">
2787 <summary>
2788 Asserts that the value is equal to the specified <paramref name="expected"/> value.
2789 </summary>
2790 <param name="expected">The expected value</param>
2791 <param name="reason">
2792 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2793 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2794 </param>
2795 <param name="reasonArgs">
2796 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2797 </param>
2798 </member>
2799 <member name="T:FluentAssertions.Assertions.NullableNumericExtensions">
2800 <summary>
2801 Contains a number of methods to assert that a nullable numeric value has the expected value.
2802 </summary>
2803 </member>
2804 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.HaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}})">
2805 <summary>
2806 Asserts that a nullable numeric value is not <c>null</c>.
2807 </summary>
2808 </member>
2809 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.HaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}},System.String,System.Object[])">
2810 <summary>
2811 Asserts that a nullable numeric value is not <c>null</c>.
2812 </summary>
2813 <param name="reason">
2814 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2815 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2816 </param>
2817 <param name="reasonArgs">
2818 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2819 </param>
2820 </member>
2821 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.NotHaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}})">
2822 <summary>
2823 Asserts that a nullable numeric value is <c>null</c>.
2824 </summary>
2825 </member>
2826 <member name="M:FluentAssertions.Assertions.NullableNumericExtensions.NotHaveValue``1(FluentAssertions.Assertions.NumericAssertions{System.Nullable{``0}},System.String,System.Object[])">
2827 <summary>
2828 Asserts that a nullable numeric value is <c>null</c>.
2829 </summary>
2830 <param name="reason">
2831 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2832 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2833 </param>
2834 <param name="reasonArgs">
2835 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2836 </param>
2837 </member>
2838 <member name="T:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions">
2839 <summary>
2840 Contains a number of methods to assert that a nullable <see cref="T:System.TimeSpan"/> is in the expected state.
2841 </summary>
2842 <remarks>
2843 You can use the <see cref="T:FluentAssertions.Common.TimeSpanConversionExtensions"/> for a more fluent way of specifying a <see cref="T:System.TimeSpan"/>.
2844 </remarks>
2845 </member>
2846 <member name="T:FluentAssertions.Assertions.SimpleTimeSpanAssertions">
2847 <summary>
2848 Contains a number of methods to assert that a nullable <see cref="T:System.TimeSpan"/> is in the expected state.
2849 </summary>
2850 </member>
2851 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BePositive">
2852 <summary>
2853 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than zero.
2854 </summary>
2855 </member>
2856 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BePositive(System.String,System.Object[])">
2857 <summary>
2858 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than zero.
2859 </summary>
2860 <param name="reason">
2861 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2862 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2863 </param>
2864 <param name="reasonArgs">
2865 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2866 </param>
2867 </member>
2868 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeNegative">
2869 <summary>
2870 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than zero.
2871 </summary>
2872 </member>
2873 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeNegative(System.String,System.Object[])">
2874 <summary>
2875 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than zero.
2876 </summary>
2877 <param name="reason">
2878 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2879 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2880 </param>
2881 <param name="reasonArgs">
2882 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2883 </param>
2884 </member>
2885 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.Be(System.TimeSpan)">
2886 <summary>
2887 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is equal to the
2888 specified <paramref name="expected"/> time.
2889 </summary>
2890 <param name="expected">The expected time difference</param>
2891 </member>
2892 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.Be(System.TimeSpan,System.String,System.Object[])">
2893 <summary>
2894 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is equal to the
2895 specified <paramref name="expected"/> time.
2896 </summary>
2897 <param name="expected">The expected time difference</param>
2898 <param name="reason">
2899 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2900 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2901 </param>
2902 <param name="reasonArgs">
2903 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2904 </param>
2905 </member>
2906 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.NotBe(System.TimeSpan)">
2907 <summary>
2908 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is not equal to the
2909 specified <paramref name="unexpected"/> time.
2910 </summary>
2911 <param name="unexpected">The unexpected time difference</param>
2912 </member>
2913 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.NotBe(System.TimeSpan,System.String,System.Object[])">
2914 <summary>
2915 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is not equal to the
2916 specified <paramref name="unexpected"/> time.
2917 </summary>
2918 <param name="unexpected">The unexpected time difference</param>
2919 <param name="reason">
2920 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2921 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2922 </param>
2923 <param name="reasonArgs">
2924 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2925 </param>
2926 </member>
2927 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessThan(System.TimeSpan)">
2928 <summary>
2929 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than the
2930 specified <paramref name="expected"/> time.
2931 </summary>
2932 <param name="expected">The time difference to which the current value will be compared</param>
2933 </member>
2934 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessThan(System.TimeSpan,System.String,System.Object[])">
2935 <summary>
2936 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than the
2937 specified <paramref name="expected"/> time.
2938 </summary>
2939 <param name="expected">The time difference to which the current value will be compared</param>
2940 <param name="reason">
2941 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2942 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2943 </param>
2944 <param name="reasonArgs">
2945 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2946 </param>
2947 </member>
2948 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessOrEqualTo(System.TimeSpan)">
2949 <summary>
2950 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than or equal to the
2951 specified <paramref name="expected"/> time.
2952 </summary>
2953 <param name="expected">The time difference to which the current value will be compared</param>
2954 </member>
2955 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeLessOrEqualTo(System.TimeSpan,System.String,System.Object[])">
2956 <summary>
2957 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is less than or equal to the
2958 specified <paramref name="expected"/> time.
2959 </summary>
2960 <param name="expected">The time difference to which the current value will be compared</param>
2961 <param name="reason">
2962 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2963 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2964 </param>
2965 <param name="reasonArgs">
2966 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2967 </param>
2968 </member>
2969 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterThan(System.TimeSpan)">
2970 <summary>
2971 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than the
2972 specified <paramref name="expected"/> time.
2973 </summary>
2974 <param name="expected">The time difference to which the current value will be compared</param>
2975 </member>
2976 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterThan(System.TimeSpan,System.String,System.Object[])">
2977 <summary>
2978 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than the
2979 specified <paramref name="expected"/> time.
2980 </summary>
2981 <param name="expected">The time difference to which the current value will be compared</param>
2982 <param name="reason">
2983 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
2984 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
2985 </param>
2986 <param name="reasonArgs">
2987 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
2988 </param>
2989 </member>
2990 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterOrEqualTo(System.TimeSpan)">
2991 <summary>
2992 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than or equal to the
2993 specified <paramref name="expected"/> time.
2994 </summary>
2995 <param name="expected">The time difference to which the current value will be compared</param>
2996 </member>
2997 <member name="M:FluentAssertions.Assertions.SimpleTimeSpanAssertions.BeGreaterOrEqualTo(System.TimeSpan,System.String,System.Object[])">
2998 <summary>
2999 Asserts that the time difference of the current <see cref="T:System.TimeSpan"/> is greater than or equal to the
3000 specified <paramref name="expected"/> time.
3001 </summary>
3002 <param name="expected">The time difference to which the current value will be compared</param>
3003 <param name="reason">
3004 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3005 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3006 </param>
3007 <param name="reasonArgs">
3008 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3009 </param>
3010 </member>
3011 <member name="P:FluentAssertions.Assertions.SimpleTimeSpanAssertions.Subject">
3012 <summary>
3013 Gets the object which value is being asserted.
3014 </summary>
3015 </member>
3016 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.HaveValue">
3017 <summary>
3018 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is not <c>null</c>.
3019 </summary>
3020 </member>
3021 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.HaveValue(System.String,System.Object[])">
3022 <summary>
3023 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is not <c>null</c>.
3024 </summary>
3025 <param name="reason">
3026 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3027 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3028 </param>
3029 <param name="reasonArgs">
3030 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3031 </param>
3032 </member>
3033 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.NotHaveValue">
3034 <summary>
3035 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is <c>null</c>.
3036 </summary>
3037 </member>
3038 <member name="M:FluentAssertions.Assertions.NullableSimpleTimeSpanAssertions.NotHaveValue(System.String,System.Object[])">
3039 <summary>
3040 Asserts that a nullable <see cref="T:System.TimeSpan"/> value is <c>null</c>.
3041 </summary>
3042 <param name="reason">
3043 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3044 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3045 </param>
3046 <param name="reasonArgs">
3047 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3048 </param>
3049 </member>
3050 <member name="T:FluentAssertions.Assertions.ObjectAssertions">
3051 <summary>
3052 Contains a number of methods to assert that an <see cref="T:System.Object"/> is in the expected state.
3053 </summary>
3054 </member>
3055 <member name="M:FluentAssertions.Assertions.ObjectAssertions.Be(System.Object)">
3056 <summary>
3057 Asserts that the value of an object equals another object when using it's <see cref="M:System.Object.Equals(System.Object)"/> method.
3058 </summary>
3059 <param name="expected">The expected value</param>
3060 </member>
3061 <member name="M:FluentAssertions.Assertions.ObjectAssertions.Be(System.Object,System.String,System.Object[])">
3062 <summary>
3063 Asserts that an object equals another object using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
3064 </summary>
3065 <param name="expected">The expected value</param>
3066 <param name="reason">
3067 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3068 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3069 </param>
3070 <param name="reasonArgs">
3071 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3072 </param>
3073 </member>
3074 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBe(System.Object)">
3075 <summary>
3076 Asserts that an object does not equal another object using it's <see cref="M:System.Object.Equals(System.Object)"/> method.
3077 </summary>
3078 <param name="unexpected">The unexpected value</param>
3079 </member>
3080 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBe(System.Object,System.String,System.Object[])">
3081 <summary>
3082 Asserts that an object does not equal another object using it's <see cref="M:System.Object.Equals(System.Object)"/> method.
3083 </summary>
3084 <param name="unexpected">The unexpected value</param>
3085 <param name="reason">
3086 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3087 start with the word <i>because</i>, it is prepended to the message.
3088 </param>
3089 <param name="reasonArgs">
3090 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3091 </param>
3092 </member>
3093 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeSameAs(System.Object)">
3094 <summary>
3095 Asserts that an object reference refers to the exact same object as another object reference.
3096 </summary>
3097 <param name="expected">The expected object</param>
3098 </member>
3099 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeSameAs(System.Object,System.String,System.Object[])">
3100 <summary>
3101 Asserts that an object reference refers to the exact same object as another object reference.
3102 </summary>
3103 <param name="expected">The expected object</param>
3104 <param name="reason">
3105 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3106 start with the word <i>because</i>, it is prepended to the message.
3107 </param>
3108 <param name="reasonArgs">
3109 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3110 </param>
3111 </member>
3112 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeSameAs(System.Object)">
3113 <summary>
3114 Asserts that an object reference refers to a different object than another object reference refers to.
3115 </summary>
3116 <param name="unexpected">The unexpected object</param>
3117 </member>
3118 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeSameAs(System.Object,System.String,System.Object[])">
3119 <summary>
3120 Asserts that an object reference refers to a different object than another object reference refers to.
3121 </summary>
3122 <param name="unexpected">The unexpected object</param>
3123 <param name="reason">
3124 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3125 start with the word <i>because</i>, it is prepended to the message.
3126 </param>
3127 <param name="reasonArgs">
3128 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3129 </param>
3130 </member>
3131 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeNull">
3132 <summary>
3133 Asserts that the object is <c>null</c>.
3134 </summary>
3135 </member>
3136 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeNull(System.String,System.Object[])">
3137 <summary>
3138 Asserts that the object is <c>null</c>.
3139 </summary>
3140 <param name="reason">
3141 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3142 start with the word <i>because</i>, it is prepended to the message.
3143 </param>
3144 <param name="reasonArgs">
3145 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3146 </param>
3147 </member>
3148 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeNull">
3149 <summary>
3150 Asserts that the object is not <c>null</c>.
3151 </summary>
3152 </member>
3153 <member name="M:FluentAssertions.Assertions.ObjectAssertions.NotBeNull(System.String,System.Object[])">
3154 <summary>
3155 Asserts that the object is not <c>null</c>.
3156 </summary>
3157 <param name="reason">
3158 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3159 start with the word <i>because</i>, it is prepended to the message.
3160 </param>
3161 <param name="reasonArgs">
3162 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3163 </param>
3164 </member>
3165 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeXmlSerializable">
3166 <summary>
3167 Asserts that an object can be serialized and deserialized using the XML serializer and that it stills retains
3168 the values of all properties.
3169 </summary>
3170 </member>
3171 <member name="M:FluentAssertions.Assertions.ObjectAssertions.BeXmlSerializable(System.String,System.Object[])">
3172 <summary>
3173 Asserts that an object can be serialized and deserialized using the XML serializer and that it stills retains
3174 the values of all properties.
3175 </summary>
3176 <param name="reason">
3177 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3178 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3179 </param>
3180 <param name="reasonArgs">
3181 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3182 </param>
3183 </member>
3184 <member name="T:FluentAssertions.Assertions.PropertyAssertions`1">
3185 <summary>
3186 Provides methods for selecting one or more properties of an object and comparing them with another object.
3187 </summary>
3188 </member>
3189 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.AllProperties">
3190 <summary>
3191 Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>.
3192 </summary>
3193 </member>
3194 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.AllRuntimeProperties">
3195 <summary>
3196 Includes all properties of <typeparamref name="T"/> including those of the run-time type when comparing the subject
3197 with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>.
3198 </summary>
3199 </member>
3200 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.SharedProperties">
3201 <summary>
3202 Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>,
3203 except those that the other object does not have.
3204 </summary>
3205 </member>
3206 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.IncludingNestedObjects(FluentAssertions.Assertions.CyclicReferenceHandling)">
3207 <summary>
3208 Perform recursive property comparison of the child properties for objects that are of incompatible type.
3209 </summary>
3210 <param name="ignore"> </param>
3211 </member>
3212 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.AllPropertiesBut(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])">
3213 <summary>
3214 Includes all properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>,
3215 except those specified using a property expression.
3216 </summary>
3217 <param name="propertyExpression">A single property expression to exclude.</param>
3218 <param name="propertyExpressions">Optional list of additional property expressions to exclude.</param>
3219 </member>
3220 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.But(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])">
3221 <summary>
3222 Excludes the properties specified by the <paramref name="propertyExpression"/> from the comparison.
3223 </summary>
3224 <param name="propertyExpression">A single property expression to exclude.</param>
3225 <param name="propertyExpressions">Optional list of additional property expressions to exclude.</param>
3226 </member>
3227 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.Properties(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}}[])">
3228 <summary>
3229 Includes only those properties of <typeparamref name="T"/> when comparing the subject with another object using <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>
3230 that were specified using a property expression.
3231 </summary>
3232 <param name="propertyExpression">A single property expression to include.</param>
3233 <param name="propertyExpressions">Optional list of additional property expressions to include.</param>
3234 </member>
3235 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)">
3236 <summary>
3237 Asserts that the previously selected properties of <typeparamref name="T"/> have the same value as the equally named
3238 properties of <paramref name="otherObject"/>.
3239 </summary>
3240 <param name="otherObject">The object to compare the current object with</param>
3241 <remarks>
3242 Property values are considered equal if, after converting them to the requested type, calling <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>
3243 returns <c>true</c>.
3244 </remarks>
3245 </member>
3246 <member name="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object,System.String,System.Object[])">
3247 <summary>
3248 Asserts that the previously selected properties of <typeparamref name="T"/> have the same value as the equally named
3249 properties of <paramref name="otherObject"/>.
3250 </summary>
3251 <param name="otherObject">The object to compare the current object with</param>
3252 <remarks>
3253 Property values are considered equal if, after converting them to the requested type, calling <see cref="M:FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(System.Object)"/>
3254 returns <c>true</c>.
3255 </remarks>
3256 <param name="reason">
3257 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3258 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3259 </param>
3260 <param name="reasonArgs">
3261 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3262 </param>
3263 </member>
3264 <member name="P:FluentAssertions.Assertions.PropertyAssertions`1.Subject">
3265 <summary>
3266 Gets the object which value is being asserted.
3267 </summary>
3268 </member>
3269 <member name="T:FluentAssertions.Assertions.PropertyEqualityValidator">
3270 <summary>
3271 Is responsible for validating the equality of one or more properties of a subject with another object.
3272 </summary>
3273 </member>
3274 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.Properties">
3275 <summary>
3276 Contains the properties that should be included when comparing two objects.
3277 </summary>
3278 </member>
3279 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.OnlySharedProperties">
3280 <summary>
3281 Gets or sets a value indicating whether the validator will ignore properties from the <see cref="P:FluentAssertions.Assertions.PropertyEqualityValidator.Properties"/>
3282 collection that the <see cref="!:Other"/> object doesn't have.
3283 </summary>
3284 </member>
3285 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.RecurseOnNestedObjects">
3286 <summary>
3287 Gets or sets a value indicating whether it should continue comparing (collections of objects) that
3288 the <see cref="P:FluentAssertions.Assertions.PropertyEqualityValidator.OtherObject"/> refers to.
3289 </summary>
3290 </member>
3291 <member name="P:FluentAssertions.Assertions.PropertyEqualityValidator.CyclicReferenceHandling">
3292 <summary>
3293 Gets or sets a value indicating how cyclic references that are encountered while comparing (collections of)
3294 objects should be handled.
3295 </summary>
3296 </member>
3297 <member name="T:FluentAssertions.Assertions.PropertyInfoAssertions">
3298 <summary>
3299 Contains assertions for the <see cref="T:System.Reflection.PropertyInfo"/> objects returned by the parent <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/>.
3300 </summary>
3301 </member>
3302 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.PropertyInfo})">
3303 <summary>
3304 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.PropertyInfoAssertions"/> class.
3305 </summary>
3306 <param name="properties">The properties.</param>
3307 </member>
3308 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeVirtual">
3309 <summary>
3310 Asserts that the selected properties are virtual.
3311 </summary>
3312 </member>
3313 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeVirtual(System.String,System.Object[])">
3314 <summary>
3315 Asserts that the selected properties are virtual.
3316 </summary>
3317 <param name="reason">
3318 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3319 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3320 </param>
3321 <param name="reasonArgs">
3322 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3323 </param>
3324 </member>
3325 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeDecoratedWith``1">
3326 <summary>
3327 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>.
3328 </summary>
3329 </member>
3330 <member name="M:FluentAssertions.Assertions.PropertyInfoAssertions.BeDecoratedWith``1(System.String,System.Object[])">
3331 <summary>
3332 Asserts that the selected methods are decorated with the specified <typeparamref name="TAttribute"/>.
3333 </summary>
3334 <param name="reason">
3335 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3336 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3337 </param>
3338 <param name="reasonArgs">
3339 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3340 </param>
3341 </member>
3342 <member name="P:FluentAssertions.Assertions.PropertyInfoAssertions.SubjectProperties">
3343 <summary>
3344 Gets the object which value is being asserted.
3345 </summary>
3346 </member>
3347 <member name="T:FluentAssertions.Assertions.PropertyInfoSelector">
3348 <summary>
3349 Allows for fluent selection of properties of a type through reflection.
3350 </summary>
3351 </member>
3352 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.#ctor(System.Type)">
3353 <summary>
3354 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/> class.
3355 </summary>
3356 <param name="type">The type from which to select properties.</param>
3357 </member>
3358 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.#ctor(System.Collections.Generic.IEnumerable{System.Type})">
3359 <summary>
3360 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.PropertyInfoSelector"/> class.
3361 </summary>
3362 <param name="types">The types from which to select properties.</param>
3363 </member>
3364 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.ThatAreDecoratedWith``1">
3365 <summary>
3366 Only select the properties that are decorated with an attribute of the specified type.
3367 </summary>
3368 </member>
3369 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.OfType``1">
3370 <summary>
3371 Only select the properties that return the specified type
3372 </summary>
3373 </member>
3374 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.ToArray">
3375 <summary>
3376 The resulting <see cref="T:System.Reflection.PropertyInfo"/> objects.
3377 </summary>
3378 </member>
3379 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.GetEnumerator">
3380 <summary>
3381 Returns an enumerator that iterates through the collection.
3382 </summary>
3383 <returns>
3384 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
3385 </returns>
3386 <filterpriority>1</filterpriority>
3387 </member>
3388 <member name="M:FluentAssertions.Assertions.PropertyInfoSelector.System#Collections#IEnumerable#GetEnumerator">
3389 <summary>
3390 Returns an enumerator that iterates through a collection.
3391 </summary>
3392 <returns>
3393 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
3394 </returns>
3395 <filterpriority>2</filterpriority>
3396 </member>
3397 <member name="P:FluentAssertions.Assertions.PropertyInfoSelector.ThatArePublicOrInternal">
3398 <summary>
3399 Only select the properties that have a public or internal getter.
3400 </summary>
3401 </member>
3402 <member name="T:FluentAssertions.Assertions.StringAssertions">
3403 <summary>
3404 Contains a number of methods to assert that a <see cref="T:System.String"/> is in the expected state.
3405 </summary>
3406 </member>
3407 <member name="M:FluentAssertions.Assertions.StringAssertions.#ctor(System.String)">
3408 <summary>
3409 Initializes a new instance of the <see cref="T:System.Object" /> class.
3410 </summary>
3411 </member>
3412 <member name="M:FluentAssertions.Assertions.StringAssertions.Be(System.String)">
3413 <summary>
3414 Asserts that a string is equal to another string.
3415 </summary>
3416 <param name="expected">The expected string.</param>
3417 </member>
3418 <member name="M:FluentAssertions.Assertions.StringAssertions.Be(System.String,System.String,System.Object[])">
3419 <summary>
3420 Asserts that a string is exactly the same as another string, including the casing and any leading or trailing whitespace.
3421 </summary>
3422 <param name="expected">The expected string.</param>
3423 <param name="reason">
3424 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3425 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3426 </param>
3427 <param name="reasonArgs">
3428 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3429 </param>
3430 </member>
3431 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEquivalentTo(System.String)">
3432 <summary>
3433 Asserts that a string is exactly the same as another string, including any leading or trailing whitespace, with
3434 the exception of the casing.
3435 </summary>
3436 <param name="expected">
3437 The string that the subject is expected to be equivalent to.
3438 </param>
3439 </member>
3440 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEquivalentTo(System.String,System.String,System.Object[])">
3441 <summary>
3442 Asserts that a string is exactly the same as another string, including any leading or trailing whitespace, with
3443 the exception of the casing.
3444 </summary>
3445 <param name="expected">
3446 The string that the subject is expected to be equivalent to.
3447 </param>
3448 <param name="reason">
3449 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3450 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3451 </param>
3452 <param name="reasonArgs">
3453 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3454 </param>
3455 </member>
3456 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBe(System.String)">
3457 <summary>
3458 Asserts that a string is not exactly the same as the specified <paramref name="unexpected"/>,
3459 including any leading or trailing whitespace, with the exception of the casing.
3460 </summary>
3461 <param name="unexpected">The string that the subject is not expected to be equivalent to.</param>
3462 </member>
3463 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBe(System.String,System.String,System.Object[])">
3464 <summary>
3465 Asserts that a string is not exactly the same as the specified <paramref name="unexpected"/>,
3466 including any leading or trailing whitespace, with the exception of the casing.
3467 </summary>
3468 <param name="unexpected">The string that the subject is not expected to be equivalent to.</param>
3469 <param name="reason">
3470 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3471 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3472 </param>
3473 <param name="reasonArgs">
3474 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3475 </param>
3476 </member>
3477 <member name="M:FluentAssertions.Assertions.StringAssertions.Match(System.String)">
3478 <summary>
3479 Asserts that a string matches a wildcard pattern.
3480 </summary>
3481 <param name="wildcardPattern">
3482 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3483 </param>
3484 </member>
3485 <member name="M:FluentAssertions.Assertions.StringAssertions.Match(System.String,System.String,System.Object[])">
3486 <summary>
3487 Asserts that a string matches a wildcard pattern.
3488 </summary>
3489 <param name="wildcardPattern">
3490 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3491 </param>
3492 <param name="reason">
3493 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3494 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3495 </param>
3496 <param name="reasonArgs">
3497 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3498 </param>
3499 </member>
3500 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatch(System.String)">
3501 <summary>
3502 Asserts that a string does not match a wildcard pattern.
3503 </summary>
3504 <param name="wildcardPattern">
3505 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3506 </param>
3507 </member>
3508 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatch(System.String,System.String,System.Object[])">
3509 <summary>
3510 Asserts that a string does not match a wildcard pattern.
3511 </summary>
3512 <param name="wildcardPattern">
3513 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3514 </param>
3515 <param name="reason">
3516 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3517 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3518 </param>
3519 <param name="reasonArgs">
3520 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3521 </param>
3522 </member>
3523 <member name="M:FluentAssertions.Assertions.StringAssertions.MatchEquivalentOf(System.String)">
3524 <summary>
3525 Asserts that a string matches a wildcard pattern.
3526 </summary>
3527 <param name="wildcardPattern">
3528 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3529 </param>
3530 </member>
3531 <member name="M:FluentAssertions.Assertions.StringAssertions.MatchEquivalentOf(System.String,System.String,System.Object[])">
3532 <summary>
3533 Asserts that a string matches a wildcard pattern.
3534 </summary>
3535 <param name="wildcardPattern">
3536 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3537 </param>
3538 <param name="reason">
3539 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3540 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3541 </param>
3542 <param name="reasonArgs">
3543 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3544 </param>
3545 </member>
3546 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatchEquivalentOf(System.String)">
3547 <summary>
3548 Asserts that a string does not match a wildcard pattern.
3549 </summary>
3550 <param name="wildcardPattern">
3551 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3552 </param>
3553 </member>
3554 <member name="M:FluentAssertions.Assertions.StringAssertions.NotMatchEquivalentOf(System.String,System.String,System.Object[])">
3555 <summary>
3556 Asserts that a string does not match a wildcard pattern.
3557 </summary>
3558 <param name="wildcardPattern">
3559 The wildcard pattern with which the subject is matched, where * and ? have special meanings.
3560 </param>
3561 <param name="reason">
3562 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3563 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3564 </param>
3565 <param name="reasonArgs">
3566 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3567 </param>
3568 </member>
3569 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWith(System.String)">
3570 <summary>
3571 Asserts that a string starts exactly with the specified <paramref name="expected"/>,
3572 including the casing and any leading or trailing whitespace.
3573 </summary>
3574 <param name="expected">The string that the subject is expected to start with.</param>
3575 </member>
3576 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWith(System.String,System.String,System.Object[])">
3577 <summary>
3578 Asserts that a string starts exactly with the specified <paramref name="expected"/>,
3579 including the casing and any leading or trailing whitespace.
3580 </summary>
3581 <param name="expected">The string that the subject is expected to start with.</param>
3582 <param name="reason">
3583 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3584 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3585 </param>
3586 <param name="reasonArgs">
3587 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3588 </param>
3589 </member>
3590 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWithEquivalent(System.String)">
3591 <summary>
3592 Asserts that a string starts with the specified <paramref name="expected"/>,
3593 including any leading or trailing whitespace, with the exception of the casing.
3594 </summary>
3595 <param name="expected">The string that the subject is expected to start with.</param>
3596 </member>
3597 <member name="M:FluentAssertions.Assertions.StringAssertions.StartWithEquivalent(System.String,System.String,System.Object[])">
3598 <summary>
3599 Asserts that a string starts with the specified <paramref name="expected"/>,
3600 including any leading or trailing whitespace, with the exception of the casing.
3601 </summary>
3602 <param name="expected">The string that the subject is expected to start with.</param>
3603 <param name="reason">
3604 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3605 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3606 </param>
3607 <param name="reasonArgs">
3608 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3609 </param>
3610 </member>
3611 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWith(System.String)">
3612 <summary>
3613 Asserts that a string ends exactly with the specified <paramref name="expected"/>,
3614 including the casing and any leading or trailing whitespace.
3615 </summary>
3616 <param name="expected">The string that the subject is expected to end with.</param>
3617 </member>
3618 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWith(System.String,System.String,System.Object[])">
3619 <summary>
3620 Asserts that a string ends exactly with the specified <paramref name="expected"/>,
3621 including the casing and any leading or trailing whitespace.
3622 </summary>
3623 <param name="expected">The string that the subject is expected to end with.</param>
3624 <param name="reason">
3625 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3626 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3627 </param>
3628 <param name="reasonArgs">
3629 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3630 </param>
3631 </member>
3632 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWithEquivalent(System.String)">
3633 <summary>
3634 Asserts that a string ends with the specified <paramref name="expected"/>,
3635 including any leading or trailing whitespace, with the exception of the casing.
3636 </summary>
3637 <param name="expected">The string that the subject is expected to end with.</param>
3638 </member>
3639 <member name="M:FluentAssertions.Assertions.StringAssertions.EndWithEquivalent(System.String,System.String,System.Object[])">
3640 <summary>
3641 Asserts that a string ends with the specified <paramref name="expected"/>,
3642 including any leading or trailing whitespace, with the exception of the casing.
3643 </summary>
3644 <param name="expected">The string that the subject is expected to end with.</param>
3645 <param name="reason">
3646 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3647 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3648 </param>
3649 <param name="reasonArgs">
3650 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3651 </param>
3652 </member>
3653 <member name="M:FluentAssertions.Assertions.StringAssertions.Contain(System.String)">
3654 <summary>
3655 Asserts that a string contains another (fragment of a) string.
3656 </summary>
3657 <param name="expected">
3658 The (fragement of a) string that the current string should contain.
3659 </param>
3660 </member>
3661 <member name="M:FluentAssertions.Assertions.StringAssertions.Contain(System.String,System.String,System.Object[])">
3662 <summary>
3663 Asserts that a string contains another (fragment of a) string.
3664 </summary>
3665 <param name="expected">
3666 The (fragement of a) string that the current string should contain.
3667 </param>
3668 <param name="reason">
3669 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3670 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3671 </param>
3672 <param name="reasonArgs">
3673 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3674 </param>
3675 </member>
3676 <member name="M:FluentAssertions.Assertions.StringAssertions.ContainEquivalentOf(System.String)">
3677 <summary>
3678 Asserts that a string contains the specified <paramref name="expected"/>,
3679 including any leading or trailing whitespace, with the exception of the casing.
3680 </summary>
3681 <param name="expected">The string that the subject is expected to contain.</param>
3682 </member>
3683 <member name="M:FluentAssertions.Assertions.StringAssertions.ContainEquivalentOf(System.String,System.String,System.Object[])">
3684 <summary>
3685 Asserts that a string contains the specified <paramref name="expected"/>,
3686 including any leading or trailing whitespace, with the exception of the casing.
3687 </summary>
3688 <param name="expected">The string that the subject is expected to contain.</param>
3689 <param name="reason">
3690 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3691 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3692 </param>
3693 <param name="reasonArgs">
3694 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3695 </param>
3696 </member>
3697 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContain(System.String)">
3698 <summary>
3699 Asserts that a string does not contain another (fragment of a) string.
3700 </summary>
3701 <param name="expected">
3702 The (fragement of a) string that the current string should not contain.
3703 </param>
3704 </member>
3705 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContain(System.String,System.String,System.Object[])">
3706 <summary>
3707 Asserts that a string does not contain another (fragment of a) string.
3708 </summary>
3709 <param name="expected">
3710 The (fragement of a) string that the current string should not contain.
3711 </param>
3712 <param name="reason">
3713 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3714 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3715 </param>
3716 <param name="reasonArgs">
3717 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3718 </param>
3719 </member>
3720 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContainEquivalentOf(System.String)">
3721 <summary>
3722 Asserts that a string does not contain the specified <paramref name="unexpected"/> string,
3723 including any leading or trailing whitespace, with the exception of the casing.
3724 </summary>
3725 <param name="unexpected">The string that the subject is not expected to contain.</param>
3726 </member>
3727 <member name="M:FluentAssertions.Assertions.StringAssertions.NotContainEquivalentOf(System.String,System.String,System.Object[])">
3728 <summary>
3729 Asserts that a string does not contain the specified <paramref name="unexpected"/> string,
3730 including any leading or trailing whitespace, with the exception of the casing.
3731 </summary>
3732 <param name="unexpected">The string that the subject is not expected to contain.</param>
3733 <param name="reason">
3734 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3735 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3736 </param>
3737 <param name="reasonArgs">
3738 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3739 </param>
3740 </member>
3741 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEmpty">
3742 <summary>
3743 Asserts that a string is <see cref="F:System.String.Empty"/>.
3744 </summary>
3745 </member>
3746 <member name="M:FluentAssertions.Assertions.StringAssertions.BeEmpty(System.String,System.Object[])">
3747 <summary>
3748 Asserts that a string is <see cref="F:System.String.Empty"/>.
3749 </summary>
3750 <param name="reason">
3751 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3752 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3753 </param>
3754 <param name="reasonArgs">
3755 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3756 </param>
3757 </member>
3758 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeEmpty">
3759 <summary>
3760 Asserts that a string is not <see cref="F:System.String.Empty"/>.
3761 </summary>
3762 </member>
3763 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeEmpty(System.String,System.Object[])">
3764 <summary>
3765 Asserts that a string is not <see cref="F:System.String.Empty"/>.
3766 </summary>
3767 <param name="reason">
3768 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3769 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3770 </param>
3771 <param name="reasonArgs">
3772 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3773 </param>
3774 </member>
3775 <member name="M:FluentAssertions.Assertions.StringAssertions.HaveLength(System.Int32)">
3776 <summary>
3777 Asserts that a string has the specified <paramref name="expected"/> length.
3778 </summary>
3779 <param name="expected">The expected length of the string</param>
3780 </member>
3781 <member name="M:FluentAssertions.Assertions.StringAssertions.HaveLength(System.Int32,System.String,System.Object[])">
3782 <summary>
3783 Asserts that a string has the specified <paramref name="expected"/> length.
3784 </summary>
3785 <param name="expected">The expected length of the string</param>
3786 <param name="reason">
3787 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3788 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3789 </param>
3790 <param name="reasonArgs">
3791 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3792 </param>
3793 </member>
3794 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNull">
3795 <summary>
3796 Asserts that a string is <c>null</c>.
3797 </summary>
3798 </member>
3799 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNull(System.String,System.Object[])">
3800 <summary>
3801 Asserts that a string is <c>null</c>.
3802 </summary>
3803 <param name="reason">
3804 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3805 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3806 </param>
3807 <param name="reasonArgs">
3808 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3809 </param>
3810 </member>
3811 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNull">
3812 <summary>
3813 Asserts that a string is not <c>null</c>.
3814 </summary>
3815 </member>
3816 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNull(System.String,System.Object[])">
3817 <summary>
3818 Asserts that a string is not <c>null</c>.
3819 </summary>
3820 <param name="reason">
3821 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3822 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3823 </param>
3824 <param name="reasonArgs">
3825 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
3826 </param>
3827 </member>
3828 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNullOrEmpty">
3829 <summary>
3830 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/>.
3831 </summary>
3832 </member>
3833 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeNullOrEmpty(System.String,System.Object[])">
3834 <summary>
3835 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/>.
3836 </summary>
3837 <param name="reason">
3838 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3839 start with the word <i>because</i>, it is prepended to the message.
3840 </param>
3841 <param name="reasonArgs">
3842 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3843 </param>
3844 </member>
3845 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNullOrEmpty">
3846 <summary>
3847 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/>.
3848 </summary>
3849 </member>
3850 <member name="M:FluentAssertions.Assertions.StringAssertions.BeNullOrEmpty(System.String,System.Object[])">
3851 <summary>
3852 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/>.
3853 </summary>
3854 <param name="reason">
3855 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3856 start with the word <i>because</i>, it is prepended to the message.
3857 </param>
3858 <param name="reasonArgs">
3859 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3860 </param>
3861 </member>
3862 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeBlank">
3863 <summary>
3864 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/> nor white space
3865 </summary>
3866 </member>
3867 <member name="M:FluentAssertions.Assertions.StringAssertions.NotBeBlank(System.String,System.Object[])">
3868 <summary>
3869 Asserts that a string is neither <c>null</c> nor <see cref="F:System.String.Empty"/> nor white space
3870 </summary>
3871 <param name="reason">
3872 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3873 start with the word <i>because</i>, it is prepended to the message.
3874 </param>
3875 <param name="reasonArgs">
3876 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3877 </param>
3878 </member>
3879 <member name="M:FluentAssertions.Assertions.StringAssertions.BeBlank">
3880 <summary>
3881 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/> or white space
3882 </summary>
3883 </member>
3884 <member name="M:FluentAssertions.Assertions.StringAssertions.BeBlank(System.String,System.Object[])">
3885 <summary>
3886 Asserts that a string is either <c>null</c> or <see cref="F:System.String.Empty"/> or white space
3887 </summary>
3888 <param name="reason">
3889 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3890 start with the word <i>because</i>, it is prepended to the message.
3891 </param>
3892 <param name="reasonArgs">
3893 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3894 </param>
3895 </member>
3896 <member name="P:FluentAssertions.Assertions.StringAssertions.Subject">
3897 <summary>
3898 Gets the object which value is being asserted.
3899 </summary>
3900 </member>
3901 <member name="T:FluentAssertions.Assertions.StringValidator">
3902 <summary>
3903 Dedicated class for comparing two strings and generating consistent error messages.
3904 </summary>
3905 </member>
3906 <member name="P:FluentAssertions.Assertions.StringWildcardMatchingValidator.Negate">
3907 <summary>
3908 Gets or sets a value indicating whether the subject should not match the pattern.
3909 </summary>
3910 </member>
3911 <member name="P:FluentAssertions.Assertions.StringWildcardMatchingValidator.IgnoreCase">
3912 <summary>
3913 Gets or sets a value indicating whether the matching process should ignore any casing difference.
3914 </summary>
3915 </member>
3916 <member name="T:FluentAssertions.Assertions.TimeSpanAssertions">
3917 <summary>
3918 Contains a number of methods to assert that two <see cref="T:System.DateTime"/> objects differ in the expected way.
3919 </summary>
3920 <remarks>
3921 You can use the <see cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/> and <see cref="T:FluentAssertions.Common.TimeSpanConversionExtensions"/> for a more fluent
3922 way of specifying a <see cref="T:System.DateTime"/> or a <see cref="T:System.TimeSpan"/>.
3923 </remarks>
3924 </member>
3925 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.Before(System.DateTime)">
3926 <summary>
3927 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time before another <see cref="T:System.DateTime"/>.
3928 </summary>
3929 <param name="target">
3930 The <see cref="T:System.DateTime"/> to compare the subject with.
3931 </param>
3932 </member>
3933 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.Before(System.DateTime,System.String,System.Object[])">
3934 <summary>
3935 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time before another <see cref="T:System.DateTime"/>.
3936 </summary>
3937 <param name="target">
3938 The <see cref="T:System.DateTime"/> to compare the subject with.
3939 </param>
3940 <param name="reason">
3941 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3942 start with the word <i>because</i>, it is prepended to the message.
3943 </param>
3944 <param name="reasonArgs">
3945 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3946 </param>
3947 </member>
3948 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.After(System.DateTime)">
3949 <summary>
3950 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time after another <see cref="T:System.DateTime"/>.
3951 </summary>
3952 <param name="target">
3953 The <see cref="T:System.DateTime"/> to compare the subject with.
3954 </param>
3955 </member>
3956 <member name="M:FluentAssertions.Assertions.TimeSpanAssertions.After(System.DateTime,System.String,System.Object[])">
3957 <summary>
3958 Asserts that a <see cref="T:System.DateTime"/> occurs a specified amount of time after another <see cref="T:System.DateTime"/>.
3959 </summary>
3960 <param name="target">
3961 The <see cref="T:System.DateTime"/> to compare the subject with.
3962 </param>
3963 <param name="reason">
3964 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
3965 start with the word <i>because</i>, it is prepended to the message.
3966 </param>
3967 <param name="reasonArgs">
3968 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
3969 </param>
3970 </member>
3971 <member name="T:FluentAssertions.Assertions.TimeSpanAssertions.TimeSpanPredicate">
3972 <summary>
3973 Provides the logic and the display text for a <see cref="T:FluentAssertions.Assertions.TimeSpanCondition"/>.
3974 </summary>
3975 </member>
3976 <member name="T:FluentAssertions.Assertions.TypeAssertions">
3977 <summary>
3978 Contains a number of methods to assert that a <see cref="T:System.Type"/> meets certain expectations.
3979 </summary>
3980 </member>
3981 <member name="M:FluentAssertions.Assertions.TypeAssertions.#ctor(System.Type)">
3982 <summary>
3983 Initializes a new instance of the <see cref="T:System.Object" /> class.
3984 </summary>
3985 </member>
3986 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be``1">
3987 <summary>
3988 Asserts that the current type is equal to the specified <typeparamref name="TExpected"/> type.
3989 </summary>
3990 </member>
3991 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be``1(System.String,System.Object[])">
3992 <summary>
3993 Asserts that the current type is equal to the specified <typeparamref name="TExpected"/> type.
3994 </summary>
3995 <param name="reason">
3996 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
3997 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
3998 </param>
3999 <param name="reasonArgs">
4000 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4001 </param>
4002 </member>
4003 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be(System.Type)">
4004 <summary>
4005 Asserts that the current type is equal to the specified <paramref name="expected"/> type.
4006 </summary>
4007 <param name="expected">The expected type</param>
4008 </member>
4009 <member name="M:FluentAssertions.Assertions.TypeAssertions.Be(System.Type,System.String,System.Object[])">
4010 <summary>
4011 Asserts that the current type is equal to the specified <paramref name="expected"/> type.
4012 </summary>
4013 <param name="expected">The expected type</param>
4014 <param name="reason">
4015 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4016 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4017 </param>
4018 <param name="reasonArgs">
4019 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4020 </param>
4021 </member>
4022 <member name="M:FluentAssertions.Assertions.TypeAssertions.GetFailureMessageIfTypesAreDifferent(System.Type,System.Type)">
4023 <summary>
4024 Creates an error message in case the specifed <paramref name="actual"/> type differs from the
4025 <paramref name="expected"/> type.
4026 </summary>
4027 <returns>
4028 An empty <see cref="T:System.String"/> if the two specified types are the same, or an error message that describes that
4029 the two specified types are not the same.
4030 </returns>
4031 </member>
4032 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe``1">
4033 <summary>
4034 Asserts that the current type is not equal to the specified <typeparamref name="TUnexpected"/> type.
4035 </summary>
4036 </member>
4037 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe``1(System.String,System.Object[])">
4038 <summary>
4039 Asserts that the current type is not equal to the specified <typeparamref name="TUnexpected"/> type.
4040 </summary>
4041 <param name="reason">
4042 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4043 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4044 </param>
4045 <param name="reasonArgs">
4046 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4047 </param>
4048 </member>
4049 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe(System.Type)">
4050 <summary>
4051 Asserts that the current type is not equal to the specified <paramref name="unexpected"/> type.
4052 </summary>
4053 <param name="unexpected">The unexpected type</param>
4054 </member>
4055 <member name="M:FluentAssertions.Assertions.TypeAssertions.NotBe(System.Type,System.String,System.Object[])">
4056 <summary>
4057 Asserts that the current type is not equal to the specified <paramref name="unexpected"/> type.
4058 </summary>
4059 <param name="unexpected">The unexpected type</param>
4060 <param name="reason">
4061 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4062 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4063 </param>
4064 <param name="reasonArgs">
4065 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4066 </param>
4067 </member>
4068 <member name="M:FluentAssertions.Assertions.TypeAssertions.BeDecoratedWith``1">
4069 <summary>
4070 Asserts that the <see cref="T:System.Type"/> is decorated with the specified <typeparamref name="TAttribute"/>.
4071 </summary>
4072 </member>
4073 <member name="M:FluentAssertions.Assertions.TypeAssertions.BeDecoratedWith``1(System.String,System.Object[])">
4074 <summary>
4075 Asserts that the <see cref="T:System.Type"/> is decorated with the specified <typeparamref name="TAttribute"/>.
4076 </summary>
4077 <param name="reason">
4078 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4079 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4080 </param>
4081 <param name="reasonArgs">
4082 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4083 </param>
4084 </member>
4085 <member name="P:FluentAssertions.Assertions.TypeAssertions.Subject">
4086 <summary>
4087 Gets the object which value is being asserted.
4088 </summary>
4089 </member>
4090 <member name="T:FluentAssertions.Assertions.TypeExtensions">
4091 <summary>
4092 Extension methods for getting method and property selectors for a type.
4093 </summary>
4094 </member>
4095 <member name="M:FluentAssertions.Assertions.TypeExtensions.Types(System.Reflection.Assembly)">
4096 <summary>
4097 Returns the types that are visible outside the specified <see cref="T:System.Reflection.Assembly"/>.
4098 </summary>
4099 </member>
4100 <member name="M:FluentAssertions.Assertions.TypeExtensions.Methods(System.Type)">
4101 <summary>
4102 Returns a method selector for the current <see cref="T:System.Type"/>.
4103 </summary>
4104 </member>
4105 <member name="M:FluentAssertions.Assertions.TypeExtensions.Methods(FluentAssertions.Assertions.TypeSelector)">
4106 <summary>
4107 Returns a method selector for the current <see cref="T:System.Type"/>.
4108 </summary>
4109 </member>
4110 <member name="M:FluentAssertions.Assertions.TypeExtensions.Properties(System.Type)">
4111 <summary>
4112 Returns a property selector for the current <see cref="T:System.Type"/>.
4113 </summary>
4114 </member>
4115 <member name="M:FluentAssertions.Assertions.TypeExtensions.Properties(FluentAssertions.Assertions.TypeSelector)">
4116 <summary>
4117 Returns a property selector for the current <see cref="T:System.Type"/>.
4118 </summary>
4119 </member>
4120 <member name="T:FluentAssertions.Assertions.TypeSelector">
4121 <summary>
4122 Allows for fluent filtering a list of types.
4123 </summary>
4124 </member>
4125 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatDeriveFrom``1">
4126 <summary>
4127 Determines whether a type is a subclass of another type, but NOT the same type.
4128 </summary>
4129 </member>
4130 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatImplement``1">
4131 <summary>
4132 Determines whether a type implements an interface (but is not the interface itself).
4133 </summary>
4134 </member>
4135 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatAreDecoratedWith``1">
4136 <summary>
4137 Determines whether a type is decorated with a particular attribute.
4138 </summary>
4139 </member>
4140 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatAreInNamespace(System.String)">
4141 <summary>
4142 Determines whether the namespace of type is exactly <paramref name="namespace"/>.
4143 </summary>
4144 </member>
4145 <member name="M:FluentAssertions.Assertions.TypeSelector.ThatAreUnderNamespace(System.String)">
4146 <summary>
4147 Determines whether the namespace of type is starts with <paramref name="namespace"/>.
4148 </summary>
4149 </member>
4150 <member name="M:FluentAssertions.Assertions.TypeSelector.GetEnumerator">
4151 <summary>
4152 Returns an enumerator that iterates through the collection.
4153 </summary>
4154 <returns>
4155 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
4156 </returns>
4157 <filterpriority>1</filterpriority>
4158 </member>
4159 <member name="M:FluentAssertions.Assertions.TypeSelector.System#Collections#IEnumerable#GetEnumerator">
4160 <summary>
4161 Returns an enumerator that iterates through a collection.
4162 </summary>
4163 <returns>
4164 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
4165 </returns>
4166 <filterpriority>2</filterpriority>
4167 </member>
4168 <member name="T:FluentAssertions.Assertions.XAttributeAssertions">
4169 <summary>
4170 Contains a number of methods to assert that an <see cref="T:System.Xml.Linq.XAttribute"/> is in the expected state.
4171 </summary>
4172 </member>
4173 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.#ctor(System.Xml.Linq.XAttribute)">
4174 <summary>
4175 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.XAttributeAssertions"/> class.
4176 </summary>
4177 </member>
4178 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.Be(System.Xml.Linq.XAttribute)">
4179 <summary>
4180 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> equals the <paramref name="expected"/> attribute.
4181 </summary>
4182 <param name="expected">The expected attribute</param>
4183 </member>
4184 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.Be(System.Xml.Linq.XAttribute,System.String,System.Object[])">
4185 <summary>
4186 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> equals the <paramref name="expected"/> attribute.
4187 </summary>
4188 <param name="expected">The expected attribute</param>
4189 <param name="reason">
4190 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4191 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4192 </param>
4193 <param name="reasonArgs">
4194 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4195 </param>
4196 </member>
4197 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBe(System.Xml.Linq.XAttribute)">
4198 <summary>
4199 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> does not equal the <paramref name="unexpected"/> attribute,
4200 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4201 </summary>
4202 <param name="unexpected">The unexpected attribute</param>
4203 </member>
4204 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBe(System.Xml.Linq.XAttribute,System.String,System.Object[])">
4205 <summary>
4206 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> does not equal the <paramref name="unexpected"/> attribute,
4207 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4208 </summary>
4209 <param name="unexpected">The unexpected attribute</param>
4210 <param name="reason">
4211 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4212 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4213 </param>
4214 <param name="reasonArgs">
4215 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4216 </param>
4217 </member>
4218 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.BeNull">
4219 <summary>
4220 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is <c>null</c>.
4221 </summary>
4222 </member>
4223 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.BeNull(System.String,System.Object[])">
4224 <summary>
4225 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is <c>null</c>.
4226 </summary>
4227 <param name="reason">
4228 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4229 start with the word <i>because</i>, it is prepended to the message.
4230 </param>
4231 <param name="reasonArgs">
4232 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4233 </param>
4234 </member>
4235 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBeNull">
4236 <summary>
4237 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is not <c>null</c>.
4238 </summary>
4239 </member>
4240 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.NotBeNull(System.String,System.Object[])">
4241 <summary>
4242 Asserts that the <see cref="T:System.Xml.Linq.XAttribute"/> is not <c>null</c>.
4243 </summary>
4244 <param name="reason">
4245 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4246 start with the word <i>because</i>, it is prepended to the message.
4247 </param>
4248 <param name="reasonArgs">
4249 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4250 </param>
4251 </member>
4252 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.HaveValue(System.String)">
4253 <summary>
4254 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> has the specified <paramref name="expected"/> value.
4255 </summary>
4256 <param name="expected">The expected value</param>
4257 </member>
4258 <member name="M:FluentAssertions.Assertions.XAttributeAssertions.HaveValue(System.String,System.String,System.Object[])">
4259 <summary>
4260 Asserts that the current <see cref="T:System.Xml.Linq.XAttribute"/> has the specified <paramref name="expected"/> value.
4261 </summary>
4262 <param name="expected">The expected value</param>
4263 <param name="reason">
4264 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4265 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4266 </param>
4267 <param name="reasonArgs">
4268 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4269 </param>
4270 </member>
4271 <member name="P:FluentAssertions.Assertions.XAttributeAssertions.Subject">
4272 <summary>
4273 Gets the object which value is being asserted.
4274 </summary>
4275 </member>
4276 <member name="T:FluentAssertions.Assertions.XDocumentAssertions">
4277 <summary>
4278 Contains a number of methods to assert that an <see cref="T:System.Xml.Linq.XDocument"/> is in the expected state.
4279 </summary>
4280 </member>
4281 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.#ctor(System.Xml.Linq.XDocument)">
4282 <summary>
4283 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.XDocumentAssertions"/> class.
4284 </summary>
4285 </member>
4286 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.Be(System.Xml.Linq.XDocument)">
4287 <summary>
4288 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> equals the <paramref name="expected"/> document,
4289 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4290 </summary>
4291 <param name="expected">The expected document</param>
4292 </member>
4293 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.Be(System.Xml.Linq.XDocument,System.String,System.Object[])">
4294 <summary>
4295 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> equals the <paramref name="expected"/> document,
4296 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4297 </summary>
4298 <param name="expected">The expected document</param>
4299 <param name="reason">
4300 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4301 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4302 </param>
4303 <param name="reasonArgs">
4304 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4305 </param>
4306 </member>
4307 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBe(System.Xml.Linq.XDocument)">
4308 <summary>
4309 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> does not equal the <paramref name="unexpected"/> document,
4310 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4311 </summary>
4312 <param name="unexpected">The unexpected document</param>
4313 </member>
4314 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBe(System.Xml.Linq.XDocument,System.String,System.Object[])">
4315 <summary>
4316 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> does not equal the <paramref name="unexpected"/> document,
4317 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4318 </summary>
4319 <param name="unexpected">The unexpected document</param>
4320 <param name="reason">
4321 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4322 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4323 </param>
4324 <param name="reasonArgs">
4325 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4326 </param>
4327 </member>
4328 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.BeNull">
4329 <summary>
4330 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is <c>null</c>.
4331 </summary>
4332 </member>
4333 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.BeNull(System.String,System.Object[])">
4334 <summary>
4335 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is <c>null</c>.
4336 </summary>
4337 <param name="reason">
4338 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4339 start with the word <i>because</i>, it is prepended to the message.
4340 </param>
4341 <param name="reasonArgs">
4342 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4343 </param>
4344 </member>
4345 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBeNull">
4346 <summary>
4347 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is not <c>null</c>.
4348 </summary>
4349 </member>
4350 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.NotBeNull(System.String,System.Object[])">
4351 <summary>
4352 Asserts that the <see cref="T:System.Xml.Linq.XDocument"/> is not <c>null</c>.
4353 </summary>
4354 <param name="reason">
4355 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4356 start with the word <i>because</i>, it is prepended to the message.
4357 </param>
4358 <param name="reasonArgs">
4359 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4360 </param>
4361 </member>
4362 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveRoot(System.String)">
4363 <summary>
4364 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> has a root element with the specified
4365 <paramref name="expected"/> name.
4366 </summary>
4367 <param name="expected">The name of the expected root element of the current document.</param>
4368 </member>
4369 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveRoot(System.String,System.String,System.Object[])">
4370 <summary>
4371 Asserts that the current <see cref="T:System.Xml.Linq.XDocument"/> has a root element with the specified
4372 <paramref name="expected"/> name.
4373 </summary>
4374 <param name="expected">The name of the expected root element of the current document.</param>
4375 <param name="reason">
4376 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4377 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4378 </param>
4379 <param name="reasonArgs">
4380 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4381 </param>
4382 </member>
4383 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveElement(System.String)">
4384 <summary>
4385 Asserts that the <see cref="P:System.Xml.Linq.XDocument.Root"/> element of the current <see cref="T:System.Xml.Linq.XDocument"/> has a direct
4386 child element with the specified <paramref name="expected"/> name.
4387 </summary>
4388 <param name="expected">
4389 The name of the expected child element of the current document's Root <see cref="P:System.Xml.Linq.XDocument.Root"/> element.
4390 </param>
4391 </member>
4392 <member name="M:FluentAssertions.Assertions.XDocumentAssertions.HaveElement(System.String,System.String,System.Object[])">
4393 <summary>
4394 Asserts that the <see cref="P:System.Xml.Linq.XDocument.Root"/> element of the current <see cref="T:System.Xml.Linq.XDocument"/> has a direct
4395 child element with the specified <paramref name="expected"/> name.
4396 </summary>
4397 <param name="expected">
4398 The name of the expected child element of the current document's Root <see cref="P:System.Xml.Linq.XDocument.Root"/> element.
4399 </param>
4400 <param name="reason">
4401 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4402 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4403 </param>
4404 <param name="reasonArgs">
4405 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4406 </param>
4407 </member>
4408 <member name="P:FluentAssertions.Assertions.XDocumentAssertions.Subject">
4409 <summary>
4410 Gets the object which value is being asserted.
4411 </summary>
4412 </member>
4413 <member name="T:FluentAssertions.Assertions.XElementAssertions">
4414 <summary>
4415 Contains a number of methods to assert that an <see cref="T:System.Xml.Linq.XElement"/> is in the expected state.
4416 </summary>
4417 </member>
4418 <member name="M:FluentAssertions.Assertions.XElementAssertions.#ctor(System.Xml.Linq.XElement)">
4419 <summary>
4420 Initializes a new instance of the <see cref="T:FluentAssertions.Assertions.XElementAssertions"/> class.
4421 </summary>
4422 </member>
4423 <member name="M:FluentAssertions.Assertions.XElementAssertions.Be(System.Xml.Linq.XElement)">
4424 <summary>
4425 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> equals the <paramref name="expected"/> element.
4426 </summary>
4427 <param name="expected">The expected element</param>
4428 </member>
4429 <member name="M:FluentAssertions.Assertions.XElementAssertions.Be(System.Xml.Linq.XElement,System.String,System.Object[])">
4430 <summary>
4431 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> equals the <paramref name="expected"/> element.
4432 </summary>
4433 <param name="expected">The expected element</param>
4434 <param name="reason">
4435 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4436 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4437 </param>
4438 <param name="reasonArgs">
4439 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4440 </param>
4441 </member>
4442 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBe(System.Xml.Linq.XElement)">
4443 <summary>
4444 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> does not equal the <paramref name="unexpected"/> element,
4445 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4446 </summary>
4447 <param name="unexpected">The unexpected element</param>
4448 </member>
4449 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBe(System.Xml.Linq.XElement,System.String,System.Object[])">
4450 <summary>
4451 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> does not equal the <paramref name="unexpected"/> element,
4452 using its <see cref="M:System.Object.Equals(System.Object)"/> implementation.
4453 </summary>
4454 <param name="unexpected">The unexpected element</param>
4455 <param name="reason">
4456 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4457 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4458 </param>
4459 <param name="reasonArgs">
4460 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4461 </param>
4462 </member>
4463 <member name="M:FluentAssertions.Assertions.XElementAssertions.BeNull">
4464 <summary>
4465 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is <c>null</c>.
4466 </summary>
4467 </member>
4468 <member name="M:FluentAssertions.Assertions.XElementAssertions.BeNull(System.String,System.Object[])">
4469 <summary>
4470 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is <c>null</c>.
4471 </summary>
4472 <param name="reason">
4473 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4474 start with the word <i>because</i>, it is prepended to the message.
4475 </param>
4476 <param name="reasonArgs">
4477 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4478 </param>
4479 </member>
4480 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBeNull">
4481 <summary>
4482 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is not <c>null</c>.
4483 </summary>
4484 </member>
4485 <member name="M:FluentAssertions.Assertions.XElementAssertions.NotBeNull(System.String,System.Object[])">
4486 <summary>
4487 Asserts that the <see cref="T:System.Xml.Linq.XElement"/> is not <c>null</c>.
4488 </summary>
4489 <param name="reason">
4490 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4491 start with the word <i>because</i>, it is prepended to the message.
4492 </param>
4493 <param name="reasonArgs">
4494 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4495 </param>
4496 </member>
4497 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveAttribute(System.String,System.String)">
4498 <summary>
4499 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has an attribute with the specified <paramref name="expectedName"/>
4500 and <paramref name="expectedValue"/>.
4501 </summary>
4502 <param name="expectedName">The name of the expected attribute</param>
4503 <param name="expectedValue">The value of the expected attribute</param>
4504 </member>
4505 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveAttribute(System.String,System.String,System.String,System.Object[])">
4506 <summary>
4507 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has an attribute with the specified <paramref name="expectedName"/>
4508 and <paramref name="expectedValue"/>.
4509 </summary>
4510 <param name="expectedName">The name of the expected attribute</param>
4511 <param name="expectedValue">The value of the expected attribute</param>
4512 <param name="reason">
4513 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4514 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4515 </param>
4516 <param name="reasonArgs">
4517 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4518 </param>
4519 </member>
4520 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveElement(System.String)">
4521 <summary>
4522 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has a direct child element with the specified
4523 <paramref name="expected"/> name.
4524 </summary>
4525 <param name="expected">The name of the expected child element</param>
4526 </member>
4527 <member name="M:FluentAssertions.Assertions.XElementAssertions.HaveElement(System.String,System.String,System.Object[])">
4528 <summary>
4529 Asserts that the current <see cref="T:System.Xml.Linq.XElement"/> has a direct child element with the specified
4530 <paramref name="expected"/> name.
4531 </summary>
4532 <param name="expected">The name of the expected child element</param>
4533 <param name="reason">
4534 A formatted phrase as is supported by <see cref="M:System.String.Format(System.String,System.Object[])"/> explaining why the assertion
4535 is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
4536 </param>
4537 <param name="reasonArgs">
4538 Zero or more objects to format using the placeholders in <see cref="!:reason"/>.
4539 </param>
4540 </member>
4541 <member name="P:FluentAssertions.Assertions.XElementAssertions.Subject">
4542 <summary>
4543 Gets the object which value is being asserted.
4544 </summary>
4545 </member>
4546 <member name="M:FluentAssertions.Common.Extensions.IndexOfFirstMismatch(System.String,System.String)">
4547 <summary>
4548 Finds the first index at which the <paramref name="value"/> does not match the <paramref name="expected"/>
4549 string anymore, including the exact casing.
4550 </summary>
4551 </member>
4552 <member name="M:FluentAssertions.Common.Extensions.IndexOfFirstMismatch(System.String,System.String,System.StringComparison)">
4553 <summary>
4554 Finds the first index at which the <paramref name="value"/> does not match the <paramref name="expected"/>
4555 string anymore, accounting for the specified <paramref name="stringComparison"/>.
4556 </summary>
4557 </member>
4558 <member name="M:FluentAssertions.Common.Extensions.IndexedSegmentAt(System.String,System.Int32)">
4559 <summary>
4560 Gets the quoted three characters at the specified index of a string, including the index itself.
4561 </summary>
4562 </member>
4563 <member name="M:FluentAssertions.Common.Extensions.FirstLine(System.String)">
4564 <summary>
4565 Replaces all characters that might conflict with formatting placeholders and newlines with their escaped counterparts.
4566 </summary>
4567 </member>
4568 <member name="M:FluentAssertions.Common.Extensions.Escape(System.String)">
4569 <summary>
4570 Replaces all characters that might conflict with formatting placeholders and newlines with their escaped counterparts.
4571 </summary>
4572 </member>
4573 <member name="T:FluentAssertions.Common.FluentDateTimeExtensions">
4574 <summary>
4575 Extension methods on <see cref="T:System.Int32"/> to allow for a more fluent way of specifying a <see cref="T:System.DateTime"/>.
4576 </summary>
4577 <example>
4578 Instead of<br/>
4579 <br/>
4580 new DateTime(2011, 3, 10)<br/>
4581 <br/>
4582 you can write 3.March(2011)<br/>
4583 <br/>
4584 Or even<br/>
4585 <br/>
4586 3.March(2011).At(09, 30)
4587 </example>
4588 <seealso cref="T:FluentAssertions.Common.TimeSpanConversionExtensions"/>
4589 </member>
4590 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.January(System.Int32,System.Int32)">
4591 <summary>
4592 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4593 in the month January.
4594 </summary>
4595 </member>
4596 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.February(System.Int32,System.Int32)">
4597 <summary>
4598 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4599 in the month February.
4600 </summary>
4601 </member>
4602 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.March(System.Int32,System.Int32)">
4603 <summary>
4604 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4605 in the month March.
4606 </summary>
4607 </member>
4608 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.April(System.Int32,System.Int32)">
4609 <summary>
4610 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4611 in the month April.
4612 </summary>
4613 </member>
4614 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.May(System.Int32,System.Int32)">
4615 <summary>
4616 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4617 in the month May.
4618 </summary>
4619 </member>
4620 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.June(System.Int32,System.Int32)">
4621 <summary>
4622 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4623 in the month June.
4624 </summary>
4625 </member>
4626 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.July(System.Int32,System.Int32)">
4627 <summary>
4628 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4629 in the month July.
4630 </summary>
4631 </member>
4632 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.August(System.Int32,System.Int32)">
4633 <summary>
4634 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4635 in the month August.
4636 </summary>
4637 </member>
4638 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.September(System.Int32,System.Int32)">
4639 <summary>
4640 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4641 in the month September.
4642 </summary>
4643 </member>
4644 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.October(System.Int32,System.Int32)">
4645 <summary>
4646 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4647 in the month October.
4648 </summary>
4649 </member>
4650 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.November(System.Int32,System.Int32)">
4651 <summary>
4652 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4653 in the month November.
4654 </summary>
4655 </member>
4656 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.December(System.Int32,System.Int32)">
4657 <summary>
4658 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="day"/> and <paramref name="year"/>
4659 in the month December.
4660 </summary>
4661 </member>
4662 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.At(System.DateTime,System.TimeSpan)">
4663 <summary>
4664 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="date"/> and <paramref name="time"/>.
4665 </summary>
4666 </member>
4667 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.At(System.DateTime,System.Int32,System.Int32,System.Int32)">
4668 <summary>
4669 Returns a new <see cref="T:System.DateTime"/> value for the specified <paramref name="date"/> and time with the specified
4670 <paramref name="hours"/>, <paramref name="minutes"/> and optionally <paramref name="seconds"/>.
4671 </summary>
4672 </member>
4673 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.Before(System.TimeSpan,System.DateTime)">
4674 <summary>
4675 Returns a new <see cref="T:System.DateTime"/> value that is the current <see cref="T:System.TimeSpan"/> before the
4676 specified <paramref name="sourceDateTime"/>.
4677 </summary>
4678 </member>
4679 <member name="M:FluentAssertions.Common.FluentDateTimeExtensions.After(System.TimeSpan,System.DateTime)">
4680 <summary>
4681 Returns a new <see cref="T:System.DateTime"/> value that is the current <see cref="T:System.TimeSpan"/> after the
4682 specified <paramref name="sourceDateTime"/>.
4683 </summary>
4684 </member>
4685 <member name="T:FluentAssertions.Common.ObjectAlreadyTrackedException">
4686 <summary>
4687 Is thrown when the <see cref="T:FluentAssertions.Common.UniqueObjectTracker"/> detects an object that was already processed.
4688 </summary>
4689 </member>
4690 <member name="T:FluentAssertions.Common.TimeSpanConversionExtensions">
4691 <summary>
4692 Extension methods on <see cref="T:System.Int32"/> to allow for a more fluent way of specifying a <see cref="T:System.TimeSpan"/>.
4693 </summary>
4694 <example>
4695 Instead of<br/>
4696 <br/>
4697 TimeSpan.FromHours(12)<br/>
4698 <br/>
4699 you can write<br/>
4700 <br/>
4701 12.Hours()<br/>
4702 <br/>
4703 Or even<br/>
4704 <br/>
4705 12.Hours().And(30.Minutes()).
4706 </example>
4707 <seealso cref="T:FluentAssertions.Common.FluentDateTimeExtensions"/>
4708 </member>
4709 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Milliseconds(System.Int32)">
4710 <summary>
4711 Returns a <see cref="T:System.TimeSpan"/> based on a number of milliseconds.
4712 </summary>
4713 </member>
4714 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Seconds(System.Int32)">
4715 <summary>
4716 Returns a <see cref="T:System.TimeSpan"/> based on a number of seconds.
4717 </summary>
4718 </member>
4719 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Seconds(System.Int32,System.TimeSpan)">
4720 <summary>
4721 Returns a <see cref="T:System.TimeSpan"/> based on a number of seconds, and add the specified
4722 <paramref name="offset"/>.
4723 </summary>
4724 </member>
4725 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Minutes(System.Int32)">
4726 <summary>
4727 Returns a <see cref="T:System.TimeSpan"/> based on a number of minutes.
4728 </summary>
4729 </member>
4730 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Minutes(System.Int32,System.TimeSpan)">
4731 <summary>
4732 Returns a <see cref="T:System.TimeSpan"/> based on a number of minutes, and add the specified
4733 <paramref name="offset"/>.
4734 </summary>
4735 </member>
4736 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Hours(System.Int32)">
4737 <summary>
4738 Returns a <see cref="T:System.TimeSpan"/> based on a number of hours.
4739 </summary>
4740 </member>
4741 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Hours(System.Int32,System.TimeSpan)">
4742 <summary>
4743 Returns a <see cref="T:System.TimeSpan"/> based on a number of hours, and add the specified
4744 <paramref name="offset"/>.
4745 </summary>
4746 </member>
4747 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Days(System.Int32)">
4748 <summary>
4749 Returns a <see cref="T:System.TimeSpan"/> based on a number of days.
4750 </summary>
4751 </member>
4752 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.Days(System.Int32,System.TimeSpan)">
4753 <summary>
4754 Returns a <see cref="T:System.TimeSpan"/> based on a number of days, and add the specified
4755 <paramref name="offset"/>.
4756 </summary>
4757 </member>
4758 <member name="M:FluentAssertions.Common.TimeSpanConversionExtensions.And(System.TimeSpan,System.TimeSpan)">
4759 <summary>
4760 Convenience method for chaining multiple calls to the methods provided by this class.
4761 </summary>
4762 <example>
4763 23.Hours().And(59.Minutes())
4764 </example>
4765 </member>
4766 <member name="T:FluentAssertions.Common.UniqueObjectTracker">
4767 <summary>
4768 Simple class for detecting an attempt to process an object that were already processed.
4769 </summary>
4770 </member>
4771 <member name="M:FluentAssertions.Common.UniqueObjectTracker.Track(System.Object)">
4772 <summary>
4773 Tracks the specified reference but throws an <see cref="T:FluentAssertions.Common.ObjectAlreadyTrackedException"/>
4774 if that reference was already tracked.
4775 </summary>
4776 </member>
4777 <member name="T:FluentAssertions.EventMonitoring.EventMonitoringExtensions">
4778 <summary>
4779 Provides extension methods for monitoring and querying events.
4780 </summary>
4781 </member>
4782 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)">
4783 <summary>
4784 Starts monitoring an object for its <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> events.
4785 </summary>
4786 <exception cref="T:System.ArgumentNullException">Thrown if eventSource is Null.</exception>
4787 </member>
4788 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}})">
4789 <summary>
4790 Asserts that an object has raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property.
4791 </summary>
4792 <remarks>
4793 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can
4794 subscribe for the events of the object.
4795 </remarks>
4796 </member>
4797 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String,System.Object[])">
4798 <summary>
4799 Asserts that an object has raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property.
4800 </summary>
4801 <param name="eventSource">The object exposing the event.</param>
4802 <param name="propertyExpression">
4803 A lambda expression referring to the property for which the property changed event should have been raised.
4804 </param>
4805 <param name="reason">
4806 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4807 start with the word <i>because</i>, it is prepended to the message.
4808 </param>
4809 <param name="reasonArgs">
4810 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4811 </param>
4812 <remarks>
4813 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can
4814 subscribe for the events of the object.
4815 </remarks>
4816 </member>
4817 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldNotRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}})">
4818 <summary>
4819 Asserts that an object has not raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property.
4820 </summary>
4821 <remarks>
4822 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can
4823 subscribe for the events of the object.
4824 </remarks>
4825 </member>
4826 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.ShouldNotRaisePropertyChangeFor``1(``0,System.Linq.Expressions.Expression{System.Func{``0,System.Object}},System.String,System.Object[])">
4827 <summary>
4828 Asserts that an object has not raised the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event for a particular property.
4829 </summary>
4830 <param name="eventSource">The object exposing the event.</param>
4831 <param name="propertyExpression">
4832 A lambda expression referring to the property for which the property changed event should have been raised.
4833 </param>
4834 <param name="reason">
4835 A formatted phrase explaining why the assertion should be satisfied. If the phrase does not
4836 start with the word <i>because</i>, it is prepended to the message.
4837 </param>
4838 <param name="reasonArgs">
4839 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
4840 </param>
4841 <remarks>
4842 You must call <see cref="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.MonitorEvents(System.ComponentModel.INotifyPropertyChanged)"/> on the same object prior to this call so that Fluent Assertions can
4843 subscribe for the events of the object.
4844 </remarks>
4845 </member>
4846 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.WithSender(FluentAssertions.EventMonitoring.IEventRecorder,System.Object)">
4847 <summary>
4848 Asserts that all occurences of the event originated from the <param name="expectedSender"/>.
4849 </summary>
4850 </member>
4851 <member name="M:FluentAssertions.EventMonitoring.EventMonitoringExtensions.WithArgs``1(FluentAssertions.EventMonitoring.IEventRecorder,System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
4852 <summary>
4853 Asserts that at least one occurrence of the event had an <see cref="T:System.EventArgs"/> object matching a predicate.
4854 </summary>
4855 </member>
4856 <member name="T:FluentAssertions.EventMonitoring.EventRecorder">
4857 <summary>
4858 Records activity for a single event.
4859 </summary>
4860 </member>
4861 <member name="T:FluentAssertions.EventMonitoring.IEventRecorder">
4862 <summary>
4863 Records raised events for one event on one object
4864 </summary>
4865 </member>
4866 <member name="M:FluentAssertions.EventMonitoring.IEventRecorder.RecordEvent(System.Object[])">
4867 <summary>
4868 Store information about a raised event
4869 </summary>
4870 <param name = "parameters">Parameters the event was raised with</param>
4871 </member>
4872 <member name="P:FluentAssertions.EventMonitoring.IEventRecorder.EventObject">
4873 <summary>
4874 The object events are recorded from
4875 </summary>
4876 </member>
4877 <member name="P:FluentAssertions.EventMonitoring.IEventRecorder.EventName">
4878 <summary>
4879 The name of the event that's recorded
4880 </summary>
4881 </member>
4882 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.#ctor(System.Object,System.String)">
4883 <summary>
4884 </summary>
4885 <param name = "eventRaiser">The object events are recorded from</param>
4886 <param name = "eventName">The name of the event that's recorded</param>
4887 </member>
4888 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.GetEnumerator">
4889 <summary>
4890 Enumerate raised events
4891 </summary>
4892 </member>
4893 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.System#Collections#IEnumerable#GetEnumerator">
4894 <summary>
4895 Enumerate raised events
4896 </summary>
4897 <returns></returns>
4898 </member>
4899 <member name="M:FluentAssertions.EventMonitoring.EventRecorder.RecordEvent(System.Object[])">
4900 <summary>
4901 Called by the auto-generated IL, to record information about a raised event.
4902 </summary>
4903 </member>
4904 <member name="P:FluentAssertions.EventMonitoring.EventRecorder.EventObject">
4905 <summary>
4906 The object events are recorded from
4907 </summary>
4908 </member>
4909 <member name="P:FluentAssertions.EventMonitoring.EventRecorder.EventName">
4910 <summary>
4911 The name of the event that's recorded
4912 </summary>
4913 </member>
4914 <member name="T:FluentAssertions.EventMonitoring.EventRecordersMap">
4915 <summary>
4916 Simple dictionary that uses a <see cref="T:System.WeakReference"/> to the event source as the key.
4917 This should ensure the Garbage Collector can still clean-up the event source object.
4918 </summary>
4919 </member>
4920 <member name="T:FluentAssertions.EventMonitoring.RecordedEvent">
4921 <summary>
4922 This class is used to store data about an intercepted event
4923 </summary>
4924 </member>
4925 <member name="M:FluentAssertions.EventMonitoring.RecordedEvent.#ctor(System.Object,System.Object[])">
4926 <summary>
4927 Default constructor stores the parameters the event was raised with
4928 </summary>
4929 </member>
4930 <member name="P:FluentAssertions.EventMonitoring.RecordedEvent.Parameters">
4931 <summary>
4932 Parameters for the event
4933 </summary>
4934 </member>
4935 <member name="T:FluentAssertions.Execute">
4936 <summary>
4937 Helper class for verifying a condition and/or throwing a test harness specific exception representing an assertion failure.
4938 </summary>
4939 </member>
4940 <member name="M:FluentAssertions.Execute.Verify(System.Func{System.Boolean},System.String,System.Object,System.Object,System.String,System.Object[])">
4941 <summary>
4942 Asserts that the supplied <paramref name = "condition" /> is met.
4943 </summary>
4944 <param name = "condition">The condition to assert.</param>
4945 <param name = "failureMessage">
4946 The message that will be used in the exception. This should describe what was expected and why. This message
4947 can contain the following three placeholders:<br />
4948 <list type = "bullet">
4949 <item>{0} = the expected value</item>
4950 <item>{1} = the actual value</item>
4951 <item>{2} = a reason explaining the expectations</item>
4952 </list><br />
4953 </param>
4954 <param name = "expected">
4955 The expected value, or <c>null</c> if there is no explicit expected value.
4956 </param>
4957 <param name = "actual">The actual value, or <c>null</c> if there is no explicit actual value.</param>
4958 <param name = "reason">Should describe the reason for the expectation.</param>
4959 <param name = "reasonArgs">Optional args for formatting placeholders in the <paramref name = "reason" />.</param>
4960 </member>
4961 <member name="M:FluentAssertions.Execute.Verify(System.Boolean,System.String,System.Object,System.Object,System.String,System.Object[])">
4962 <summary>
4963 Asserts that the supplied <paramref name = "condition" /> is met.
4964 </summary>
4965 <param name = "condition">The condition to assert.</param>
4966 <param name = "failureMessage">
4967 The message that will be used in the exception. This should describe what was expected and why. This message
4968 can contain the following three placeholders:<br />
4969 <list type = "bullet">
4970 <item>{0} = the expected value</item>
4971 <item>{1} = the actual value</item>
4972 <item>{2} = a reason explaining the expectations</item>
4973 </list><br />
4974 </param>
4975 <param name = "expected">
4976 The expected value, or <c>null</c> if there is no explicit expected value.
4977 </param>
4978 <param name = "actual">The actual value, or <c>null</c> if there is no explicit actual value.</param>
4979 <param name = "reason">Should describe the reason for the expectation.</param>
4980 <param name = "reasonArgs">Optional args for formatting placeholders in the <paramref name = "reason" />.</param>
4981 </member>
4982 <member name="M:FluentAssertions.Execute.Fail(System.String,System.Object,System.Object,System.String,System.Object[],System.Object[])">
4983 <summary>
4984 Handles an assertion failure.
4985 </summary>
4986 <param name = "failureMessage">
4987 The message that will be used in the exception. This should describe what was expected and why. This message
4988 can contain the following three placeholders:<br />
4989 <list type = "bullet">
4990 <item>{0} = the expected value</item>
4991 <item>{1} = the actual value</item>
4992 <item>{2} = a reason explaining the expectations</item>
4993 </list><br />
4994 Any additional placeholders are allowed and will be satisfied using the <paramref name = "failureMessageArgs" />.
4995 </param>
4996 <param name = "expected">
4997 The expected value, or <c>null</c> if there is no explicit expected value.
4998 </param>
4999 <param name = "actual">The actual value, or <c>null</c> if there is no explicit actual value.</param>
5000 <param name = "reason">Should describe the reason for the expectation.</param>
5001 <param name = "reasonArgs">Optional args for formatting placeholders in the <paramref name = "reason" />.</param>
5002 <param name = "failureMessageArgs">
5003 Optional arguments to satisfy any additional placeholders in the <paramref name = "failureMessage" />
5004 </param>
5005 </member>
5006 <member name="P:FluentAssertions.Execute.Verification">
5007 <summary>
5008 Gets an object that wraps and executes a conditional or unconditional verification.
5009 </summary>
5010 </member>
5011 <member name="M:FluentAssertions.Formatting.IValueFormatter.CanHandle(System.Object)">
5012 <summary>
5013 Indicates whether the current <see cref="T:FluentAssertions.Formatting.IValueFormatter"/> can handle the specified <paramref name="value"/>.
5014 </summary>
5015 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5016 <returns>
5017 <c>true</c> if the current <see cref="T:FluentAssertions.Formatting.IValueFormatter"/> can handle the specified value; otherwise, <c>false</c>.
5018 </returns>
5019 </member>
5020 <member name="M:FluentAssertions.Formatting.IValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5021 <summary>
5022 Returns a <see cref="T:System.String"/> that represents this instance.
5023 </summary>
5024 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5025 <param name="uniqueObjectTracker">
5026 An object that is passed through recursive calls and which should be used to detect circular references
5027 in the object graph that is being converted to a string representation.</param>
5028 <param name="nestedPropertyLevel">
5029 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5030 no <see cref="M:System.Object.ToString"/> override.
5031 </param>
5032 <returns>
5033 A <see cref="T:System.String"/> that represents this instance.
5034 </returns>
5035 </member>
5036 <member name="M:FluentAssertions.Formatting.DateTimeValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5037 <summary>
5038 Returns a <see cref="T:System.String"/> that represents this instance.
5039 </summary>
5040 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5041 <param name="uniqueObjectTracker">
5042 An object that is passed through recursive calls and which should be used to detect circular references
5043 in the object graph that is being converted to a string representation.</param>
5044 <param name="nestedPropertyLevel">
5045 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5046 no <see cref="M:System.Object.ToString"/> override.
5047 </param>
5048 <returns>
5049 A <see cref="T:System.String"/> that represents this instance.
5050 </returns>
5051 </member>
5052 <member name="M:FluentAssertions.Formatting.DefaultValueFormatter.CanHandle(System.Object)">
5053 <summary>
5054 Determines whether this instance can handle the specified value.
5055 </summary>
5056 <param name = "value">The value.</param>
5057 <returns>
5058 <c>true</c> if this instance can handle the specified value; otherwise, <c>false</c>.
5059 </returns>
5060 </member>
5061 <member name="M:FluentAssertions.Formatting.DefaultValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5062 <summary>
5063 Returns a <see cref="T:System.String"/> that represents this instance.
5064 </summary>
5065 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5066 <param name="uniqueObjectTracker">
5067 An object that is passed through recursive calls and which should be used to detect circular references
5068 in the object graph that is being converted to a string representation.</param>
5069 <param name="nestedPropertyLevel">
5070 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5071 no <see cref="M:System.Object.ToString"/> override.
5072 </param>
5073 <returns>
5074 A <see cref="T:System.String"/> that represents this instance.
5075 </returns>
5076 </member>
5077 <member name="M:FluentAssertions.Formatting.EnumerableValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5078 <summary>
5079 Returns a <see cref="T:System.String"/> that represents this instance.
5080 </summary>
5081 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5082 <param name="uniqueObjectTracker">
5083 An object that is passed through recursive calls and which should be used to detect circular references
5084 in the object graph that is being converted to a string representation.</param>
5085 <param name="nestedPropertyLevel">
5086 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5087 no <see cref="M:System.Object.ToString"/> override.
5088 </param>
5089 <returns>
5090 A <see cref="T:System.String"/> that represents this instance.
5091 </returns>
5092 </member>
5093 <member name="T:FluentAssertions.Formatting.Formatter">
5094 <summary>
5095 Provides services for formatting an object being used in an assertion in a human readable format.
5096 </summary>
5097 </member>
5098 <member name="F:FluentAssertions.Formatting.Formatter.formatters">
5099 <summary>
5100 A list of objects responsible for formatting the objects represented by placeholders.
5101 </summary>
5102 </member>
5103 <member name="M:FluentAssertions.Formatting.Formatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5104 <summary>
5105 Returns a human-readable representation of a particular object.
5106 </summary>
5107 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5108 <param name="uniqueObjectTracker"></param>
5109 <param name="nestedPropertyLevel">
5110 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5111 no <see cref="M:System.Object.ToString"/> override.
5112 </param>
5113 <returns>
5114 A <see cref="T:System.String"/> that represents this instance.
5115 </returns>
5116 </member>
5117 <member name="M:FluentAssertions.Formatting.Formatter.ToStringLine(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5118 <summary>
5119 Returns a human-readable representation of a particular object that starts on a new line.
5120 </summary>
5121 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5122 <param name="nestedPropertyLevel">
5123 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5124 no <see cref="M:System.Object.ToString"/> override.
5125 </param>
5126 <returns>
5127 A <see cref="T:System.String"/> that represents this instance.
5128 </returns>
5129 </member>
5130 <member name="M:FluentAssertions.Formatting.TimeSpanValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5131 <summary>
5132 Returns a <see cref="T:System.String"/> that represents this instance.
5133 </summary>
5134 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5135 <param name="uniqueObjectTracker">
5136 An object that is passed through recursive calls and which should be used to detect circular references
5137 in the object graph that is being converted to a string representation.</param>
5138 <param name="nestedPropertyLevel">
5139 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5140 no <see cref="M:System.Object.ToString"/> override.
5141 </param>
5142 <returns>
5143 A <see cref="T:System.String"/> that represents this instance.
5144 </returns>
5145 </member>
5146 <member name="M:FluentAssertions.Formatting.XAttributeValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5147 <summary>
5148 Returns a <see cref="T:System.String"/> that represents this instance.
5149 </summary>
5150 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5151 <param name="uniqueObjectTracker">
5152 An object that is passed through recursive calls and which should be used to detect circular references
5153 in the object graph that is being converted to a string representation.</param>
5154 <param name="nestedPropertyLevel">
5155 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5156 no <see cref="M:System.Object.ToString"/> override.
5157 </param>
5158 <returns>
5159 A <see cref="T:System.String"/> that represents this instance.
5160 </returns>
5161 </member>
5162 <member name="M:FluentAssertions.Formatting.XDocumentValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5163 <summary>
5164 Returns a <see cref="T:System.String"/> that represents this instance.
5165 </summary>
5166 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5167 <param name="uniqueObjectTracker">
5168 An object that is passed through recursive calls and which should be used to detect circular references
5169 in the object graph that is being converted to a string representation.</param>
5170 <param name="nestedPropertyLevel">
5171 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5172 no <see cref="M:System.Object.ToString"/> override.
5173 </param>
5174 <returns>
5175 A <see cref="T:System.String"/> that represents this instance.
5176 </returns>
5177 </member>
5178 <member name="M:FluentAssertions.Formatting.XElementValueFormatter.ToString(System.Object,FluentAssertions.Common.UniqueObjectTracker,System.Int32)">
5179 <summary>
5180 Returns a <see cref="T:System.String"/> that represents this instance.
5181 </summary>
5182 <param name="value">The value for which to create a <see cref="T:System.String"/>.</param>
5183 <param name="uniqueObjectTracker">
5184 An object that is passed through recursive calls and which should be used to detect circular references
5185 in the object graph that is being converted to a string representation.</param>
5186 <param name="nestedPropertyLevel">
5187 The level of nesting for the supplied value. This is used for indenting the format string for objects that have
5188 no <see cref="M:System.Object.ToString"/> override.
5189 </param>
5190 <returns>
5191 A <see cref="T:System.String"/> that represents this instance.
5192 </returns>
5193 </member>
5194 <member name="T:FluentAssertions.Verification">
5195 <summary>
5196 Provides a fluent API for verifying an arbitrary condition.
5197 </summary>
5198 </member>
5199 <member name="F:FluentAssertions.Verification.ReasonTag">
5200 <summary>
5201 Represents the phrase that can be used in <see cref="M:FluentAssertions.Verification.FailWith(System.String,System.Object[])"/> as a placeholder for the reason of an assertion.
5202 </summary>
5203 </member>
5204 <member name="M:FluentAssertions.Verification.#ctor">
5205 <summary>
5206 Initializes a new instance of the <see cref="T:FluentAssertions.Verification"/> class.
5207 </summary>
5208 </member>
5209 <member name="M:FluentAssertions.Verification.SubjectNameOr(System.String)">
5210 <summary>
5211 Gets the name or identifier of the current subject, or a default value if the subject is not known.
5212 </summary>
5213 </member>
5214 <member name="M:FluentAssertions.Verification.ForCondition(System.Boolean)">
5215 <summary>
5216 Specify the condition that must be satisfied.
5217 </summary>
5218 <param name="condition">If <c>true</c> the verification will be succesful.</param>
5219 </member>
5220 <member name="M:FluentAssertions.Verification.ForCondition(System.Func{System.Boolean})">
5221 <summary>
5222 Specify a predicate that with the condition that must be satisfied.
5223 </summary>
5224 </member>
5225 <member name="M:FluentAssertions.Verification.BecauseOf(System.String,System.Object[])">
5226 <summary>
5227 Specify the reason why you expect the condition to be <c>true</c>.
5228 </summary>
5229 <param name="reason">
5230 A formatted phrase explaining why the condition should be satisfied. If the phrase does not
5231 start with the word <i>because</i>, it is prepended to the message.
5232 </param>
5233 <param name="reasonArgs">
5234 Zero or more values to use for filling in any <see cref="M:System.String.Format(System.String,System.Object[])"/> compatible placeholders.
5235 </param>
5236 </member>
5237 <member name="M:FluentAssertions.Verification.FailWith(System.String,System.Object[])">
5238 <summary>
5239 Define the failure message for the verification.
5240 </summary>
5241 <remarks>
5242 If the <paramref name="failureMessage"/> contains the text "{reason}", this will be replaced by the reason as
5243 defined through <see cref="M:FluentAssertions.Verification.BecauseOf(System.String,System.Object[])"/>. Only 10 <paramref name="failureArgs"/> are supported in combination with
5244 a {reason}.
5245 </remarks>
5246 <param name="failureMessage">The format string that represents the failure message.</param>
5247 <param name="failureArgs">Optional arguments for the <paramref name="failureMessage"/></param>
5248 </member>
5249 <member name="P:FluentAssertions.Verification.UsingLineBreaks">
5250 <summary>
5251 Indicates that every argument passed into <see cref="M:FluentAssertions.Verification.FailWith(System.String,System.Object[])"/> is displayed on a separate line.
5252 </summary>
5253 </member>
5254 <member name="P:FluentAssertions.Verification.SubjectName">
5255 <summary>
5256 Gets or sets the name of the subject for the next verification.
5257 </summary>
5258 </member>
5259 </members>
5260 </doc>