main
1<?xml version="1.0" encoding="utf-8"?>
2<doc>
3 <assembly>
4 <name>Gallio</name>
5 </assembly>
6 <members>
7 <member name="T:Gallio.ActionChain`1">
8 <summary>An action chain captures a sequence of actions to be performed as part of a complex multi-part process.</summary>
9 <typeparam name="T">The action argument type</typeparam>
10 </member>
11 <member name="F:Gallio.ActionChain`1.NoOp">
12 <summary>Gets a singleton action that does nothing when invoked. This field is read-only.</summary>
13 </member>
14 <member name="P:Gallio.ActionChain`1.Action">
15 <summary>
16 <para> Gets or sets a representation of the chain as a single action. </para>
17 <para> The action is progressively augmented as new contributions are registered using <see cref="M:Gallio.ActionChain`1.Before(System.Action{`0})" />, <see cref="M:Gallio.ActionChain`1.After(System.Action{`0})" /> and <see cref="M:Gallio.ActionChain`1.Around(Gallio.ActionDecorator{`0})" />. By default the action is <see cref="F:Gallio.ActionChain`1.NoOp" />. </para>
18 </summary>
19 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
20 </member>
21 <member name="M:Gallio.ActionChain`1.After(System.Action{`0})">
22 <summary>Registers an action to perform after all other actions currently in the chain.</summary>
23 <param name="action">The action to register</param>
24 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
25 </member>
26 <member name="M:Gallio.ActionChain`1.Around(Gallio.ActionDecorator{`0})">
27 <summary>Registers an action to perform around all other actions currently in the chain. The contained part of the chain is passed in as an action to the decorator that the decorator can choose to run (or not) as needed.</summary>
28 <param name="decorator">The decorator to register</param>
29 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="decorator" /> is null</exception>
30 </member>
31 <member name="M:Gallio.ActionChain`1.Before(System.Action{`0})">
32 <summary>Registers an action to perform before all other actions currently in the chain.</summary>
33 <param name="action">The action to register</param>
34 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
35 </member>
36 <member name="M:Gallio.ActionChain`1.Clear">
37 <summary>Clears the chain and sets it action to <see cref="F:Gallio.ActionChain`1.NoOp" />.</summary>
38 </member>
39 <member name="T:Gallio.ActionChain`2">
40 <summary>An action chain captures a sequence of actions to be performed as part of a complex multi-part process.</summary>
41 <typeparam name="T1">The first argument type</typeparam>
42 <typeparam name="T2">The second argument type</typeparam>
43 </member>
44 <member name="F:Gallio.ActionChain`2.NoOp">
45 <summary>Gets a singleton action that does nothing when invoked. This field is read-only.</summary>
46 </member>
47 <member name="P:Gallio.ActionChain`2.Action">
48 <summary>
49 <para> Gets or sets a representation of the chain as a single action. </para>
50 <para> The action is progressively augmented as new contributions are registered using <see cref="M:Gallio.ActionChain`2.Before(Gallio.Action{`0,`1})" />, <see cref="M:Gallio.ActionChain`2.After(Gallio.Action{`0,`1})" /> and <see cref="M:Gallio.ActionChain`2.Around(Gallio.ActionDecorator{`0,`1})" />. By default the action is <see cref="F:Gallio.ActionChain`2.NoOp" />. </para>
51 </summary>
52 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
53 </member>
54 <member name="M:Gallio.ActionChain`2.After(Gallio.Action{`0,`1})">
55 <summary>Registers an action to perform after all other actions currently in the chain.</summary>
56 <param name="action">The action to register</param>
57 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
58 </member>
59 <member name="M:Gallio.ActionChain`2.Around(Gallio.ActionDecorator{`0,`1})">
60 <summary>Registers an action to perform around all other actions currently in the chain. The contained part of the chain is passed in as an action to the decorator that the decorator can choose to run (or not) as needed.</summary>
61 <param name="decorator">The decorator to register</param>
62 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="decorator" /> is null</exception>
63 </member>
64 <member name="M:Gallio.ActionChain`2.Before(Gallio.Action{`0,`1})">
65 <summary>Registers an action to perform before all other actions currently in the chain.</summary>
66 <param name="action">The action to register</param>
67 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
68 </member>
69 <member name="M:Gallio.ActionChain`2.Clear">
70 <summary>Clears the chain and sets it action to <see cref="F:Gallio.ActionChain`2.NoOp" />.</summary>
71 </member>
72 <member name="T:Gallio.Pair`2">
73 <summary>An immutable record that holds two values.</summary>
74 <typeparam name="TFirst">The type of the first value</typeparam>
75 <typeparam name="TSecond">The type of the second value</typeparam>
76 </member>
77 <member name="P:Gallio.Pair`2.First">
78 <summary>Gets the first value.</summary>
79 </member>
80 <member name="P:Gallio.Pair`2.Second">
81 <summary>Gets the second value.</summary>
82 </member>
83 <member name="T:Gallio.Triple`3">
84 <summary>An immutable record that holds three values.</summary>
85 <typeparam name="TFirst">The type of the first value</typeparam>
86 <typeparam name="TSecond">The type of the second value</typeparam>
87 <typeparam name="TThird">The type of the third value</typeparam>
88 </member>
89 <member name="P:Gallio.Triple`3.First">
90 <summary>Gets the first value.</summary>
91 </member>
92 <member name="P:Gallio.Triple`3.Second">
93 <summary>Gets the second value.</summary>
94 </member>
95 <member name="P:Gallio.Triple`3.Third">
96 <summary>Gets the third value.</summary>
97 </member>
98 <member name="T:Gallio.Action">
99 <summary>An action with no arguments.</summary>
100 </member>
101 <member name="T:Gallio.Action`2">
102 <summary>An action with two arguments.</summary>
103 <typeparam name="T1">The first argument type</typeparam>
104 <typeparam name="T2">The second argument type</typeparam>
105 <param name="arg1">The first argument</param>
106 <param name="arg2">The second argument</param>
107 </member>
108 <member name="T:Gallio.Action`3">
109 <summary>An action with three arguments.</summary>
110 <typeparam name="T1">The first argument type</typeparam>
111 <typeparam name="T2">The second argument type</typeparam>
112 <typeparam name="T3">The third argument type</typeparam>
113 <param name="arg1">The first argument</param>
114 <param name="arg2">The second argument</param>
115 <param name="arg3">The third argument</param>
116 </member>
117 <member name="T:Gallio.Action`4">
118 <summary>An action with four arguments.</summary>
119 <typeparam name="T1">The first argument type</typeparam>
120 <typeparam name="T2">The second argument type</typeparam>
121 <typeparam name="T3">The third argument type</typeparam>
122 <typeparam name="T4">The fourth argument type</typeparam>
123 <param name="arg1">The first argument</param>
124 <param name="arg2">The second argument</param>
125 <param name="arg3">The third argument</param>
126 <param name="arg4">The fourth argument</param>
127 </member>
128 <member name="T:Gallio.ActionDecorator`1">
129 <summary>Represents a method that decorates another action.</summary>
130 <typeparam name="T">The type of object the action is performed upon</typeparam>
131 <param name="obj">The object to act upon</param>
132 <param name="action">The action to decorate which should be called in the middle of applying the decoration</param>
133 </member>
134 <member name="T:Gallio.ActionDecorator`2">
135 <summary>Represents a method that decorates another action.</summary>
136 <typeparam name="T1">The first argument type</typeparam>
137 <typeparam name="T2">The second argument type</typeparam>
138 <param name="arg1">The first argument</param>
139 <param name="arg2">The second argument</param>
140 <param name="action">The action to decorate which should be called in the middle of applying the decoration</param>
141 </member>
142 <member name="T:Gallio.Func`1">
143 <summary>A function with zero arguments.</summary>
144 <typeparam name="TResult">The result type</typeparam>
145 </member>
146 <member name="T:Gallio.Func`2">
147 <summary>A function with one argument.</summary>
148 <typeparam name="T1">The first argument type</typeparam>
149 <typeparam name="TResult">The result type</typeparam>
150 <param name="arg1">The first argument</param>
151 </member>
152 <member name="T:Gallio.Func`3">
153 <summary>A function with two arguments.</summary>
154 <typeparam name="T1">The first argument type</typeparam>
155 <typeparam name="T2">The second argument type</typeparam>
156 <typeparam name="TResult">The result type</typeparam>
157 <param name="arg1">The first argument</param>
158 <param name="arg2">The second argument</param>
159 </member>
160 <member name="T:Gallio.Func`4">
161 <summary>A function with three arguments.</summary>
162 <typeparam name="T1">The first argument type</typeparam>
163 <typeparam name="T2">The second argument type</typeparam>
164 <typeparam name="T3">The third argument type</typeparam>
165 <typeparam name="TResult">The result type</typeparam>
166 <param name="arg1">The first argument</param>
167 <param name="arg2">The second argument</param>
168 <param name="arg3">The third argument</param>
169 </member>
170 <member name="T:Gallio.Func`5">
171 <summary>A function with four arguments.</summary>
172 <typeparam name="T1">The first argument type</typeparam>
173 <typeparam name="T2">The second argument type</typeparam>
174 <typeparam name="T3">The third argument type</typeparam>
175 <typeparam name="T4">The fourth argument type</typeparam>
176 <typeparam name="TResult">The result type</typeparam>
177 <param name="arg1">The first argument</param>
178 <param name="arg2">The second argument</param>
179 <param name="arg3">The third argument</param>
180 <param name="arg4">The fourth argument</param>
181 </member>
182 <member name="T:Gallio.Collections.ArrayEqualityComparer`1">
183 <summary>Compares arrays for equality by element.</summary>
184 </member>
185 <member name="F:Gallio.Collections.ArrayEqualityComparer`1.Default">
186 <summary>Gets a default instance of the array equality comparer. This field is read-only.</summary>
187 </member>
188 <member name="T:Gallio.Collections.CollectionUtils">
189 <summary>Utility functions for manipulating collections. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
190 </member>
191 <member name="M:Gallio.Collections.CollectionUtils.ConvertAllToArray``2(System.Collections.ICollection,System.Converter{``0,``1})">
192 <summary>Converts all elements of the input collection and returns the collected results as an array of the same size.</summary>
193 <typeparam name="TInput">The input type</typeparam>
194 <typeparam name="TOutput">The output type</typeparam>
195 <param name="input">The input collection</param>
196 <param name="converter">The conversion function to apply to each element</param>
197 <returns>The output array</returns>
198 </member>
199 <member name="M:Gallio.Collections.CollectionUtils.Find``1(System.Collections.IEnumerable,System.Predicate{``0})">
200 <summary>Returns the first element of the input enumeration for which the specified predicate returns true.</summary>
201 <typeparam name="T">The element type</typeparam>
202 <param name="enumeration">The input enumeration</param>
203 <param name="predicate">The predicate</param>
204 <returns>The first matching value or the default for the type if not found</returns>
205 </member>
206 <member name="M:Gallio.Collections.CollectionUtils.ToArray``1(System.Collections.ICollection)">
207 <summary>Copies all of the elements of the input collection to an array.</summary>
208 <typeparam name="T">The element type</typeparam>
209 <param name="collection">The input collection</param>
210 <returns>The output array</returns>
211 </member>
212 <member name="T:Gallio.Collections.CovariantList`2">
213 <summary>A covariant list converts a list of the input type to a read-only list of the more generic output type. The wrapped list can be used to mimic covariance in method return types.</summary>
214 <typeparam name="TInput">The input list type</typeparam>
215 <typeparam name="TOutput">The output list type</typeparam>
216 </member>
217 <member name="P:Gallio.Collections.CovariantList`2.Count">
218 <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
219 <value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
220 </member>
221 <member name="P:Gallio.Collections.CovariantList`2.IsReadOnly">
222 <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
223 <value>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</value>
224 </member>
225 <member name="M:Gallio.Collections.CovariantList`2.GetEnumerator">
226 <summary>Returns an enumerator that iterates through the collection.</summary>
227 <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
228 </member>
229 <member name="T:Gallio.Collections.EmptyArray`1">
230 <summary>Provides a singleton empty array instance. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
231 <typeparam name="T">The type of array to provide</typeparam>
232 </member>
233 <member name="F:Gallio.Collections.EmptyArray`1.Instance">
234 <summary>An empty array of type <typeparamref name="T" />. This field is read-only.</summary>
235 </member>
236 <member name="T:Gallio.Collections.EmptyDictionary`2">
237 <summary>A read-only empty dictionary.</summary>
238 <typeparam name="TKey">The dictionary key type</typeparam>
239 <typeparam name="TValue">The dictionary value type</typeparam>
240 </member>
241 <member name="F:Gallio.Collections.EmptyDictionary`2.Instance">
242 <summary>A read-only empty dictionary instance. This field is read-only.</summary>
243 </member>
244 <member name="P:Gallio.Collections.EmptyDictionary`2.Count">
245 <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
246 <value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
247 </member>
248 <member name="P:Gallio.Collections.EmptyDictionary`2.IsReadOnly">
249 <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
250 <value>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</value>
251 </member>
252 <member name="P:Gallio.Collections.EmptyDictionary`2.Item(`0)">
253 <summary>Gets or sets the element with the specified key.</summary>
254 <param name="key">The key of the element to get or set.</param>
255 <value>The element with the specified key.</value>
256 </member>
257 <member name="P:Gallio.Collections.EmptyDictionary`2.Keys">
258 <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
259 <value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
260 </member>
261 <member name="P:Gallio.Collections.EmptyDictionary`2.Values">
262 <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
263 <value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
264 </member>
265 <member name="M:Gallio.Collections.EmptyDictionary`2.Add(`0,`1)">
266 <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
267 <param name="key">The object to use as the key of the element to add.</param>
268 <param name="value">The object to use as the value of the element to add.</param>
269 </member>
270 <member name="M:Gallio.Collections.EmptyDictionary`2.Clear">
271 <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
272 </member>
273 <member name="M:Gallio.Collections.EmptyDictionary`2.ContainsKey(`0)">
274 <summary>Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key.</summary>
275 <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</param>
276 <returns>true if the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the key; otherwise, false.</returns>
277 </member>
278 <member name="M:Gallio.Collections.EmptyDictionary`2.GetEnumerator">
279 <summary>Returns an enumerator that iterates through a collection.</summary>
280 <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
281 </member>
282 <member name="M:Gallio.Collections.EmptyDictionary`2.Remove(`0)">
283 <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
284 <param name="key">The key of the element to remove.</param>
285 <returns>true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
286 </member>
287 <member name="T:Gallio.Collections.GenericUtils">
288 <summary>Utility functions for manipulating generic collections. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
289 </member>
290 <member name="M:Gallio.Collections.GenericUtils.AddAll``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.ICollection{``0})">
291 <summary>Adds all elements of the input enumeration to the output collection.</summary>
292 <typeparam name="T">The element type</typeparam>
293 <param name="input">The input enumeration</param>
294 <param name="output">The output collection</param>
295 </member>
296 <member name="M:Gallio.Collections.GenericUtils.ConvertAllToArray``2(System.Collections.Generic.ICollection{``0},System.Converter{``0,``1})">
297 <summary>Converts each element of the input collection and returns the collected results as an array of the same size.</summary>
298 <typeparam name="TInput">The input type</typeparam>
299 <typeparam name="TOutput">The output type</typeparam>
300 <param name="input">The input collection</param>
301 <param name="converter">The conversion function to apply to each element</param>
302 <returns>The output array</returns>
303 </member>
304 <member name="M:Gallio.Collections.GenericUtils.ConvertAndAddAll``2(System.Collections.Generic.ICollection{``0},System.Collections.Generic.ICollection{``1},System.Converter{``0,``1})">
305 <summary>Converts each element of the input collection and adds the result to the output collection succession in the same order.</summary>
306 <typeparam name="TInput">The input type</typeparam>
307 <typeparam name="TOutput">The output type</typeparam>
308 <param name="input">The input list</param>
309 <param name="output">The output list</param>
310 <param name="converter">The conversion function to apply to each element</param>
311 </member>
312 <member name="M:Gallio.Collections.GenericUtils.ConvertAndCopyAll``2(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IList{``1},System.Converter{``0,``1})">
313 <summary>Converts each element of the input collection and stores the result in the output list using the same index. The output list must be at least as large as the input list.</summary>
314 <typeparam name="TInput">The input type</typeparam>
315 <typeparam name="TOutput">The output type</typeparam>
316 <param name="input">The input list</param>
317 <param name="output">The output list</param>
318 <param name="converter">The conversion function to apply to each element</param>
319 </member>
320 <member name="M:Gallio.Collections.GenericUtils.ElementsEqual``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IList{``0})">
321 <summary>Returns true if the elements of both lists are equal.</summary>
322 <param name="a">The first collection</param>
323 <param name="b">The second collection</param>
324 <returns>True if the elements are equal</returns>
325 </member>
326 <member name="M:Gallio.Collections.GenericUtils.ElementsEqualOrderIndependent``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IList{``0})">
327 <summary>Returns true if the elements of both lists are equal but possibly appear in a different order. Handles elements that appear multiple times and ensures that they appear the same number of times in each list.</summary>
328 <param name="a">The first collection</param>
329 <param name="b">The second collection</param>
330 <returns>True if the elements are equal</returns>
331 </member>
332 <member name="M:Gallio.Collections.GenericUtils.Find``1(System.Collections.Generic.IEnumerable{``0},System.Predicate{``0})">
333 <summary>Returns the first element of the input enumeration for which the specified predicate returns true.</summary>
334 <typeparam name="T">The element type</typeparam>
335 <param name="enumeration">The input enumeration</param>
336 <param name="predicate">The predicate</param>
337 <returns>The first matching value or the default for the type if not found</returns>
338 </member>
339 <member name="M:Gallio.Collections.GenericUtils.KeyValuePairsEqual``2(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``1})">
340 <summary>Returns true if both dictionaries have equal key/value pairs.</summary>
341 <param name="a">The first collection</param>
342 <param name="b">The second collection</param>
343 <returns>True if the elements are equal</returns>
344 </member>
345 <member name="M:Gallio.Collections.GenericUtils.ToArray``1(System.Collections.Generic.IEnumerable{``0})">
346 <summary>Copies all of the elements of the input enumerable to an array.</summary>
347 <typeparam name="T">The element type</typeparam>
348 <param name="enumerable">The input enumerable</param>
349 <returns>The output array</returns>
350 </member>
351 <member name="M:Gallio.Collections.GenericUtils.ToArray``1(System.Collections.Generic.ICollection{``0})">
352 <summary>Copies all of the elements of the input collection to an array.</summary>
353 <typeparam name="T">The element type</typeparam>
354 <param name="collection">The input collection</param>
355 <returns>The output array</returns>
356 </member>
357 <member name="T:Gallio.Collections.HashSet`1">
358 <summary>A hashtable-based set implementation.</summary>
359 </member>
360 <member name="P:Gallio.Collections.HashSet`1.Count">
361 <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
362 <value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
363 </member>
364 <member name="P:Gallio.Collections.HashSet`1.IsReadOnly">
365 <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
366 <value>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</value>
367 </member>
368 <member name="M:Gallio.Collections.HashSet`1.Add(`0)">
369 <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
370 <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
371 </member>
372 <member name="M:Gallio.Collections.HashSet`1.Clear">
373 <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
374 </member>
375 <member name="M:Gallio.Collections.HashSet`1.Contains(`0)">
376 <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
377 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
378 <returns>true if item is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.</returns>
379 </member>
380 <member name="M:Gallio.Collections.HashSet`1.CopyTo(`0[],System.Int32)">
381 <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" nolink="true" /> index.</summary>
382 <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" nolink="true" /> must have zero-based indexing.</param>
383 <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
384 </member>
385 <member name="M:Gallio.Collections.HashSet`1.GetEnumerator">
386 <summary>Returns an enumerator that iterates through the collection.</summary>
387 <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
388 </member>
389 <member name="M:Gallio.Collections.HashSet`1.Remove(`0)">
390 <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
391 <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
392 <returns>true if item was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false. This method also returns false if item is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" nolink="true" />.</returns>
393 </member>
394 <member name="T:Gallio.Collections.LazyCache`2">
395 <summary>Lazily populates and caches values associated with a particular key.</summary>
396 </member>
397 <member name="P:Gallio.Collections.LazyCache`2.Item(`0)">
398 <summary>Gets the value associated with the specified key. Populates it on demand if not already cached.</summary>
399 <param name="key">The key</param>
400 <value>The associated value</value>
401 </member>
402 <member name="T:Gallio.Collections.MultiMap`2">
403 <summary>A multi-map allows a list of values to be associated with a single key.</summary>
404 </member>
405 <member name="P:Gallio.Collections.MultiMap`2.Count">
406 <summary>Gets the number of distinct keys in the map.</summary>
407 </member>
408 <member name="P:Gallio.Collections.MultiMap`2.IsReadOnly">
409 <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
410 <value>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</value>
411 </member>
412 <member name="P:Gallio.Collections.MultiMap`2.Item(`0)">
413 <summary>Gets or sets the list of values associated with the specified key. Returns an empty list if there are none.</summary>
414 <param name="key">The key</param>
415 <value>The list of values</value>
416 </member>
417 <member name="P:Gallio.Collections.MultiMap`2.Keys">
418 <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
419 <value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
420 </member>
421 <member name="P:Gallio.Collections.MultiMap`2.Pairs">
422 <summary>Gets the contents of the multi-map as an enumeration of pairs.</summary>
423 </member>
424 <member name="P:Gallio.Collections.MultiMap`2.Values">
425 <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
426 <value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
427 </member>
428 <member name="M:Gallio.Collections.MultiMap`2.Add(`0,`1)">
429 <summary>Adds a value to the list of those associated with a key.</summary>
430 <param name="key">The key</param>
431 <param name="value">The value to associate</param>
432 </member>
433 <member name="M:Gallio.Collections.MultiMap`2.Add(System.Collections.Generic.KeyValuePair{`0,System.Collections.Generic.IList{`1}})">
434 <summary>Adds all values in the pair to the specified key.</summary>
435 <param name="item">The key and values pair</param>
436 </member>
437 <member name="M:Gallio.Collections.MultiMap`2.Add(`0,System.Collections.Generic.IList{`1})">
438 <summary>Adds all values in the pair to the specified key.</summary>
439 <param name="key">The key</param>
440 <param name="values">The values</param>
441 </member>
442 <member name="M:Gallio.Collections.MultiMap`2.AddAll(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,System.Collections.Generic.IList{`1}}})">
443 <summary>Adds all of the values from the specified map.</summary>
444 <param name="map">The map</param>
445 </member>
446 <member name="M:Gallio.Collections.MultiMap`2.AddAll(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
447 <summary>Adds all of the values from the specified enumeration of key-value pairs.</summary>
448 <param name="pairs">The key-value pairs</param>
449 </member>
450 <member name="M:Gallio.Collections.MultiMap`2.Clear">
451 <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
452 </member>
453 <member name="M:Gallio.Collections.MultiMap`2.Contains(`0,`1)">
454 <summary>Returns true if the map contains an entry with the specified key and value.</summary>
455 <param name="key">The key</param>
456 <param name="value">The value to find</param>
457 <returns>True if the map contains an entry with the specified key and value</returns>
458 </member>
459 <member name="M:Gallio.Collections.MultiMap`2.ContainsKey(`0)">
460 <summary>Returns true if the map contains at least one value associated with the specified key.</summary>
461 <param name="key">The key</param>
462 <returns>True if there is at least one value associated with the key</returns>
463 </member>
464 <member name="M:Gallio.Collections.MultiMap`2.GetEnumerator">
465 <summary>Returns an enumerator that iterates through the collection.</summary>
466 <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
467 </member>
468 <member name="M:Gallio.Collections.MultiMap`2.ReadOnly(Gallio.Collections.IMultiMap{`0,`1})">
469 <summary>Obtains a read-only view of another multi-map.</summary>
470 <param name="map">The multi-map</param>
471 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="map" /> is null</exception>
472 </member>
473 <member name="M:Gallio.Collections.MultiMap`2.Remove(`0)">
474 <summary>Removes all values associated with the specified key.</summary>
475 <param name="key">The key</param>
476 <returns>True if the key existed and was removed</returns>
477 </member>
478 <member name="M:Gallio.Collections.MultiMap`2.Remove(`0,`1)">
479 <summary>Removes a value from the list of those associated with a key.</summary>
480 <param name="key">The key</param>
481 <param name="value">The value to remove from the key</param>
482 <returns>True if the value was removed</returns>
483 </member>
484 <member name="M:Gallio.Collections.MultiMap`2.Remove(System.Collections.Generic.KeyValuePair{`0,System.Collections.Generic.IList{`1}})">
485 <summary>Removes all values in the pair from the specified key.</summary>
486 <param name="item">The key and values pair</param>
487 <returns>True if at least one value was removed</returns>
488 </member>
489 <member name="T:Gallio.Collections.TreeUtils">
490 <summary>Provides functions for manipulating ad-hoc trees. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
491 </member>
492 <member name="T:Gallio.Collections.UserDataCollection">
493 <summary>
494 <para> A user data collection stores arbitrary key/value pairs that may be associated with other objects in the system. </para>
495 <para> Accesses to the collection are synchronized during access. To safely manupulate multiple keys at one time, simply lock the <see cref="T:Gallio.Collections.UserDataCollection" /> for the duration of the operation. </para>
496 </summary>
497 </member>
498 <member name="M:Gallio.Collections.UserDataCollection.Copy">
499 <summary>Creates a copy of the collection.</summary>
500 <returns>The copy</returns>
501 </member>
502 <member name="M:Gallio.Collections.UserDataCollection.GetValue``1(Gallio.Collections.Key{``0})">
503 <summary>Gets a value from the collection.</summary>
504 <typeparam name="T">The value type</typeparam>
505 <param name="key">The key</param>
506 <returns>The associated value</returns>
507 <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown if <paramref name="key" /> was not found.</exception>
508 </member>
509 <member name="M:Gallio.Collections.UserDataCollection.GetValueOrDefault``1(Gallio.Collections.Key{``0},``0)">
510 <summary>Gets a value from the collection or a default value if none found.</summary>
511 <typeparam name="T">The value type</typeparam>
512 <param name="key">The key</param>
513 <param name="defaultValue">The default value</param>
514 <returns>The associated value, or the default value</returns>
515 </member>
516 <member name="M:Gallio.Collections.UserDataCollection.HasValue``1(Gallio.Collections.Key{``0})">
517 <summary>Determines whether a key has an associated value in the collection.</summary>
518 <typeparam name="T">The value type</typeparam>
519 <param name="key">The key</param>
520 <returns>True if the key has an associated value</returns>
521 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="key" /> is null</exception>
522 </member>
523 <member name="M:Gallio.Collections.UserDataCollection.RemoveValue``1(Gallio.Collections.Key{``0})">
524 <summary>Removes a value from the collection.</summary>
525 <typeparam name="T">The value type</typeparam>
526 <param name="key">The key</param>
527 </member>
528 <member name="M:Gallio.Collections.UserDataCollection.SetValue``1(Gallio.Collections.Key{``0},``0)">
529 <summary>Sets a value in the collection.</summary>
530 <typeparam name="T">The value type</typeparam>
531 <param name="key">The key</param>
532 <param name="value">The value to set</param>
533 </member>
534 <member name="M:Gallio.Collections.UserDataCollection.TryGetValue``1(Gallio.Collections.Key{``0},``0@)">
535 <summary>Tries to get a value from the collection.</summary>
536 <typeparam name="T">The value type</typeparam>
537 <param name="key">The key</param>
538 <param name="value">Set to the value, or <c>default(T)</c> if none present</param>
539 <returns>True if a value was obtained</returns>
540 </member>
541 <member name="T:Gallio.Collections.Key`1">
542 <summary>A strongly-typed key to be used together with an associative array to help the compiler perform better type checking of the value associated with the key.</summary>
543 <typeparam name="TValue">The type of value associated with the key</typeparam>
544 </member>
545 <member name="P:Gallio.Collections.Key`1.Name">
546 <summary>Gets the unique name of the key.</summary>
547 </member>
548 <member name="T:Gallio.Collections.IMultiMap`2">
549 <summary>A multi-map allows a list of values to be associated with a single key.</summary>
550 </member>
551 <member name="P:Gallio.Collections.IMultiMap`2.Pairs">
552 <summary>Gets the contents of the multi-map as an enumeration of pairs.</summary>
553 </member>
554 <member name="M:Gallio.Collections.IMultiMap`2.Add(`0,`1)">
555 <summary>Adds a value to the list of those associated with a key.</summary>
556 <param name="key">The key</param>
557 <param name="value">The value to associate</param>
558 </member>
559 <member name="M:Gallio.Collections.IMultiMap`2.AddAll(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,System.Collections.Generic.IList{`1}}})">
560 <summary>Adds all of the values from the specified map.</summary>
561 <param name="map">The map</param>
562 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="map" /> is null</exception>
563 </member>
564 <member name="M:Gallio.Collections.IMultiMap`2.AddAll(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
565 <summary>Adds all of the values from the specified enumeration of key-value pairs.</summary>
566 <param name="pairs">The key-value pairs</param>
567 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="pairs" /> is null</exception>
568 </member>
569 <member name="M:Gallio.Collections.IMultiMap`2.Contains(`0,`1)">
570 <summary>Returns true if the map contains an entry with the specified key and value.</summary>
571 <param name="key">The key</param>
572 <param name="value">The value to find</param>
573 <returns>True if the map contains an entry with the specified key and value</returns>
574 </member>
575 <member name="M:Gallio.Collections.IMultiMap`2.Remove(`0,`1)">
576 <summary>Removes a value from the list of those associated with a key.</summary>
577 <param name="key">The key</param>
578 <param name="value">The value to remove from the key</param>
579 <returns>True if the value was removed</returns>
580 </member>
581 <member name="T:Gallio.Collections.TreeUtils.ChildEnumerator`1">
582 <summary>Enumerates child nodes in a tree.</summary>
583 <param name="node">The node</param>
584 </member>
585 <member name="T:Gallio.Concurrency.ProcessTask">
586 <summary>
587 <para> A process task provides support for launching external processes and collecting their output. </para>
588 <para> The process task provides a guarnatee that when you call <see cref="M:Gallio.Concurrency.Task.Join(System.Nullable{System.TimeSpan})" /> all redirected output from the console output and error streams will already have been captured and delivered to the event handlers, as appropriate. </para>
589 </summary>
590 </member>
591 <member name="P:Gallio.Concurrency.ProcessTask.Arguments">
592 <summary>Gets the arguments.</summary>
593 </member>
594 <member name="P:Gallio.Concurrency.ProcessTask.CaptureConsoleError">
595 <summary>
596 <para> Gets or sets whether console error stream of the process should be captured and made available via the <see cref="P:Gallio.Concurrency.ProcessTask.ConsoleError" /> property. </para>
597 <para> The default value is <c>false</c>. </para>
598 </summary>
599 </member>
600 <member name="P:Gallio.Concurrency.ProcessTask.CaptureConsoleOutput">
601 <summary>
602 <para> Gets or sets whether console output stream of the process should be captured and made available via the <see cref="P:Gallio.Concurrency.ProcessTask.ConsoleOutput" /> property. </para>
603 <para> The default value is <c>false</c>. </para>
604 </summary>
605 </member>
606 <member name="P:Gallio.Concurrency.ProcessTask.ConsoleError">
607 <summary>Gets the captured contents of the console error stream written by the process.</summary>
608 <exception cref="T:System.InvalidOperationException">Thrown if the process has not been started or if <see cref="P:Gallio.Concurrency.ProcessTask.CaptureConsoleError" /> is <c>null</c></exception>
609 </member>
610 <member name="P:Gallio.Concurrency.ProcessTask.ConsoleOutput">
611 <summary>Gets the captured contents of the console output stream written by the process.</summary>
612 <exception cref="T:System.InvalidOperationException">Thrown if the process has not been started or if <see cref="P:Gallio.Concurrency.ProcessTask.CaptureConsoleOutput" /> is <c>null</c></exception>
613 </member>
614 <member name="P:Gallio.Concurrency.ProcessTask.CreateWindow">
615 <summary>
616 <para> Gets or sets whether to create a window for the command prompt. </para>
617 <para> The default value is <c>false</c>. </para>
618 </summary>
619 </member>
620 <member name="P:Gallio.Concurrency.ProcessTask.ExecutablePath">
621 <summary>Gets the executable path.</summary>
622 </member>
623 <member name="P:Gallio.Concurrency.ProcessTask.ExitCode">
624 <summary>Gets the exit code of the process, or -1 if the process did not run or has not exited.</summary>
625 </member>
626 <member name="P:Gallio.Concurrency.ProcessTask.Process">
627 <summary>Gets the <see cref="P:Gallio.Concurrency.ProcessTask.Process" /> that was started or null if the process has not been started yet.</summary>
628 </member>
629 <member name="P:Gallio.Concurrency.ProcessTask.UseShellExecute">
630 <summary>
631 <para> Gets or sets whether to execute the command with the Windows shell. </para>
632 <para> The default value is <c>false</c>. </para>
633 </summary>
634 </member>
635 <member name="P:Gallio.Concurrency.ProcessTask.WorkingDirectory">
636 <summary>Gets the working directory path.</summary>
637 </member>
638 <member name="M:Gallio.Concurrency.ProcessTask.AbortImpl">
639 <summary>Aborts the task.</summary>
640 </member>
641 <member name="M:Gallio.Concurrency.ProcessTask.JoinImpl(System.Nullable{System.TimeSpan})">
642 <summary>Waits for the task to terminate.</summary>
643 <param name="timeout">The timeout, or null to wait indefinitely</param>
644 <returns>True if the task is not running as of the time this method exits, false if a timeout occurred while waiting</returns>
645 </member>
646 <member name="M:Gallio.Concurrency.ProcessTask.StartImpl">
647 <summary>Starts the task.</summary>
648 </member>
649 <member name="M:Gallio.Concurrency.ProcessTask.StartProcess(System.Diagnostics.ProcessStartInfo)">
650 <summary>Starts a <see cref="P:Gallio.Concurrency.ProcessTask.Process" />.</summary>
651 <param name="startInfo">The <see cref="T:System.Diagnostics.ProcessStartInfo" /> that has been started</param>
652 <returns>The process</returns>
653 </member>
654 <member name="E:Gallio.Concurrency.ProcessTask.ConsoleErrorDataReceived">
655 <summary>The event fired when each line of new output is received on the console error stream.</summary>
656 </member>
657 <member name="E:Gallio.Concurrency.ProcessTask.ConsoleOutputDataReceived">
658 <summary>The event fired when each line of new output is received on the console output stream.</summary>
659 </member>
660 <member name="T:Gallio.Concurrency.Task">
661 <summary>
662 <para> A task represents a concurrently executing operation. </para>
663 <para> A <see cref="T:Gallio.Concurrency.Task" /> might not necessarily represent an operation that is executing in a local <see cref="T:System.Threading.Thread" />. It can represent other processes that execute remotely or that are represented by some other mechanism. </para>
664 <para> A <see cref="T:Gallio.Concurrency.Task" nolink="true" /> is guaranteed to send events in the following order: <see cref="E:Gallio.Concurrency.Task.Started" />, <see cref="E:Gallio.Concurrency.Task.Aborted" /> (if applicable), <see cref="E:Gallio.Concurrency.Task.Terminated" />. The events are dispatched synchronously such that the next event in the sequence will not be fired until the previous event is completely processed. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
665 </member>
666 <member name="P:Gallio.Concurrency.Task.IsAborted">
667 <summary>Returns true if the task has been aborted.</summary>
668 </member>
669 <member name="P:Gallio.Concurrency.Task.IsPending">
670 <summary>Returns true if the task has not been started or aborted yet.</summary>
671 </member>
672 <member name="P:Gallio.Concurrency.Task.IsRunning">
673 <summary>Returns true if the task is running.</summary>
674 </member>
675 <member name="P:Gallio.Concurrency.Task.IsTerminated">
676 <summary>Returns true if the task ran and was terminated.</summary>
677 </member>
678 <member name="P:Gallio.Concurrency.Task.Name">
679 <summary>Gets the name of the task.</summary>
680 </member>
681 <member name="P:Gallio.Concurrency.Task.Result">
682 <summary>Gets the task result, or null if the task has not terminated or was aborted before starting.</summary>
683 </member>
684 <member name="M:Gallio.Concurrency.Task.Abort">
685 <summary>
686 <para> Asynchronously aborts the task. </para>
687 <para> If the task has not been started, then the task will be forbidden from starting later and its <see cref="P:Gallio.Concurrency.Task.IsAborted" /> property will be set. If the task has already terminated, then does nothing. </para>
688 </summary>
689 </member>
690 <member name="M:Gallio.Concurrency.Task.AbortImpl">
691 <summary>Aborts the task.</summary>
692 </member>
693 <member name="M:Gallio.Concurrency.Task.Join(System.Nullable{System.TimeSpan})">
694 <summary>
695 <para> Waits for the task to terminate. </para>
696 <para> Does nothing if the task has not been started or is not running. </para>
697 </summary>
698 <param name="timeout">The maximum amount of time to wait for completion, or null to wait indefinitely</param>
699 <returns>True if the task is not running as of the time this method exits, false if a timeout occurred while waiting</returns>
700 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="timeout" /> represents a negative time span</exception>
701 </member>
702 <member name="M:Gallio.Concurrency.Task.JoinImpl(System.Nullable{System.TimeSpan})">
703 <summary>Waits for the task to terminate.</summary>
704 <param name="timeout">The timeout, or null to wait indefinitely</param>
705 <returns>True if the task is not running as of the time this method exits, false if a timeout occurred while waiting</returns>
706 </member>
707 <member name="M:Gallio.Concurrency.Task.NotifyTerminated(Gallio.Concurrency.TaskResult)">
708 <summary>Dispatches notification that the task has terminated and provides its result.</summary>
709 <param name="result">The task result</param>
710 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="result" /> is null</exception>
711 <exception cref="T:System.InvalidOperationException">Thrown if the task is not currently running</exception>
712 </member>
713 <member name="M:Gallio.Concurrency.Task.OnAborted">
714 <summary>Notifies the <see cref="E:Gallio.Concurrency.Task.Aborted" /> event handlers.</summary>
715 </member>
716 <member name="M:Gallio.Concurrency.Task.OnStarted">
717 <summary>Notifies the <see cref="E:Gallio.Concurrency.Task.Started" /> event handlers.</summary>
718 </member>
719 <member name="M:Gallio.Concurrency.Task.OnTerminated">
720 <summary>Notifies the <see cref="E:Gallio.Concurrency.Task.Terminated" /> event handlers.</summary>
721 </member>
722 <member name="M:Gallio.Concurrency.Task.Run(System.Nullable{System.TimeSpan})">
723 <summary>Starts the task and waits for it to complete until the timeout expires. If the timeout expires, aborts the task and returns <c>false</c>.</summary>
724 <param name="timeout">The maximum amount of time to wait for completion, or null to wait indefinitely</param>
725 <returns>True if the task ran to completion within the specified time span, false if the task was aborted</returns>
726 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="timeout" /> represents a negative time span</exception>
727 </member>
728 <member name="M:Gallio.Concurrency.Task.Start">
729 <summary>
730 <para> Starts running the task. </para>
731 <para> Does nothing if the task has already been started or has been aborted. </para>
732 </summary>
733 </member>
734 <member name="M:Gallio.Concurrency.Task.StartImpl">
735 <summary>Starts the task.</summary>
736 </member>
737 <member name="E:Gallio.Concurrency.Task.Aborted">
738 <summary>Adds or removes an event handler that is signaled when the task is aborted. If a handler is being added and the task has already aborted, it is immediately invoked.</summary>
739 </member>
740 <member name="E:Gallio.Concurrency.Task.Started">
741 <summary>Adds or removes an event handler that is signaled when the task is started. If a handler is being added and the task has already started, it is immediately invoked.</summary>
742 </member>
743 <member name="E:Gallio.Concurrency.Task.Terminated">
744 <summary>Adds or removes an event handler that is signaled when the task is terminated. If a handler is being added and the task has already terminated, it is immediately invoked.</summary>
745 </member>
746 <member name="T:Gallio.Concurrency.TaskContainer">
747 <summary>
748 <para> A <see cref="T:Gallio.Concurrency.TaskContainer" /> manages the lifecycle of any number of <see cref="T:Gallio.Concurrency.Task" />s and monitors their run-time behavior. </para>
749 <para> For example, when a <see cref="T:Gallio.Concurrency.Task" nolink="true" /> terminates abruptly due to an exception, its container will send out a notification that may cause all of the other tasks to be aborted and for the currently executing test case to fail. </para>
750 </summary>
751 </member>
752 <member name="M:Gallio.Concurrency.TaskContainer.AbortAll">
753 <summary>Asynchronously aborts all of the tasks currently running within the container.</summary>
754 </member>
755 <member name="M:Gallio.Concurrency.TaskContainer.JoinAll(System.Nullable{System.TimeSpan})">
756 <summary>Waits for all of currently running tasks to terminate.</summary>
757 <param name="timeout">The maximum amount of time to wait for completion, or null to wait indefinitely</param>
758 <returns>True if no tasks are running as of the time this method exits, false if a timeout occurred while waiting</returns>
759 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="timeout" /> represents a negative time span</exception>
760 </member>
761 <member name="M:Gallio.Concurrency.TaskContainer.Watch(Gallio.Concurrency.Task)">
762 <summary>Adds a new task for this container to watch.</summary>
763 <param name="task">The task to monitor</param>
764 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="task" /> is null</exception>
765 </member>
766 <member name="E:Gallio.Concurrency.TaskContainer.TaskAborted">
767 <summary>Adds or removes an event handler that is signaled when any watched task is aborted.</summary>
768 </member>
769 <member name="E:Gallio.Concurrency.TaskContainer.TaskStarted">
770 <summary>Adds or removes an event handler that is signaled when any watched task is started.</summary>
771 </member>
772 <member name="E:Gallio.Concurrency.TaskContainer.TaskTerminated">
773 <summary>Adds or removes an event handler that is signaled when any watched task is terminated.</summary>
774 </member>
775 <member name="T:Gallio.Concurrency.TaskEventArgs">
776 <summary>A task-related event.</summary>
777 </member>
778 <member name="P:Gallio.Concurrency.TaskEventArgs.Task">
779 <summary>Gets the task that the event is about.</summary>
780 </member>
781 <member name="T:Gallio.Concurrency.TaskResult">
782 <summary>Holds the result of executing a task. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
783 </member>
784 <member name="P:Gallio.Concurrency.TaskResult.Exception">
785 <summary>Gets the exception that was encountered by the task and caused it to terminated, or null if no exception was thrown.</summary>
786 </member>
787 <member name="P:Gallio.Concurrency.TaskResult.Value">
788 <summary>Gets the value yielded by the task when it terminated, or null if an exception was thrown.</summary>
789 </member>
790 <member name="M:Gallio.Concurrency.TaskResult.CreateFromException(System.Exception)">
791 <summary>Creates a task result that contains the specified exception that was encountered by the task and caused it to terminate.</summary>
792 <param name="exception">The exception</param>
793 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" /> is null</exception>
794 </member>
795 <member name="M:Gallio.Concurrency.TaskResult.CreateFromValue(System.Object)">
796 <summary>Creates a task result that contains the specified value yielded by the task when it terminated.</summary>
797 <param name="value">The value</param>
798 </member>
799 <member name="M:Gallio.Concurrency.TaskResult.ToString">
800 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
801 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
802 </member>
803 <member name="T:Gallio.Concurrency.ThreadAbortScope">
804 <summary>
805 <para> A <see cref="T:Gallio.Concurrency.ThreadAbortScope" /> executes a block of code inside a special scope that is designed to issue and safely handle <see cref="M:System.Threading.Thread.Abort(System.Object)" /> on demand. </para>
806 <para> This class may be used as a primitive for implementing higher-level protected scopes for the purpose of asynchronous cancelation and time-limited execution. </para>
807 </summary>
808 </member>
809 <member name="M:Gallio.Concurrency.ThreadAbortScope.Abort">
810 <summary>Aborts the currently running action and prevents any further actions from running inside of this scope.</summary>
811 </member>
812 <member name="M:Gallio.Concurrency.ThreadAbortScope.Run(Gallio.Action)">
813 <summary>Runs an action inside of the scope.</summary>
814 <param name="action">The action to run</param>
815 <returns>The <see cref="T:System.Threading.ThreadAbortException" /> that was caught if the action was aborted, or null if the action completed normally</returns>
816 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
817 <exception cref="T:System.InvalidOperationException">Thrown if an action is already running in this scope</exception>
818 <exception cref="T:System.Exception">Any other exception thrown by <paramref name="action" /> itself</exception>
819 </member>
820 <member name="T:Gallio.Concurrency.ThreadTask">
821 <summary>An implementation of <see cref="T:Gallio.Concurrency.Task" /> based on a locally running thread.</summary>
822 </member>
823 <member name="P:Gallio.Concurrency.ThreadTask.ApartmentState">
824 <summary>Gets or sets the desired <see cref="P:Gallio.Concurrency.ThreadTask.ApartmentState" /> to use for the thread when it is started.</summary>
825 <value>The default value is <see cref="F:System.Threading.ApartmentState.Unknown" /> which causes the new thread to use the runtime's default apartment state.</value>
826 <exception cref="T:System.InvalidOperationException">Thrown if this method is called after the thread has started</exception>
827 </member>
828 <member name="P:Gallio.Concurrency.ThreadTask.Thread">
829 <summary>Gets the thread on which the task is running, or null if the task is not running.</summary>
830 </member>
831 <member name="M:Gallio.Concurrency.ThreadTask.AbortImpl">
832 <summary>Aborts the task.</summary>
833 </member>
834 <member name="M:Gallio.Concurrency.ThreadTask.JoinImpl(System.Nullable{System.TimeSpan})">
835 <summary>Waits for the task to terminate.</summary>
836 <param name="timeout">The timeout, or null to wait indefinitely</param>
837 <returns>True if the task is not running as of the time this method exits, false if a timeout occurred while waiting</returns>
838 </member>
839 <member name="M:Gallio.Concurrency.ThreadTask.StartImpl">
840 <summary>Starts the task.</summary>
841 </member>
842 <member name="T:Gallio.Framework.Attachment">
843 <summary>An attachment is an embedded object in an execution log. An attachment must specify a content type (a MIME type), and some contents. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
844 </member>
845 <member name="P:Gallio.Framework.Attachment.ContentType">
846 <summary>Gets the content type of the attachment specified as a MIME type, not null. <seealso cref="T:Gallio.Utilities.MimeTypes" /> for definitions of common supported MIME types.</summary>
847 </member>
848 <member name="P:Gallio.Framework.Attachment.Name">
849 <summary>Gets the name of the attachment, not null.</summary>
850 </member>
851 <member name="M:Gallio.Framework.Attachment.CreateHtmlAttachment(System.String,System.String)">
852 <summary>Creates an HTML attachment.</summary>
853 <param name="name">The attachment name, or null to automatically assign one</param>
854 <param name="html">The html string, not null</param>
855 <returns>The attachment</returns>
856 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="html" /> is null</exception>
857 </member>
858 <member name="M:Gallio.Framework.Attachment.CreateImageAttachment(System.String,System.Drawing.Image)">
859 <summary>Embeds an image attachment with a mime-type compatible with its internal representation.</summary>
860 <param name="name">The attachment name, or null to automatically assign one</param>
861 <param name="image">The image to attach</param>
862 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="image" /> is null</exception>
863 </member>
864 <member name="M:Gallio.Framework.Attachment.CreateObjectAsXmlAttachment(System.String,System.Object,System.Xml.Serialization.XmlSerializer)">
865 <summary>Embeds an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the specified serializer. <seealso cref="T:System.Xml.Serialization.XmlSerializer" /></summary>
866 <param name="name">The attachment name, or null to automatically assign one</param>
867 <param name="obj">The object to serialize and embed, must not be null</param>
868 <param name="xmlSerializer">The xml serializer to use, or null to use the default based on the object's type</param>
869 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
870 </member>
871 <member name="M:Gallio.Framework.Attachment.CreatePlainTextAttachment(System.String,System.String)">
872 <summary>Creates a plain text attachment.</summary>
873 <param name="name">The attachment name, or null to automatically assign one</param>
874 <param name="text">The text string, not null</param>
875 <returns>The attachment</returns>
876 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="text" /> is null</exception>
877 </member>
878 <member name="M:Gallio.Framework.Attachment.CreateXHtmlAttachment(System.String,System.String)">
879 <summary>Creates an XHTML attachment.</summary>
880 <param name="name">The attachment name, or null to automatically assign one</param>
881 <param name="xhtml">The xhtml string, not null</param>
882 <returns>The attachment</returns>
883 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xhtml" /> is null</exception>
884 </member>
885 <member name="M:Gallio.Framework.Attachment.CreateXmlAttachment(System.String,System.String)">
886 <summary>Creates an XML attachment.</summary>
887 <param name="name">The attachment name, or null to automatically assign one</param>
888 <param name="xml">The XML string, not null</param>
889 <returns>The attachment</returns>
890 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xml" /> is null</exception>
891 </member>
892 <member name="T:Gallio.Framework.BinaryAttachment">
893 <summary>Represents a binary-encoded attachments. This class cannot be inherited.</summary>
894 </member>
895 <member name="P:Gallio.Framework.BinaryAttachment.Data">
896 <summary>Gets the binary content of the attachment, not null.</summary>
897 </member>
898 <member name="T:Gallio.Framework.Context">
899 <summary>
900 <para> The context provides information about the environment in which a test is executing. A new context is created each time a test or test step begins execution. </para>
901 <para> Contexts are arranged in a hierarchy that corresponds to the order in which the contexts were entered. Thus the context for a test likely has as its parent the context for its containing test fixture. </para>
902 <para> Arbitrary user data can be associated with a context. Furthermore, client code may attach <see cref="E:Gallio.Framework.Context.Finishing" /> event handlers to perform resource reclamation just prior to marking the test step as finished. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
903 </member>
904 <member name="P:Gallio.Framework.Context.AssertCount">
905 <summary>Gets the current assertion count.</summary>
906 </member>
907 <member name="P:Gallio.Framework.Context.CurrentContext">
908 <summary>Gets the context of the current thread, or null if there is no current context.</summary>
909 </member>
910 <member name="P:Gallio.Framework.Context.Data">
911 <summary>
912 <para> Gets the user data collection associated with the context. It may be used to associate arbitrary key/value pairs with the context. </para>
913 <para> When a new child context is created, it inherits a copy of its parent's data. </para>
914 </summary>
915 </member>
916 <member name="P:Gallio.Framework.Context.GlobalContext">
917 <summary>Gets the global context of the environment, or null if there is no such context.</summary>
918 </member>
919 <member name="P:Gallio.Framework.Context.IsFinished">
920 <summary>Returns true if the step associated with the context has finished execution and completed all <see cref="E:Gallio.Framework.Context.Finishing" /> actions.</summary>
921 </member>
922 <member name="P:Gallio.Framework.Context.LifecyclePhase">
923 <summary>Gets or sets the lifecycle phase the context is in.</summary>
924 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
925 </member>
926 <member name="P:Gallio.Framework.Context.LogWriter">
927 <summary>
928 <para> Gets the log writer for this context. </para>
929 <para> Each test step gets its own log writer that is distinct from those of other steps. So the log writer returned by this property is particular to the step represented by this test context. </para>
930 </summary>
931 </member>
932 <member name="P:Gallio.Framework.Context.Outcome">
933 <summary>
934 <para> Gets the step's outcome or its interim outcome if the test is still running. </para>
935 <para> The value of this property is initially <see cref="P:Gallio.Model.TestOutcome.Passed" /> but may change over the course of execution to reflect the anticipated outcome of the test. When the test finishes, its outcome is frozen. </para>
936 </summary>
937 </member>
938 <member name="P:Gallio.Framework.Context.Parent">
939 <summary>Gets the parent context or null if this context has no parent.</summary>
940 </member>
941 <member name="P:Gallio.Framework.Context.Sandbox">
942 <summary>Gets the sandbox of the test step, or null if none.</summary>
943 </member>
944 <member name="P:Gallio.Framework.Context.Test">
945 <summary>Gets the test associated with the context.</summary>
946 </member>
947 <member name="P:Gallio.Framework.Context.TestStep">
948 <summary>Gets the test step associated with the context.</summary>
949 </member>
950 <member name="M:Gallio.Framework.Context.AddAssertCount(System.Int32)">
951 <summary>Adds the specified amount to the assert count atomically.</summary>
952 <param name="value">The amount to add to the assert count</param>
953 </member>
954 <member name="M:Gallio.Framework.Context.AddMetadata(System.String,System.String)">
955 <summary>Adds metadata to the step that is running in the context.</summary>
956 <param name="metadataKey">The metadata key</param>
957 <param name="metadataValue">The metadata value</param>
958 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="metadataKey" /> or <paramref name="metadataValue" /> is null</exception>
959 </member>
960 <member name="M:Gallio.Framework.Context.Enter">
961 <summary>Enters this context with the current thread.</summary>
962 <returns>A cookie that can be used to restore the current thread's context to its previous value</returns>
963 </member>
964 <member name="M:Gallio.Framework.Context.EnterContext(Gallio.Framework.Context)">
965 <summary>Enters the specified context with the current thread.</summary>
966 <param name="context">The context to enter, or null to enter a scope without a context</param>
967 <returns>A cookie that can be used to restore the current thread's context to its previous value</returns>
968 </member>
969 <member name="M:Gallio.Framework.Context.GetThreadDefaultContext(System.Threading.Thread)">
970 <summary>Gets the default context for the specified thread.</summary>
971 <param name="thread">The thread</param>
972 <returns>The default context</returns>
973 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="thread" /> is null</exception>
974 </member>
975 <member name="M:Gallio.Framework.Context.IncrementAssertCount">
976 <summary>Increments the assert count atomically.</summary>
977 </member>
978 <member name="M:Gallio.Framework.Context.RunStep(System.String,Gallio.Action)">
979 <summary>
980 <para> Performs an action as a new step within the current context and associates it with the calling function. </para>
981 <para> This method creates a new child context with a new nested <see cref="T:Gallio.Model.ITestStep" />, enters the child context, performs the action, then exits the child context. </para>
982 </summary>
983 <param name="name">The name of the step</param>
984 <param name="action">The action to perform</param>
985 <returns>The context of the step that ran</returns>
986 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> or <paramref name="action" /> is null</exception>
987 <exception cref="T:System.ArgumentException">Thrown if <paramref name="name" /> is the empty string</exception>
988 <exception cref="T:System.Exception">Any exception thrown by the action</exception>
989 </member>
990 <member name="M:Gallio.Framework.Context.RunStep(System.String,Gallio.Reflection.ICodeElementInfo,Gallio.Action)">
991 <summary>
992 <para> Performs an action as a new step within the current context and associates it with the specified code reference. </para>
993 <para> This method creates a new child context with a new nested <see cref="T:Gallio.Model.ITestStep" />, enters the child context, performs the action, then exits the child context. </para>
994 </summary>
995 <param name="name">The name of the step</param>
996 <param name="codeElement">The associated code element, or null if none</param>
997 <param name="action">The action to perform</param>
998 <returns>The context of the step that ran</returns>
999 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> or <paramref name="action" /> is null</exception>
1000 <exception cref="T:System.ArgumentException">Thrown if <paramref name="name" /> is the empty string</exception>
1001 <exception cref="T:System.Exception">Any exception thrown by the action</exception>
1002 </member>
1003 <member name="M:Gallio.Framework.Context.SetInterimOutcome(Gallio.Model.TestOutcome)">
1004 <summary>Sets the step's interim <see cref="P:Gallio.Framework.Context.Outcome" />. The interim outcome is used to communicate the anticipated outcome of the step to later phases of execution.</summary>
1005 <exception cref="T:System.InvalidOperationException">Thrown if attempting to set the outcome while the test is not running</exception>
1006 </member>
1007 <member name="M:Gallio.Framework.Context.SetThreadDefaultContext(System.Threading.Thread,Gallio.Framework.Context)">
1008 <summary>Sets the default context for the specified thread.</summary>
1009 <param name="thread">The thread</param>
1010 <param name="context">The context to associate with the thread, or null to reset the thread's default context to inherit the <see cref="P:Gallio.Framework.Context.GlobalContext" /> once again</param>
1011 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="thread" /> is null</exception>
1012 </member>
1013 <member name="E:Gallio.Framework.Context.Finishing">
1014 <summary>The <see cref="E:Gallio.Framework.Context.Finishing" /> event is raised when the test is finishing to provide clients with an opportunity to perform additional clean up tasks after all ordinary test processing is finished.</summary>
1015 </member>
1016 <member name="T:Gallio.Framework.Log">
1017 <summary>
1018 <para> The log class provides services for writing information to the execution log associated with a test. </para>
1019 <para> An execution log records the output of a test during its execution including any text that was written to console output streams, exceptions that occurred, and anything else the test writer might want to save. </para>
1020 <para> A log consists of zero or more log streams that are opened automatically on demand to capture independent sequences of log output. Each stream can further be broken down into possibly nested sections to classify output during different phases of test execution (useful for drilling into complex tests). In addition to text, a log can contain attachments that are either attached at the top level of the log or embedded into log streams. Attachments are typed by mime-type and can contain Text, Xml, Images, Blobs, or any other content. Certain test frameworks may automatically create attachments to gather all manner of diagnostic information over the course of the test. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1021 </member>
1022 <member name="P:Gallio.Framework.Log.ConsoleError">
1023 <summary>Gets the current stream writer for the built-in log stream where the <see cref="P:System.Console.Error" /> stream for the test is recorded.</summary>
1024 </member>
1025 <member name="P:Gallio.Framework.Log.ConsoleInput">
1026 <summary>Gets the current stream writer for the built-in log stream where the <see cref="P:System.Console.In" /> stream for the test is recorded.</summary>
1027 </member>
1028 <member name="P:Gallio.Framework.Log.ConsoleOutput">
1029 <summary>Gets the current stream writer for the built-in log stream where the <see cref="P:System.Console.Out" /> stream for the test is recorded.</summary>
1030 </member>
1031 <member name="P:Gallio.Framework.Log.DebugTrace">
1032 <summary>Gets the current stream writer for the built-in log stream where diagnostic <see cref="T:System.Diagnostics.Debug" /> and <see cref="T:System.Diagnostics.Trace" /> information is recorded.</summary>
1033 </member>
1034 <member name="P:Gallio.Framework.Log.Default">
1035 <summary>Gets the current stream writer for the built-in log stream where the output from the convenience methods of the <see cref="T:Gallio.Framework.Log" /> class is recorded.</summary>
1036 </member>
1037 <member name="P:Gallio.Framework.Log.Failures">
1038 <summary>Gets the current stream writer for the built-in log stream where assertion failures, exceptions and other failure data are recorded.</summary>
1039 </member>
1040 <member name="P:Gallio.Framework.Log.Warnings">
1041 <summary>Gets the current stream writer for the built-in log stream where warnings are recorded.</summary>
1042 </member>
1043 <member name="P:Gallio.Framework.Log.Writer">
1044 <summary>Gets the current log writer.</summary>
1045 <value>The execution log, never null</value>
1046 <exception cref="T:System.InvalidOperationException">Thrown if there is no current log writer</exception>
1047 </member>
1048 <member name="M:Gallio.Framework.Log.Attach(Gallio.Framework.Attachment)">
1049 <summary>Attaches an attachment to the execution log. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1050 <param name="attachment">The attachment to include</param>
1051 <returns>The attachment</returns>
1052 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachment" /> is null</exception>
1053 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1054 </member>
1055 <member name="M:Gallio.Framework.Log.AttachHtml(System.String,System.String)">
1056 <summary>Attaches an HTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Html" />. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1057 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1058 <param name="html">The HTML to attach</param>
1059 <returns>The attachment</returns>
1060 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="html" /> is null</exception>
1061 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1062 </member>
1063 <member name="M:Gallio.Framework.Log.AttachImage(System.String,System.Drawing.Image)">
1064 <summary>Attaches an image attachment with a mime-type compatible with its internal representation. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1065 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1066 <param name="image">The image to attach</param>
1067 <returns>The attachment</returns>
1068 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="image" /> is null</exception>
1069 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1070 </member>
1071 <member name="M:Gallio.Framework.Log.AttachObjectAsXml(System.String,System.Object)">
1072 <summary>Attaches an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the default <see cref="T:System.Xml.Serialization.XmlSerializer" /> for the object's type. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1073 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1074 <param name="obj">The object to serialize and embed, must not be null</param>
1075 <returns>The attachment</returns>
1076 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1077 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1078 </member>
1079 <member name="M:Gallio.Framework.Log.AttachObjectAsXml(System.String,System.Object,System.Xml.Serialization.XmlSerializer)">
1080 <summary>Attaches an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the specified <see cref="T:System.Xml.Serialization.XmlSerializer" />. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1081 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1082 <param name="obj">The object to serialize and embed, must not be null</param>
1083 <param name="xmlSerializer">The <see cref="T:System.Xml.Serialization.XmlSerializer" /> to use, or null to use the default <see cref="T:System.Xml.Serialization.XmlSerializer" nolink="true" /> for the object's type</param>
1084 <returns>The attachment</returns>
1085 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1086 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1087 </member>
1088 <member name="M:Gallio.Framework.Log.AttachPlainText(System.String,System.String)">
1089 <summary>Attaches an plain text attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.PlainText" />. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1090 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1091 <param name="text">The text to attach</param>
1092 <returns>The attachment</returns>
1093 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="text" /> is null</exception>
1094 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1095 </member>
1096 <member name="M:Gallio.Framework.Log.AttachXHtml(System.String,System.String)">
1097 <summary>Attaches an XHTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.XHtml" />. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1098 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1099 <param name="xhtml">The XHTML to attach</param>
1100 <returns>The attachment</returns>
1101 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xhtml" /> is null</exception>
1102 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1103 </member>
1104 <member name="M:Gallio.Framework.Log.AttachXml(System.String,System.String)">
1105 <summary>Attaches an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" />. <para> This is a convenience method that forwards the request to the current log writer as returned by the <see cref="P:Gallio.Framework.Log.Writer" /> property. </para></summary>
1106 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1107 <param name="xml">The XML to attach</param>
1108 <returns>The attachment</returns>
1109 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xml" /> is null</exception>
1110 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1111 </member>
1112 <member name="M:Gallio.Framework.Log.BeginSection(System.String)">
1113 <summary>
1114 <para> Begins a section with the specified name. Execution log sections may be nested. </para>
1115 <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para>
1116 </summary>
1117 <param name="sectionName">The name of the section</param>
1118 <returns>A Disposable object that calls <see cref="M:Gallio.Framework.Log.EndSection" /> when disposed. This is a convenience for using the C# "using" statement to contain log stream sections.</returns>
1119 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sectionName" /> is null</exception>
1120 </member>
1121 <member name="M:Gallio.Framework.Log.Embed(Gallio.Framework.Attachment)">
1122 <summary>Embeds an attachment into the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1123 <param name="attachment">The attachment to embed</param>
1124 <returns>The attachment</returns>
1125 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachment" /> is null</exception>
1126 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1127 </member>
1128 <member name="M:Gallio.Framework.Log.EmbedExisting(System.String)">
1129 <summary>Embeds an existing attachment into the stream. This method can be used to repeatedly embed an existing attachment at multiple points in multiple streams without needing to keep the <see cref="T:Gallio.Framework.Attachment" /> instance itself around. This can help to reduce memory footprint since the original <see cref="T:Gallio.Framework.Attachment" nolink="true" /> instance can be garbage collected shortly after it is first attached. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1130 <param name="attachmentName">The name of the existing attachment to embed</param>
1131 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachmentName" /> is null</exception>
1132 <exception cref="T:System.InvalidOperationException">Thrown if no attachment with the specified name has been attached to the log</exception>
1133 </member>
1134 <member name="M:Gallio.Framework.Log.EmbedHtml(System.String,System.String)">
1135 <summary>Embeds an HTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Html" />. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1136 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1137 <param name="html">The HTML to attach</param>
1138 <returns>The attachment</returns>
1139 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="html" /> is null</exception>
1140 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1141 </member>
1142 <member name="M:Gallio.Framework.Log.EmbedImage(System.String,System.Drawing.Image)">
1143 <summary>Embeds an image attachment with a mime-type compatible with its internal representation. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1144 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1145 <param name="image">The image to attach</param>
1146 <returns>The attachment</returns>
1147 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="image" /> is null</exception>
1148 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1149 </member>
1150 <member name="M:Gallio.Framework.Log.EmbedObjectAsXml(System.String,System.Object)">
1151 <summary>Embeds an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the default <see cref="T:System.Xml.Serialization.XmlSerializer" /> for the object's type. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1152 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1153 <param name="obj">The object to serialize and embed, must not be null</param>
1154 <returns>The attachment</returns>
1155 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1156 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1157 </member>
1158 <member name="M:Gallio.Framework.Log.EmbedObjectAsXml(System.String,System.Object,System.Xml.Serialization.XmlSerializer)">
1159 <summary>Embeds an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the specified <see cref="T:System.Xml.Serialization.XmlSerializer" />. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1160 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1161 <param name="obj">The object to serialize and embed, must not be null</param>
1162 <param name="xmlSerializer">The <see cref="T:System.Xml.Serialization.XmlSerializer" /> to use, or null to use the default <see cref="T:System.Xml.Serialization.XmlSerializer" nolink="true" /> for the object's type</param>
1163 <returns>The attachment</returns>
1164 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1165 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1166 </member>
1167 <member name="M:Gallio.Framework.Log.EmbedPlainText(System.String,System.String)">
1168 <summary>Embeds an plain text attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.PlainText" />. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1169 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1170 <param name="text">The text to attach</param>
1171 <returns>The attachment</returns>
1172 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="text" /> is null</exception>
1173 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1174 </member>
1175 <member name="M:Gallio.Framework.Log.EmbedXHtml(System.String,System.String)">
1176 <summary>Embeds an XHTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.XHtml" />. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1177 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1178 <param name="xhtml">The XHTML to attach</param>
1179 <returns>The attachment</returns>
1180 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xhtml" /> is null</exception>
1181 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1182 </member>
1183 <member name="M:Gallio.Framework.Log.EmbedXml(System.String,System.String)">
1184 <summary>Embeds an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" />. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1185 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1186 <param name="xml">The XML to attach</param>
1187 <returns>The attachment</returns>
1188 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xml" /> is null</exception>
1189 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1190 </member>
1191 <member name="M:Gallio.Framework.Log.EndSection">
1192 <summary>
1193 <para> Ends the current section. </para>
1194 <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para>
1195 </summary>
1196 <exception cref="T:System.InvalidOperationException">Thrown if there is no current section</exception>
1197 </member>
1198 <member name="M:Gallio.Framework.Log.Write(System.Char)">
1199 <summary>Writes a character to the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1200 <param name="value">The character value</param>
1201 </member>
1202 <member name="M:Gallio.Framework.Log.Write(System.String)">
1203 <summary>Writes a string to the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1204 <param name="value">The string value</param>
1205 </member>
1206 <member name="M:Gallio.Framework.Log.Write(System.Object)">
1207 <summary>Writes a formatted object to the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1208 <param name="value">The object value</param>
1209 </member>
1210 <member name="M:Gallio.Framework.Log.Write(System.Char[])">
1211 <summary>Writes an array of characters to the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1212 <param name="value">The array of characters</param>
1213 </member>
1214 <member name="M:Gallio.Framework.Log.Write(System.Char[],System.Int32,System.Int32)">
1215 <summary>Writes an array of characters to the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1216 <param name="buffer">The character buffer</param>
1217 <param name="index">The index of the first character in the buffer to write</param>
1218 <param name="count">The number of characters from the buffer to write</param>
1219 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="buffer" /> is null</exception>
1220 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="index" /> or <paramref name="count" /> are out of range</exception>
1221 </member>
1222 <member name="M:Gallio.Framework.Log.Write(System.String,System.Object[])">
1223 <summary>Writes a formatted string to the stream. <seealso cref="M:System.String.Format(System.String,System.Object[])" /><para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1224 <param name="format">The format string</param>
1225 <param name="args">The format string arguments</param>
1226 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="format" /> is null</exception>
1227 </member>
1228 <member name="M:Gallio.Framework.Log.WriteException(System.Exception)">
1229 <summary>Writes an exception to the log within its own section with the name "Exception".</summary>
1230 <param name="exception">The exception to write</param>
1231 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" /> is null</exception>
1232 </member>
1233 <member name="M:Gallio.Framework.Log.WriteException(System.Exception,System.String)">
1234 <summary>Writes an exception to the log within its own section with the specified name.</summary>
1235 <param name="exception">The exception to write</param>
1236 <param name="sectionName">The section name</param>
1237 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" />, or <paramref name="sectionName" /> is null</exception>
1238 </member>
1239 <member name="M:Gallio.Framework.Log.WriteException(System.Exception,System.String,System.Object[])">
1240 <summary>Writes an exception to the log within its own section with the specified name.</summary>
1241 <param name="exception">The exception to write</param>
1242 <param name="sectionNameFormat">The section name format string</param>
1243 <param name="sectionNameArgs">The section name arguments</param>
1244 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" />, <paramref name="sectionNameFormat" /> or <paramref name="sectionNameArgs" /> is null</exception>
1245 </member>
1246 <member name="M:Gallio.Framework.Log.WriteLine">
1247 <summary>Writes a line delimiter to the stream. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1248 </member>
1249 <member name="M:Gallio.Framework.Log.WriteLine(System.Char)">
1250 <summary>Writes a character to the stream followed by a line delimiter. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1251 <param name="value">The character value</param>
1252 </member>
1253 <member name="M:Gallio.Framework.Log.WriteLine(System.String)">
1254 <summary>Writes a string to the stream followed by a line delimiter. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1255 <param name="value">The string value</param>
1256 </member>
1257 <member name="M:Gallio.Framework.Log.WriteLine(System.Object)">
1258 <summary>Writes a formatted object to the stream followed by a line delimiter. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1259 <param name="value">The object value</param>
1260 </member>
1261 <member name="M:Gallio.Framework.Log.WriteLine(System.Char[])">
1262 <summary>Writes an array of characters to the stream followed by a line delimiter. <para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1263 <param name="value">The array of characters</param>
1264 </member>
1265 <member name="M:Gallio.Framework.Log.WriteLine(System.String,System.Object[])">
1266 <summary>Writes a formatted string to the stream followed by a line delimiter. <seealso cref="M:System.String.Format(System.String,System.Object[])" /><para> This is a convenience method that forwards the request to the current default log stream writer as returned by the <see cref="P:Gallio.Framework.Log.Default" /> property. </para></summary>
1267 <param name="format">The format string</param>
1268 <param name="args">The format string arguments</param>
1269 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="format" /> is null</exception>
1270 </member>
1271 <member name="T:Gallio.Framework.LogStreamWriter">
1272 <summary>A log stream writer provides methods for writing text and embedded attachments to a named stream within a log. Each log may contain many streams. Each stream may be further subdivided into sections. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1273 </member>
1274 <member name="P:Gallio.Framework.LogStreamWriter.Encoding">
1275 <summary>When overridden in a derived class, returns the <see cref="T:System.Text.Encoding" /> in which the output is written.</summary>
1276 <value>The Encoding in which the output is written.</value>
1277 </member>
1278 <member name="P:Gallio.Framework.LogStreamWriter.NewLine">
1279 <summary>Gets or sets the line terminator string used by the current TextWriter.</summary>
1280 <value>The line terminator string for the current TextWriter.</value>
1281 </member>
1282 <member name="P:Gallio.Framework.LogStreamWriter.StreamName">
1283 <summary>Gets the name of the log stream being written.</summary>
1284 </member>
1285 <member name="M:Gallio.Framework.LogStreamWriter.BeginSection(System.String)">
1286 <summary>Begins a section with the specified name. Execution log sections may be nested.</summary>
1287 <param name="sectionName">The name of the section</param>
1288 <returns>A Disposable object that calls <see cref="M:Gallio.Framework.LogStreamWriter.EndSection" /> when disposed. This is a convenience for using the C# "using" statement to contain log stream sections.</returns>
1289 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sectionName" /> is null</exception>
1290 </member>
1291 <member name="M:Gallio.Framework.LogStreamWriter.BeginSectionImpl(System.String)">
1292 <summary>Begins a section.</summary>
1293 <param name="sectionName">The name of the section to begin, never null</param>
1294 </member>
1295 <member name="M:Gallio.Framework.LogStreamWriter.Dispose(System.Boolean)">
1296 <summary>This method does not make sense for a log stream writer because a stream cannot be closed independently of its containing log.</summary>
1297 </member>
1298 <member name="M:Gallio.Framework.LogStreamWriter.Embed(Gallio.Framework.Attachment)">
1299 <summary>Embeds an attachment into the stream.</summary>
1300 <param name="attachment">The attachment to embed</param>
1301 <returns>The attachment</returns>
1302 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachment" /> is null</exception>
1303 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1304 </member>
1305 <member name="M:Gallio.Framework.LogStreamWriter.EmbedExisting(System.String)">
1306 <summary>Embeds an existing attachment into the stream. This method can be used to repeatedly embed an existing attachment at multiple points in multiple streams without needing to keep the <see cref="T:Gallio.Framework.Attachment" /> instance itself around. This can help to reduce memory footprint since the original <see cref="T:Gallio.Framework.Attachment" nolink="true" /> instance can be garbage collected shortly after it is first attached.</summary>
1307 <param name="attachmentName">The name of the existing attachment to embed</param>
1308 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachmentName" /> is null</exception>
1309 <exception cref="T:System.InvalidOperationException">Thrown if no attachment with the specified name has been attached to the log</exception>
1310 </member>
1311 <member name="M:Gallio.Framework.LogStreamWriter.EmbedExistingImpl(System.String)">
1312 <summary>Adds previously attached attachment to the execution log and embeds it in this stream at the current location.</summary>
1313 <param name="attachmentName">The name of the attachment to write, never null</param>
1314 <exception cref="T:System.InvalidOperationException">Thrown if no attachment with the specified name has been attached to the log</exception>
1315 </member>
1316 <member name="M:Gallio.Framework.LogStreamWriter.EmbedHtml(System.String,System.String)">
1317 <summary>Embeds an HTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Html" />.</summary>
1318 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1319 <param name="html">The HTML to attach</param>
1320 <returns>The attachment</returns>
1321 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="html" /> is null</exception>
1322 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1323 </member>
1324 <member name="M:Gallio.Framework.LogStreamWriter.EmbedImage(System.String,System.Drawing.Image)">
1325 <summary>Embeds an image attachment with a mime-type compatible with its internal representation.</summary>
1326 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1327 <param name="image">The image to attach</param>
1328 <returns>The attachment</returns>
1329 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="image" /> is null</exception>
1330 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1331 </member>
1332 <member name="M:Gallio.Framework.LogStreamWriter.EmbedImpl(Gallio.Framework.Attachment)">
1333 <summary>Adds an attachment to the execution log and embeds it in this stream at the current location.</summary>
1334 <param name="attachment">The attachment to write, never null</param>
1335 <exception cref="T:System.InvalidOperationException">Thrown if a different attachment instance with the same name was already written</exception>
1336 </member>
1337 <member name="M:Gallio.Framework.LogStreamWriter.EmbedObjectAsXml(System.String,System.Object)">
1338 <summary>Embeds an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the default <see cref="T:System.Xml.Serialization.XmlSerializer" /> for the object's type.</summary>
1339 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1340 <param name="obj">The object to serialize and embed, must not be null</param>
1341 <returns>The attachment</returns>
1342 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1343 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1344 </member>
1345 <member name="M:Gallio.Framework.LogStreamWriter.EmbedObjectAsXml(System.String,System.Object,System.Xml.Serialization.XmlSerializer)">
1346 <summary>Embeds an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the specified <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
1347 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1348 <param name="obj">The object to serialize and embed, must not be null</param>
1349 <param name="xmlSerializer">The <see cref="T:System.Xml.Serialization.XmlSerializer" /> to use, or null to use the default <see cref="T:System.Xml.Serialization.XmlSerializer" nolink="true" /> for the object's type</param>
1350 <returns>The attachment</returns>
1351 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1352 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1353 </member>
1354 <member name="M:Gallio.Framework.LogStreamWriter.EmbedPlainText(System.String,System.String)">
1355 <summary>Embeds an plain text attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.PlainText" />.</summary>
1356 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1357 <param name="text">The text to attach</param>
1358 <returns>The attachment</returns>
1359 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="text" /> is null</exception>
1360 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1361 </member>
1362 <member name="M:Gallio.Framework.LogStreamWriter.EmbedXHtml(System.String,System.String)">
1363 <summary>Embeds an XHTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.XHtml" />.</summary>
1364 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1365 <param name="xhtml">The XHTML to attach</param>
1366 <returns>The attachment</returns>
1367 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xhtml" /> is null</exception>
1368 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1369 </member>
1370 <member name="M:Gallio.Framework.LogStreamWriter.EmbedXml(System.String,System.String)">
1371 <summary>Embeds an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" />.</summary>
1372 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1373 <param name="xml">The XML to attach</param>
1374 <returns>The attachment</returns>
1375 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xml" /> is null</exception>
1376 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1377 </member>
1378 <member name="M:Gallio.Framework.LogStreamWriter.EndSection">
1379 <summary>Ends the current section.</summary>
1380 <exception cref="T:System.InvalidOperationException">Thrown if there is no current section</exception>
1381 </member>
1382 <member name="M:Gallio.Framework.LogStreamWriter.EndSectionImpl">
1383 <summary>Ends the current section.</summary>
1384 <exception cref="T:System.InvalidOperationException">Thrown if there is no current section</exception>
1385 </member>
1386 <member name="M:Gallio.Framework.LogStreamWriter.Flush">
1387 <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
1388 </member>
1389 <member name="M:Gallio.Framework.LogStreamWriter.FlushImpl">
1390 <summary>Flushes the stream.</summary>
1391 </member>
1392 <member name="M:Gallio.Framework.LogStreamWriter.Write(System.String)">
1393 <summary>Writes a string to the text stream.</summary>
1394 <param name="value">The string to write.</param>
1395 </member>
1396 <member name="M:Gallio.Framework.LogStreamWriter.Write(System.Char[],System.Int32,System.Int32)">
1397 <summary>Writes a subarray of characters to the text stream.</summary>
1398 <param name="buffer">The character array to write data from.</param>
1399 <param name="index">Starting index in the buffer.</param>
1400 <param name="count">The number of characters to write.</param>
1401 </member>
1402 <member name="M:Gallio.Framework.LogStreamWriter.WriteException(System.Exception)">
1403 <summary>Writes an exception to the log within its own section with the name "Exception".</summary>
1404 <param name="exception">The exception to write</param>
1405 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" /> is null</exception>
1406 </member>
1407 <member name="M:Gallio.Framework.LogStreamWriter.WriteException(System.Exception,System.String)">
1408 <summary>Writes an exception to the log within its own section with the specified name.</summary>
1409 <param name="exception">The exception to write</param>
1410 <param name="sectionName">The section name</param>
1411 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" />, or <paramref name="sectionName" /> is null</exception>
1412 </member>
1413 <member name="M:Gallio.Framework.LogStreamWriter.WriteException(System.Exception,System.String,System.Object[])">
1414 <summary>Writes an exception to the log within its own section with the specified name.</summary>
1415 <param name="exception">The exception to write</param>
1416 <param name="sectionNameFormat">The section name format string</param>
1417 <param name="sectionNameArgs">The section name arguments</param>
1418 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="exception" />, <paramref name="sectionNameFormat" /> or <paramref name="sectionNameArgs" /> is null</exception>
1419 </member>
1420 <member name="M:Gallio.Framework.LogStreamWriter.WriteImpl(System.String)">
1421 <summary>Writes a text string to the execution log.</summary>
1422 <param name="text">The text to write, never null</param>
1423 </member>
1424 <member name="T:Gallio.Framework.LogWriter">
1425 <summary>
1426 <para> A log records the output of a test during its execution including any text that was written to console output streams, exceptions that occurred, and anything else the test writer might want to save. </para>
1427 <para> A log consists of zero or more log streams that are opened automatically on demand to capture independent sequences of log output. Each stream can further be broken down into possibly nested sections to classify output during different phases of test execution (useful for drilling into complex tests). In addition to text, a log can contain attachments that are either attached at the top level of the log or embedded into log streams. Attachments are typed by mime-type and can contain Text, Xml, Images, Blobs, or any other content. Certain test frameworks may automatically create attachments to gather all manner of diagnostic information over the course of the test. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1428 </member>
1429 <member name="P:Gallio.Framework.LogWriter.ConsoleError">
1430 <summary>Gets the stream writer for the built-in log stream where the <see cref="P:System.Console.Error" /> stream for the test is recorded.</summary>
1431 </member>
1432 <member name="P:Gallio.Framework.LogWriter.ConsoleInput">
1433 <summary>Gets the stream writer for the built-in log stream where the <see cref="P:System.Console.In" /> stream for the test is recorded.</summary>
1434 </member>
1435 <member name="P:Gallio.Framework.LogWriter.ConsoleOutput">
1436 <summary>Gets the stream writer for the built-in log stream where the <see cref="P:System.Console.Out" /> stream for the test is recorded.</summary>
1437 </member>
1438 <member name="P:Gallio.Framework.LogWriter.DebugTrace">
1439 <summary>Gets the stream writer for the built-in log stream where diagnostic <see cref="T:System.Diagnostics.Debug" /> and <see cref="T:System.Diagnostics.Trace" /> information is recorded.</summary>
1440 </member>
1441 <member name="P:Gallio.Framework.LogWriter.Default">
1442 <summary>Gets the stream writer for the built-in log stream where the output from the convenience methods of the <see cref="T:Gallio.Framework.Log" /> class is recorded.</summary>
1443 </member>
1444 <member name="P:Gallio.Framework.LogWriter.Failures">
1445 <summary>Gets the stream writer for the built-in log stream where assertion failures, exceptions and other failure data are recorded.</summary>
1446 </member>
1447 <member name="P:Gallio.Framework.LogWriter.Item(System.String)">
1448 <summary>Gets the log stream with the specified name. If the stream does not exist, it is created on demand.</summary>
1449 <param name="streamName">The name of the log stream</param>
1450 <value>The log stream</value>
1451 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="streamName" /> is null</exception>
1452 </member>
1453 <member name="P:Gallio.Framework.LogWriter.Warnings">
1454 <summary>Gets the stream writer for the built-in log stream where warnings are recorded.</summary>
1455 </member>
1456 <member name="M:Gallio.Framework.LogWriter.Attach(Gallio.Framework.Attachment)">
1457 <summary>Attaches an attachment to the execution log.</summary>
1458 <param name="attachment">The attachment to include</param>
1459 <returns>The attachment</returns>
1460 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachment" /> is null</exception>
1461 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1462 </member>
1463 <member name="M:Gallio.Framework.LogWriter.AttachHtml(System.String,System.String)">
1464 <summary>Attaches an HTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Html" />.</summary>
1465 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1466 <param name="html">The HTML to attach</param>
1467 <returns>The attachment</returns>
1468 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="html" /> is null</exception>
1469 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1470 </member>
1471 <member name="M:Gallio.Framework.LogWriter.AttachImage(System.String,System.Drawing.Image)">
1472 <summary>Attaches an image attachment with a mime-type compatible with its internal representation.</summary>
1473 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1474 <param name="image">The image to attach</param>
1475 <returns>The attachment</returns>
1476 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="image" /> is null</exception>
1477 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1478 </member>
1479 <member name="M:Gallio.Framework.LogWriter.AttachImpl(Gallio.Framework.Attachment)">
1480 <summary>Adds an attachment to the execution log.</summary>
1481 <param name="attachment">The attachment to write, never null</param>
1482 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1483 </member>
1484 <member name="M:Gallio.Framework.LogWriter.AttachObjectAsXml(System.String,System.Object)">
1485 <summary>Attaches an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the default <see cref="T:System.Xml.Serialization.XmlSerializer" /> for the object's type.</summary>
1486 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1487 <param name="obj">The object to serialize and embed, must not be null</param>
1488 <returns>The attachment</returns>
1489 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1490 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1491 </member>
1492 <member name="M:Gallio.Framework.LogWriter.AttachObjectAsXml(System.String,System.Object,System.Xml.Serialization.XmlSerializer)">
1493 <summary>Attaches an XML-serialized object as an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" /> using the specified <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
1494 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1495 <param name="obj">The object to serialize and embed, must not be null</param>
1496 <param name="xmlSerializer">The <see cref="T:System.Xml.Serialization.XmlSerializer" /> to use, or null to use the default <see cref="T:System.Xml.Serialization.XmlSerializer" nolink="true" /> for the object's type</param>
1497 <returns>The attachment</returns>
1498 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null</exception>
1499 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1500 </member>
1501 <member name="M:Gallio.Framework.LogWriter.AttachPlainText(System.String,System.String)">
1502 <summary>Attaches an plain text attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.PlainText" />.</summary>
1503 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1504 <param name="text">The text to attach</param>
1505 <returns>The attachment</returns>
1506 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="text" /> is null</exception>
1507 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1508 </member>
1509 <member name="M:Gallio.Framework.LogWriter.AttachXHtml(System.String,System.String)">
1510 <summary>Attaches an XHTML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.XHtml" />.</summary>
1511 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1512 <param name="xhtml">The XHTML to attach</param>
1513 <returns>The attachment</returns>
1514 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xhtml" /> is null</exception>
1515 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1516 </member>
1517 <member name="M:Gallio.Framework.LogWriter.AttachXml(System.String,System.String)">
1518 <summary>Attaches an XML attachment with mime-type <see cref="F:Gallio.Utilities.MimeTypes.Xml" />.</summary>
1519 <param name="attachmentName">The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.</param>
1520 <param name="xml">The XML to attach</param>
1521 <returns>The attachment</returns>
1522 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xml" /> is null</exception>
1523 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
1524 </member>
1525 <member name="M:Gallio.Framework.LogWriter.GetLogStreamWriterImpl(System.String)">
1526 <summary>Gets a writer for the stream with the specified name.</summary>
1527 <param name="streamName">The stream name, never null</param>
1528 <returns>The log stream writer</returns>
1529 </member>
1530 <member name="T:Gallio.Framework.Sandbox">
1531 <summary>
1532 <para> A sandbox is an isolated environments for executing test actions. It provides the ability to abort actions in progress so that the test runner can proceed to run other actions. </para>
1533 <para> Sandboxes are hierarchically structured. When an outer sandbox is aborted, all of its inner sandboxes are likewise aborted. A sandbox also provides the ability to create new child sandboxes at will so that test actions can be isolated with fine granularity. </para>This class cannot be inherited.</summary>
1534 </member>
1535 <member name="P:Gallio.Framework.Sandbox.AbortMessage">
1536 <summary>Gets a message that will be logged when the sandbox is aborted, or null if none.</summary>
1537 </member>
1538 <member name="P:Gallio.Framework.Sandbox.AbortOutcome">
1539 <summary>Returns the <see cref="T:Gallio.Model.TestOutcome" /> passed to the <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" />, or null if <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" nolink="true" /> has not been called.</summary>
1540 </member>
1541 <member name="P:Gallio.Framework.Sandbox.WasAborted">
1542 <summary>Returns true if <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" /> was called.</summary>
1543 </member>
1544 <member name="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)">
1545 <summary>
1546 <para> Aborts all actions in progress within this context. </para>
1547 <para> The abort is persistent and cannot be reverted. Therefore once aborted, no further test actions will be permitted to run. Subsequent calls to <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" /> will have no effect. </para>
1548 </summary>
1549 <param name="outcome">The outcome to be returned from aborted actions</param>
1550 <param name="message">A message to be logged when the action is aborted, or null if none</param>
1551 </member>
1552 <member name="M:Gallio.Framework.Sandbox.CreateChild">
1553 <summary>
1554 <para> Creates a child sandbox. </para>
1555 <para> When the parent sandbox is aborted, the child will likewise be aborted. This policy offers a mechanism to scope actions recursively. </para>
1556 </summary>
1557 <returns>The child sandbox</returns>
1558 </member>
1559 <member name="M:Gallio.Framework.Sandbox.Dispose">
1560 <summary>
1561 <para> Disposes the sandbox. </para>
1562 <para> All currently executing actions are aborted with <see cref="P:Gallio.Model.TestOutcome.Error" /> if <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" /> has not already been called. </para>
1563 </summary>
1564 </member>
1565 <member name="M:Gallio.Framework.Sandbox.Run(Gallio.Action,System.String)">
1566 <summary>
1567 <para> Runs a test action. </para>
1568 <para> If the <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" /> method is called or has already been called, the action is aborted and the appropriate outcome is returned. The abort is manifested as an asynchronous <see cref="T:System.Threading.ThreadAbortException" /> which should cause the action to terminate. It may not terminate immediately, however. </para>
1569 <para> Produces an outcome in the following manner: <list type="bullet"><item>If the action completed without throwing an exception returns <see cref="P:Gallio.Model.TestOutcome.Passed" />.</item><item>If the action threw a <see cref="T:Gallio.Framework.TestException" />, returns the value of the <see cref="P:Gallio.Framework.TestException.Outcome" /> property.</item><item>If the action threw an different kind of exception, logs the exception and returns <see cref="P:Gallio.Model.TestOutcome.Failed" />.</item><item>If the action was aborted, returns <see cref="P:Gallio.Framework.Sandbox.AbortOutcome" />.</item></list></para>
1570 </summary>
1571 <param name="action">The action to run</param>
1572 <param name="description">A description of the action being performed, to be used as a log section name when reporting failures, or null if none</param>
1573 <returns>The outcome of the action</returns>
1574 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
1575 </member>
1576 <member name="E:Gallio.Framework.Sandbox.Aborted">
1577 <summary>
1578 <para> An event that is dispatched when <see cref="M:Gallio.Framework.Sandbox.Abort(Gallio.Model.TestOutcome,System.String)" /> is called. </para>
1579 <para> If the sandbox has already been aborted then the event handler is immediately invoked. </para>
1580 </summary>
1581 </member>
1582 <member name="T:Gallio.Framework.SilentTestException">
1583 <summary>This exception type is used to signal a test outcome silently without logging the exception.</summary>
1584 </member>
1585 <member name="P:Gallio.Framework.SilentTestException.ExcludeStackTrace">
1586 <summary>Returns true if the outcome and message (if any) should be used but the exception stack trace should not be logged.</summary>
1587 </member>
1588 <member name="P:Gallio.Framework.SilentTestException.Outcome">
1589 <summary>Gets the outcome of the test.</summary>
1590 </member>
1591 <member name="M:Gallio.Framework.SilentTestException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1592 <summary>When overridden in a derived class, sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</summary>
1593 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
1594 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
1595 </member>
1596 <member name="T:Gallio.Framework.Step">
1597 <summary>
1598 <para> Provides functions for manipulating test steps. </para>
1599 <para> A step is a delimited region of a test. Each step appears in the report as if it were a dynamically generated test nested within the body of the test (or some other step) that spawned it. The step has its own execution log, pass/fail/inconclusive result and in all other respects behaves much like an ordinary test would. </para>
1600 <para> The number of steps within a test does not need to be known ahead of time. This can be useful in situations where insufficient information is known about the internal structure of a test to be able to fully populate the test tree will all of its details. Because steps are dynamically generated at runtime, they appear in test reports but they are invisible to test runners. that traverse the test tree. </para>
1601 <para> There are many interesting uses for steps. For example: <list type="bullet"><item>A single test consisting of a long sequence of actions can be subdivided into steps to simplify analysis.</item><item>A test might depend on environmental configuration that cannot be known a priori.</item><item>A performance test might be scheduled to run for a certain duration but the total number of iterations is unknown. By running each iteration as a step within a single test, the test report can display the execution log and pass/fail result of each iteration independently of the others.</item><item>A script-driven test driver could execute a scripted sequence of verification commands as a distinct step. If the script is written in a general purpose programming language, the total number of commands and the order in which they will be performed might not be known ahead of time. Using steps enables the integration of tests written in forms that cannot be directly adapted to the framework's native testing primitives.</item><item>When testing non-deterministic algorithms, it is sometimes useful to repeat a test multiple times under slightly different conditions until a certain level of confidence is reached. The variety of conditions tested might be determined adaptively based on an error estimation metric. Using steps each condition verified can be reported independently.</item></list></para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1602 </member>
1603 <member name="P:Gallio.Framework.Step.CurrentStep">
1604 <summary>Gets reflection information about the current step.</summary>
1605 </member>
1606 <member name="M:Gallio.Framework.Step.AddMetadata(System.String,System.String)">
1607 <summary>Adds metadata to the step that is running in the context.</summary>
1608 <param name="metadataKey">The metadata key</param>
1609 <param name="metadataValue">The metadata value</param>
1610 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="metadataKey" /> or <paramref name="metadataValue" /> is null</exception>
1611 </member>
1612 <member name="M:Gallio.Framework.Step.RunStep(System.String,Gallio.Action)">
1613 <summary>
1614 <para> Performs an action as a new step within the current context and associates it with the calling function. </para>
1615 <para> This method creates a new child context with a new nested <see cref="T:Gallio.Model.ITestStep" />, enters the child context, performs the action, then exits the child context. </para>
1616 </summary>
1617 <param name="name">The name of the step</param>
1618 <param name="action">The action to perform</param>
1619 <returns>The context of the step that ran</returns>
1620 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> or <paramref name="action" /> is null</exception>
1621 <exception cref="T:System.ArgumentException">Thrown if <paramref name="name" /> is the empty string</exception>
1622 <exception cref="T:System.Exception">Any exception thrown by the action</exception>
1623 </member>
1624 <member name="M:Gallio.Framework.Step.RunStep(System.String,Gallio.Reflection.ICodeElementInfo,Gallio.Action)">
1625 <summary>
1626 <para> Performs an action as a new step within the current context and associates it with the specified code reference. </para>
1627 <para> This method creates a new child context with a new nested <see cref="T:Gallio.Model.ITestStep" />, enters the child context, performs the action, then exits the child context. </para>
1628 </summary>
1629 <param name="name">The name of the step</param>
1630 <param name="codeElement">The associated code element, or null if none</param>
1631 <param name="action">The action to perform</param>
1632 <returns>The context of the step that ran</returns>
1633 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> or <paramref name="action" /> is null</exception>
1634 <exception cref="T:System.ArgumentException">Thrown if <paramref name="name" /> is the empty string</exception>
1635 <exception cref="T:System.Exception">Any exception thrown by the action</exception>
1636 </member>
1637 <member name="T:Gallio.Framework.Tasks">
1638 <summary>
1639 <para> The tasks class provides a mechanism for coordinating the actions of multiple tasks within a test case. </para>
1640 <para> Each task started by a test case is monitored. When the test exits, any remaining tasks are automatically aborted and disposed. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
1641 </member>
1642 <member name="P:Gallio.Framework.Tasks.TaskContainer">
1643 <summary>Gets the task container for the current <see cref="T:Gallio.Framework.Context" />.</summary>
1644 </member>
1645 <member name="M:Gallio.Framework.Tasks.CreateProcessTask(System.String,System.String,System.String)">
1646 <summary>
1647 <para> Creates a new process task but does not start it. </para>
1648 <para> The output of the process will be logged and included as part of the test results. It may also be examined using the <see cref="P:Gallio.Concurrency.ProcessTask.ConsoleOutput" /> and <see cref="P:Gallio.Concurrency.ProcessTask.ConsoleError" /> properties while the process executes and after it terminates. </para>
1649 </summary>
1650 <param name="executablePath">The path of the executable executable</param>
1651 <param name="arguments">The arguments for the executable</param>
1652 <param name="workingDirectory">The working directory</param>
1653 <returns>The new thread task</returns>
1654 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="executablePath" />, <paramref name="arguments" /> or <paramref name="workingDirectory" /> is null</exception>
1655 </member>
1656 <member name="M:Gallio.Framework.Tasks.CreateThreadTask(System.String,Gallio.Action)">
1657 <summary>Creates a new thread task but does not start it.</summary>
1658 <param name="name">The name of the task, or null to create a new name based on the method associated with the action</param>
1659 <param name="action">The action to perform</param>
1660 <returns>The new thread task</returns>
1661 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
1662 </member>
1663 <member name="M:Gallio.Framework.Tasks.JoinAndVerify(System.TimeSpan)">
1664 <summary>Waits for all tasks to complete or for timeout to occur. Then verifies that no failures have occurred in any of the tasks.</summary>
1665 <param name="timeout">The timeout</param>
1666 <exception cref="T:Gallio.Framework.TestException">Thrown if some of the tasks did not complete or if any of the tasks failed</exception>
1667 </member>
1668 <member name="M:Gallio.Framework.Tasks.StartProcessTask(System.String,System.String,System.String)">
1669 <summary>
1670 <para> Starts a new process and begins watching it. </para>
1671 <para> The output of the process will be logged and included as part of the test results. It may also be examined using the <see cref="P:Gallio.Concurrency.ProcessTask.ConsoleOutput" /> and <see cref="P:Gallio.Concurrency.ProcessTask.ConsoleError" /> properties while the process executes and after it terminates. </para>
1672 </summary>
1673 <param name="executablePath">The path of the executable executable</param>
1674 <param name="arguments">The arguments for the executable</param>
1675 <param name="workingDirectory">The working directory</param>
1676 <returns>The new thread task</returns>
1677 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="executablePath" />, <paramref name="arguments" /> or <paramref name="workingDirectory" /> is null</exception>
1678 </member>
1679 <member name="M:Gallio.Framework.Tasks.StartThreadTask(System.String,Gallio.Action)">
1680 <summary>Starts a new thread task.</summary>
1681 <param name="name">The name of the task, or null to create a new name based on the method associated with the action</param>
1682 <param name="action">The action to perform</param>
1683 <returns>The new thread task</returns>
1684 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="action" /> is null</exception>
1685 </member>
1686 <member name="M:Gallio.Framework.Tasks.Verify">
1687 <summary>Verifies that no failures have occurred in any of the tasks.</summary>
1688 <exception cref="T:Gallio.Framework.TestException">Thrown if any of the tasks failed</exception>
1689 </member>
1690 <member name="M:Gallio.Framework.Tasks.WatchTask(Gallio.Concurrency.Task)">
1691 <summary>Adds a new task for the task manager to watch.</summary>
1692 <param name="task">The task to watch</param>
1693 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="task" /> is null</exception>
1694 </member>
1695 <member name="T:Gallio.Framework.TestException">
1696 <summary>
1697 <para> This exception type is an abstract base class for exceptions that are used to explicitly signal the outcome of a test. </para>
1698 <para> The test framework uses the value of the <see cref="P:Gallio.Framework.TestException.Outcome" /> property to set the test result instead of applying the standard behavior for unexpected exceptions. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1699 </member>
1700 <member name="P:Gallio.Framework.TestException.ExcludeStackTrace">
1701 <summary>Returns true if the outcome and message (if any) should be used but the exception stack trace should not be logged.</summary>
1702 </member>
1703 <member name="P:Gallio.Framework.TestException.HasNonDefaultMessage">
1704 <summary>Returns true if the test exception has a non-default message (the message parameter was not null in the constructor arguments).</summary>
1705 </member>
1706 <member name="P:Gallio.Framework.TestException.Outcome">
1707 <summary>Gets the outcome of the test.</summary>
1708 </member>
1709 <member name="M:Gallio.Framework.TestException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1710 <summary>When overridden in a derived class, sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</summary>
1711 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
1712 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
1713 </member>
1714 <member name="T:Gallio.Framework.TestFailedException">
1715 <summary>
1716 <para> This exception type is used to signal that a test has failed to satisfy some predetermined condition established by the test author. </para>
1717 <para> For example, an assertion failure may be signaled using a <see cref="T:Gallio.Framework.TestFailedException" /> to distinguish it from other application or runtime errors that a test might encounter at runtime. </para>
1718 </summary>
1719 </member>
1720 <member name="P:Gallio.Framework.TestFailedException.Outcome">
1721 <summary>Returns <see cref="P:Gallio.Model.TestOutcome.Failed" />.</summary>
1722 </member>
1723 <member name="T:Gallio.Framework.TestInconclusiveException">
1724 <summary>This exception type is used to signal that a test has not produced a conclusive pass or fail result. The exception message, if present, should explain the reason no conclusive result was obtained.</summary>
1725 </member>
1726 <member name="P:Gallio.Framework.TestInconclusiveException.Outcome">
1727 <summary>Returns <see cref="P:Gallio.Model.TestOutcome.Inconclusive" />.</summary>
1728 </member>
1729 <member name="T:Gallio.Framework.TestLogStreamWriter">
1730 <summary>An implementation of <see cref="T:Gallio.Framework.LogStreamWriter" /> that writes to a particular stream of a <see cref="T:Gallio.Model.Execution.ITestLogWriter" />. This class cannot be inherited.</summary>
1731 </member>
1732 <member name="T:Gallio.Framework.TestLogWriter">
1733 <summary>An implementation of <see cref="T:Gallio.Framework.LogWriter" /> that writes to a particular <see cref="T:Gallio.Model.Execution.ITestLogWriter" />. This class cannot be inherited.</summary>
1734 </member>
1735 <member name="T:Gallio.Framework.TextAttachment">
1736 <summary>Represents a text-encoded attachment. This class cannot be inherited.</summary>
1737 </member>
1738 <member name="P:Gallio.Framework.TextAttachment.Text">
1739 <summary>Gets the text of the attachment, not null.</summary>
1740 </member>
1741 <member name="T:Gallio.Framework.ContextCookie">
1742 <summary>A context cookie is used to unwind the context stack of the current thread to its previous state prior to a context having been entered.</summary>
1743 </member>
1744 <member name="M:Gallio.Framework.ContextCookie.Dispose">
1745 <summary>
1746 <para> Exits the context that was entered when the cookie was granted. </para>
1747 <para> Equivalent to calling <see cref="M:Gallio.Framework.ContextCookie.ExitContext" />. This method is provded as a convenience for use with the C# using statement. </para>
1748 </summary>
1749 <exception cref="T:System.InvalidOperationException">Thrown if the cookie belongs to a different <see cref="T:System.Threading.Thread" /> or if the context was already exited</exception>
1750 <exception cref="T:System.ObjectDisposedException">Thrown if the context manager has been disposed</exception>
1751 </member>
1752 <member name="M:Gallio.Framework.ContextCookie.ExitContext">
1753 <summary>Exits the context that was entered when the cookie was granted.</summary>
1754 <exception cref="T:System.InvalidOperationException">Thrown if the cookie belongs to a different <see cref="T:System.Threading.Thread" /> or if the context was already exited</exception>
1755 <exception cref="T:System.ObjectDisposedException">Thrown if the context manager has been disposed</exception>
1756 </member>
1757 <member name="T:Gallio.Framework.Conversions.ArrayToArrayConversionRule">
1758 <summary>Converts arrays from one-dimensional arrays of one element type to another. This class cannot be inherited.</summary>
1759 </member>
1760 <member name="M:Gallio.Framework.Conversions.ArrayToArrayConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1761 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1762 <param name="sourceValue">The value to convert, never null</param>
1763 <param name="targetType">The target type, never null</param>
1764 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1765 <returns>The converted value</returns>
1766 </member>
1767 <member name="M:Gallio.Framework.Conversions.ArrayToArrayConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1768 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1769 <param name="sourceType">The source type, never null</param>
1770 <param name="targetType">The target type, never null</param>
1771 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1772 <returns>The conversion cost</returns>
1773 </member>
1774 <member name="T:Gallio.Framework.Conversions.BaseConverter">
1775 <summary>An abstract base class implementation of <see cref="T:Gallio.Framework.Conversions.IConverter" /> that mostly validates arguments and provides a default implement for <see cref="M:Gallio.Framework.Conversions.BaseConverter.CanConvert(System.Type,System.Type)" /> based on <see cref="M:Gallio.Framework.Conversions.BaseConverter.GetConversionCost(System.Type,System.Type)" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
1776 </member>
1777 <member name="M:Gallio.Framework.Conversions.BaseConverter.CanConvert(System.Type,System.Type)">
1778 <summary>Determines whether the converter can convert a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1779 <param name="sourceType">The source type</param>
1780 <param name="targetType">The target type</param>
1781 <returns>True if the converter supports this conversion</returns>
1782 </member>
1783 <member name="M:Gallio.Framework.Conversions.BaseConverter.CanConvertImpl(System.Type,System.Type)">
1784 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.CanConvert(System.Type,System.Type)" />.</summary>
1785 <param name="sourceType">The source type, never null</param>
1786 <param name="targetType">The target type, never null</param>
1787 <returns>True if the conversion is supported</returns>
1788 </member>
1789 <member name="M:Gallio.Framework.Conversions.BaseConverter.Convert(System.Object,System.Type)">
1790 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1791 <param name="sourceValue">The value to convert</param>
1792 <param name="targetType">The target type</param>
1793 <returns>The converted value</returns>
1794 </member>
1795 <member name="M:Gallio.Framework.Conversions.BaseConverter.ConvertImpl(System.Object,System.Type)">
1796 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.Convert(System.Object,System.Type)" /></summary>
1797 <param name="sourceValue">The source value</param>
1798 <param name="targetType">The target type, never null</param>
1799 <returns>The converted value</returns>
1800 </member>
1801 <member name="M:Gallio.Framework.Conversions.BaseConverter.GetConversionCost(System.Type,System.Type)">
1802 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1803 <param name="sourceType">The source type</param>
1804 <param name="targetType">The target type</param>
1805 <returns>The conversion cost</returns>
1806 </member>
1807 <member name="M:Gallio.Framework.Conversions.BaseConverter.GetConversionCostImpl(System.Type,System.Type)">
1808 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.GetConversionCost(System.Type,System.Type)" />.</summary>
1809 <param name="sourceType">The source type, never null</param>
1810 <param name="targetType">The target type, never null</param>
1811 <returns>The conversion cost</returns>
1812 </member>
1813 <member name="T:Gallio.Framework.Conversions.ConvertibleToConvertibleConversionRule">
1814 <summary>Converts values among <see cref="T:System.IConvertible" /> types. This class cannot be inherited.</summary>
1815 </member>
1816 <member name="M:Gallio.Framework.Conversions.ConvertibleToConvertibleConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1817 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1818 <param name="sourceValue">The value to convert, never null</param>
1819 <param name="targetType">The target type, never null</param>
1820 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1821 <returns>The converted value</returns>
1822 </member>
1823 <member name="M:Gallio.Framework.Conversions.ConvertibleToConvertibleConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1824 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1825 <param name="sourceType">The source type, never null</param>
1826 <param name="targetType">The target type, never null</param>
1827 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1828 <returns>The conversion cost</returns>
1829 </member>
1830 <member name="T:Gallio.Framework.Conversions.NullConverter">
1831 <summary>A null implementation of a converter that does not actually support converting values. Consequently <see cref="M:Gallio.Framework.Conversions.IConverter.CanConvert(System.Type,System.Type)" /> returns false whenever a conversion would be required.</summary>
1832 </member>
1833 <member name="F:Gallio.Framework.Conversions.NullConverter.Instance">
1834 <summary>Gets a singleton instance of the null converter. This field is read-only.</summary>
1835 </member>
1836 <member name="M:Gallio.Framework.Conversions.NullConverter.ConvertImpl(System.Object,System.Type)">
1837 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.Convert(System.Object,System.Type)" /></summary>
1838 <param name="sourceValue">The source value</param>
1839 <param name="targetType">The target type, never null</param>
1840 <returns>The converted value</returns>
1841 </member>
1842 <member name="M:Gallio.Framework.Conversions.NullConverter.GetConversionCostImpl(System.Type,System.Type)">
1843 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.GetConversionCost(System.Type,System.Type)" />.</summary>
1844 <param name="sourceType">The source type, never null</param>
1845 <param name="targetType">The target type, never null</param>
1846 <returns>The conversion cost</returns>
1847 </member>
1848 <member name="T:Gallio.Framework.Conversions.ObjectToStringConversionRule">
1849 <summary>Converts an <see cref="T:System.Object" /> into a <see cref="T:System.String" /> using <see cref="M:System.Object.ToString" />. This class cannot be inherited.</summary>
1850 </member>
1851 <member name="M:Gallio.Framework.Conversions.ObjectToStringConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1852 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1853 <param name="sourceValue">The value to convert, never null</param>
1854 <param name="targetType">The target type, never null</param>
1855 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1856 <returns>The converted value</returns>
1857 </member>
1858 <member name="M:Gallio.Framework.Conversions.ObjectToStringConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1859 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1860 <param name="sourceType">The source type, never null</param>
1861 <param name="targetType">The target type, never null</param>
1862 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1863 <returns>The conversion cost</returns>
1864 </member>
1865 <member name="T:Gallio.Framework.Conversions.RuleBasedConverter">
1866 <summary>A rule-based converter uses a set of <see cref="T:Gallio.Framework.Conversions.IConversionRule" />s to perform conversions. It caches the best path it determines for each conversion so that it only needs to compute the conversion cost once.</summary>
1867 </member>
1868 <member name="M:Gallio.Framework.Conversions.RuleBasedConverter.ConvertImpl(System.Object,System.Type)">
1869 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.Convert(System.Object,System.Type)" /></summary>
1870 <param name="sourceValue">The source value</param>
1871 <param name="targetType">The target type, never null</param>
1872 <returns>The converted value</returns>
1873 </member>
1874 <member name="M:Gallio.Framework.Conversions.RuleBasedConverter.GetConversionCostImpl(System.Type,System.Type)">
1875 <summary>Implements <see cref="M:Gallio.Framework.Conversions.BaseConverter.GetConversionCost(System.Type,System.Type)" />.</summary>
1876 <param name="sourceType">The source type, never null</param>
1877 <param name="targetType">The target type, never null</param>
1878 <returns>The conversion cost</returns>
1879 </member>
1880 <member name="T:Gallio.Framework.Conversions.StringToXmlDocumentConversionRule">
1881 <summary>Converts a <see cref="T:System.String" /> into an <see cref="T:System.Xml.XmlDocument" /> assuming the string is valid xml. This class cannot be inherited.</summary>
1882 </member>
1883 <member name="M:Gallio.Framework.Conversions.StringToXmlDocumentConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1884 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1885 <param name="sourceValue">The value to convert, never null</param>
1886 <param name="targetType">The target type, never null</param>
1887 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1888 <returns>The converted value</returns>
1889 </member>
1890 <member name="M:Gallio.Framework.Conversions.StringToXmlDocumentConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1891 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1892 <param name="sourceType">The source type, never null</param>
1893 <param name="targetType">The target type, never null</param>
1894 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1895 <returns>The conversion cost</returns>
1896 </member>
1897 <member name="T:Gallio.Framework.Conversions.XPathNavigableToXPathNavigatorConversionRule">
1898 <summary>Converts <see cref="T:System.Xml.XPath.IXPathNavigable" /> objects to <see cref="T:System.Xml.XPath.XPathNavigator" /> objects. This class cannot be inherited.</summary>
1899 </member>
1900 <member name="M:Gallio.Framework.Conversions.XPathNavigableToXPathNavigatorConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1901 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1902 <param name="sourceValue">The value to convert, never null</param>
1903 <param name="targetType">The target type, never null</param>
1904 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1905 <returns>The converted value</returns>
1906 </member>
1907 <member name="M:Gallio.Framework.Conversions.XPathNavigableToXPathNavigatorConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1908 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1909 <param name="sourceType">The source type, never null</param>
1910 <param name="targetType">The target type, never null</param>
1911 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1912 <returns>The conversion cost</returns>
1913 </member>
1914 <member name="T:Gallio.Framework.Conversions.XPathNavigatorToStringConversionRule">
1915 <summary>Converts an <see cref="T:System.Xml.XPath.XPathNavigator" /> into a <see cref="T:System.String" /> by value or outer xml. This class cannot be inherited.</summary>
1916 </member>
1917 <member name="M:Gallio.Framework.Conversions.XPathNavigatorToStringConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1918 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1919 <param name="sourceValue">The value to convert, never null</param>
1920 <param name="targetType">The target type, never null</param>
1921 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1922 <returns>The converted value</returns>
1923 </member>
1924 <member name="M:Gallio.Framework.Conversions.XPathNavigatorToStringConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1925 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1926 <param name="sourceType">The source type, never null</param>
1927 <param name="targetType">The target type, never null</param>
1928 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1929 <returns>The conversion cost</returns>
1930 </member>
1931 <member name="T:Gallio.Framework.Conversions.XPathNavigatorToXmlSerializableTypeConversionRule">
1932 <summary>Converts <see cref="T:System.Xml.XPath.XPathNavigator" /> objects to XML serializable objects that have the <see cref="T:System.Xml.Serialization.XmlTypeAttribute" />. This class cannot be inherited.</summary>
1933 </member>
1934 <member name="M:Gallio.Framework.Conversions.XPathNavigatorToXmlSerializableTypeConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1935 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1936 <param name="sourceValue">The value to convert, never null</param>
1937 <param name="targetType">The target type, never null</param>
1938 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1939 <returns>The converted value</returns>
1940 </member>
1941 <member name="M:Gallio.Framework.Conversions.XPathNavigatorToXmlSerializableTypeConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1942 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1943 <param name="sourceType">The source type, never null</param>
1944 <param name="targetType">The target type, never null</param>
1945 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1946 <returns>The conversion cost</returns>
1947 </member>
1948 <member name="T:Gallio.Framework.Conversions.ConversionCost">
1949 <summary>Describes the relative cost of performing a conversion so that different conversions can be ranked by cost. A typical direct conversion should have a cost of one. Lossy conversions should be more costly.</summary>
1950 </member>
1951 <member name="F:Gallio.Framework.Conversions.ConversionCost.Best">
1952 <summary>The conversion is the best possible conversion available. Built-in conversions should not use this value. It should be reserved for user-created conversions that are intended to override the built-in conversions. This field is read-only.</summary>
1953 </member>
1954 <member name="F:Gallio.Framework.Conversions.ConversionCost.Default">
1955 <summary>The conversion is a poor default choice. It costs a sufficient number of units of work to perform to ensure that a non-default conversion will be chosen if possible. This field is read-only.</summary>
1956 </member>
1957 <member name="F:Gallio.Framework.Conversions.ConversionCost.Invalid">
1958 <summary>The conversion is not supported. This field is read-only.</summary>
1959 </member>
1960 <member name="F:Gallio.Framework.Conversions.ConversionCost.Maximum">
1961 <summary>The conversion costs the maximum possible amount of work to perform. This field is read-only.</summary>
1962 </member>
1963 <member name="F:Gallio.Framework.Conversions.ConversionCost.Typical">
1964 <summary>The conversion costs a typical amount of work to perform. It may yet be trumped by a conversion that costs less. This field is read-only.</summary>
1965 </member>
1966 <member name="F:Gallio.Framework.Conversions.ConversionCost.Zero">
1967 <summary>The conversion has zero cost because no work is required. This field is read-only.</summary>
1968 </member>
1969 <member name="P:Gallio.Framework.Conversions.ConversionCost.IsInvalid">
1970 <summary>Returns true if the conversion is not supported.</summary>
1971 </member>
1972 <member name="P:Gallio.Framework.Conversions.ConversionCost.Value">
1973 <summary>Gets the cost value.</summary>
1974 </member>
1975 <member name="M:Gallio.Framework.Conversions.ConversionCost.Add(Gallio.Framework.Conversions.ConversionCost)">
1976 <summary>Adds this conversion cost with the other and returns the sum.</summary>
1977 <param name="other">The other conversion cost</param>
1978 <returns>The summed conversion cost</returns>
1979 </member>
1980 <member name="M:Gallio.Framework.Conversions.ConversionCost.ToString">
1981 <summary>Returns the fully qualified type name of this instance.</summary>
1982 <returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
1983 </member>
1984 <member name="T:Gallio.Framework.Conversions.IConversionRule">
1985 <summary>A conversion rule encapsulates an algorithm for converting a value from a source type to a target type.</summary>
1986 </member>
1987 <member name="M:Gallio.Framework.Conversions.IConversionRule.Convert(System.Object,System.Type,Gallio.Framework.Conversions.IConverter)">
1988 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
1989 <param name="sourceValue">The value to convert, never null</param>
1990 <param name="targetType">The target type, never null</param>
1991 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1992 <returns>The converted value</returns>
1993 </member>
1994 <member name="M:Gallio.Framework.Conversions.IConversionRule.GetConversionCost(System.Type,System.Type,Gallio.Framework.Conversions.IConverter)">
1995 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
1996 <param name="sourceType">The source type, never null</param>
1997 <param name="targetType">The target type, never null</param>
1998 <param name="elementConverter">A converter that may be used to recursively convert the contents of a composite object from one type to another, never null</param>
1999 <returns>The conversion cost</returns>
2000 </member>
2001 <member name="T:Gallio.Framework.Conversions.IConverter">
2002 <summary>A converter converts a value from a source type to a target type.</summary>
2003 </member>
2004 <member name="M:Gallio.Framework.Conversions.IConverter.CanConvert(System.Type,System.Type)">
2005 <summary>Determines whether the converter can convert a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
2006 <param name="sourceType">The source type</param>
2007 <param name="targetType">The target type</param>
2008 <returns>True if the converter supports this conversion</returns>
2009 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sourceType" /> or <paramref name="targetType" /> is null</exception>
2010 </member>
2011 <member name="M:Gallio.Framework.Conversions.IConverter.Convert(System.Object,System.Type)">
2012 <summary>Converts the value <paramref name="sourceValue" /> to type <paramref name="targetType" />.</summary>
2013 <param name="sourceValue">The value to convert</param>
2014 <param name="targetType">The target type</param>
2015 <returns>The converted value</returns>
2016 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="targetType" /> is null</exception>
2017 <exception cref="T:System.InvalidOperationException">Thrown the requested conversion was not supported</exception>
2018 </member>
2019 <member name="M:Gallio.Framework.Conversions.IConverter.GetConversionCost(System.Type,System.Type)">
2020 <summary>Gets the cost of converting a value of type <paramref name="sourceType" /> to type <paramref name="targetType" />.</summary>
2021 <param name="sourceType">The source type</param>
2022 <param name="targetType">The target type</param>
2023 <returns>The conversion cost</returns>
2024 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sourceType" /> or <paramref name="targetType" /> is null</exception>
2025 </member>
2026 <member name="T:Gallio.Framework.Data.AggregateDataSet">
2027 <summary>Abstract base class for an aggregate data set that combines a list of data sets according to some algorithm. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2028 </member>
2029 <member name="P:Gallio.Framework.Data.AggregateDataSet.DataSets">
2030 <summary>Gets the immutable list of combined data sets.</summary>
2031 </member>
2032 <member name="M:Gallio.Framework.Data.AggregateDataSet.AddDataSet(Gallio.Framework.Data.IDataSet)">
2033 <summary>Adds a data set to the aggregate.</summary>
2034 <param name="dataSet">The data set to add</param>
2035 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="dataSet" /> is null</exception>
2036 <exception cref="T:System.ArgumentException">Thrown if <paramref name="dataSet" /> is already a member of this aggregate</exception>
2037 </member>
2038 <member name="T:Gallio.Framework.Data.BaseDataAccessor">
2039 <summary>A base implementation of <see cref="T:Gallio.Framework.Data.IDataAccessor" /> that performs argument validation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2040 </member>
2041 <member name="M:Gallio.Framework.Data.BaseDataAccessor.GetValue(Gallio.Framework.Data.IDataItem)">
2042 <summary>Gets a value derived from the <see cref="T:Gallio.Framework.Data.IDataItem" />.</summary>
2043 <param name="item">The data item</param>
2044 <returns>The value</returns>
2045 </member>
2046 <member name="M:Gallio.Framework.Data.BaseDataAccessor.GetValueImpl(Gallio.Framework.Data.IDataItem)">
2047 <summary>Internal implementation of <see cref="M:Gallio.Framework.Data.BaseDataAccessor.GetValue(Gallio.Framework.Data.IDataItem)" /> after argument validation has been performed.</summary>
2048 <param name="item">The data item, not null</param>
2049 <returns>The value</returns>
2050 </member>
2051 <member name="T:Gallio.Framework.Data.BaseDataBinder">
2052 <summary>Abstract base class for <see cref="T:Gallio.Framework.Data.IDataBinder" /> that validates input arguments before passing them on to the implementation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2053 </member>
2054 <member name="M:Gallio.Framework.Data.BaseDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)">
2055 <summary>Registers the <see cref="T:Gallio.Framework.Data.IDataBinder" />'s requests to query particular <see cref="T:Gallio.Framework.Data.IDataSet" />s with the <see cref="T:Gallio.Framework.Data.DataBindingContext" />.</summary>
2056 <param name="context">The data binding context</param>
2057 <param name="resolver">The data source resolver</param>
2058 <returns>The data binding accessor to use for obtaining bound values from <see cref="T:Gallio.Framework.Data.IDataItem" />s produced by the <see cref="T:Gallio.Framework.Data.DataBindingContext" />.</returns>
2059 </member>
2060 <member name="M:Gallio.Framework.Data.BaseDataBinder.RegisterImpl(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)">
2061 <summary>Implementation of <see cref="M:Gallio.Framework.Data.BaseDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)" />.</summary>
2062 <param name="context">The data binding context, not null</param>
2063 <param name="resolver">The data source resolver, not null</param>
2064 <returns>The data binding accessor</returns>
2065 </member>
2066 <member name="T:Gallio.Framework.Data.BaseDataItem">
2067 <summary>Abstract base class for data items. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2068 </member>
2069 <member name="P:Gallio.Framework.Data.BaseDataItem.IsDynamic">
2070 <summary>
2071 <para> Returns true if the item contains data that is obtained dynamically from sources whose content may change over time or may be expensive to query ahead of time. </para>
2072 <para> For example, data obtained from a database should be considered dynamic. On the other hand, data obtained from declarative metadata defined as part of the test should be considered static. </para>
2073 </summary>
2074 </member>
2075 <member name="M:Gallio.Framework.Data.BaseDataItem.GetValue(Gallio.Framework.Data.DataBinding)">
2076 <summary>Gets the value of the specified binding.</summary>
2077 <param name="binding">The data binding, never null</param>
2078 <returns>The value</returns>
2079 </member>
2080 <member name="M:Gallio.Framework.Data.BaseDataItem.GetValueImpl(Gallio.Framework.Data.DataBinding)">
2081 <summary>Implements <see cref="M:Gallio.Framework.Data.BaseDataItem.GetValue(Gallio.Framework.Data.DataBinding)" />.</summary>
2082 <param name="binding">The binding, never null</param>
2083 <returns>The associated value</returns>
2084 </member>
2085 <member name="M:Gallio.Framework.Data.BaseDataItem.PopulateMetadata(Gallio.Model.MetadataMap)">
2086 <summary>
2087 <para> Populates the specified metadata map with key/value pairs associated with the data item, if any. </para>
2088 <para> For example, the metadata may contain a description that serves as documentation of the contents of the data item or of the test scenario that is exercised by the contents of the data item. This metadata may be injected into test instances created with the contents of this data item. </para>
2089 </summary>
2090 <param name="map">The metadata map</param>
2091 </member>
2092 <member name="M:Gallio.Framework.Data.BaseDataItem.PopulateMetadataImpl(Gallio.Model.MetadataMap)">
2093 <summary>Implements <see cref="M:Gallio.Framework.Data.BaseDataItem.PopulateMetadata(Gallio.Model.MetadataMap)" />.</summary>
2094 <param name="map">The metadata map to populate, never null</param>
2095 </member>
2096 <member name="T:Gallio.Framework.Data.BaseDataSet">
2097 <summary>Abstract base class for <see cref="T:Gallio.Framework.Data.IDataSet" /> that validates input arguments before passing them on to the implementation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2098 </member>
2099 <member name="P:Gallio.Framework.Data.BaseDataSet.ColumnCount">
2100 <summary>Gets the number of columns in an indexed data set.</summary>
2101 </member>
2102 <member name="M:Gallio.Framework.Data.BaseDataSet.CanBind(Gallio.Framework.Data.DataBinding)">
2103 <summary>Returns true if the data set can provide a value for the specified binding.</summary>
2104 <param name="binding">The binding</param>
2105 <returns>True if the data set can provide a value for the binding</returns>
2106 </member>
2107 <member name="M:Gallio.Framework.Data.BaseDataSet.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2108 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2109 <param name="binding">The data binding, not null</param>
2110 <returns>True if the binding can be satisfied</returns>
2111 </member>
2112 <member name="M:Gallio.Framework.Data.BaseDataSet.GetItems(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2113 <summary>Gets an enumeration of data items that can supply values for a given collection of bindings.</summary>
2114 <param name="bindings">The bindings that are requested</param>
2115 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2116 <returns>The enumeration of data items</returns>
2117 </member>
2118 <member name="M:Gallio.Framework.Data.BaseDataSet.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2119 <summary>Enumerates the data items in the data set.</summary>
2120 <param name="bindings">The data bindings, not null</param>
2121 <param name="includeDynamicItems">If true, includes dynamic items</param>
2122 <returns>The enumeration of data items in the combined data set</returns>
2123 </member>
2124 <member name="T:Gallio.Framework.Data.BoundDataAccessor">
2125 <summary>A <see cref="T:Gallio.Framework.Data.IDataAccessor" /> that simply accesses a value contained by a data item using a particular <see cref="T:Gallio.Framework.Data.DataBinding" />. This class cannot be inherited.</summary>
2126 </member>
2127 <member name="T:Gallio.Framework.Data.CombinatorialJoinStrategy">
2128 <summary>The combinatorial join strategy combines items by constructing the cartesian product of the items of each provider. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2129 </member>
2130 <member name="F:Gallio.Framework.Data.CombinatorialJoinStrategy.Instance">
2131 <summary>Gets the singleton instance of the strategy. This field is read-only.</summary>
2132 </member>
2133 <member name="M:Gallio.Framework.Data.CombinatorialJoinStrategy.Join(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.IList{System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding}},System.Boolean)">
2134 <summary>Joins the items from each provider into a sequence of aggregate items.</summary>
2135 <param name="providers">The list of providers</param>
2136 <param name="bindingsPerProvider">The list of bindings per provider</param>
2137 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2138 <returns>An enumeration of item-lists consisting of exactly one item from each provider and indexed in the same order as the <paramref name="providers" /> collection</returns>
2139 </member>
2140 <member name="T:Gallio.Framework.Data.ConcatenationMergeStrategy">
2141 <summary>The concatenation merge strategy combines the items from multiple providers by simply concatenating the items in the order in which they appear and proceeding from one provider to the next until all providers have been fully processed. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2142 </member>
2143 <member name="F:Gallio.Framework.Data.ConcatenationMergeStrategy.Instance">
2144 <summary>Gets the singleton instance of the strategy. This field is read-only.</summary>
2145 </member>
2146 <member name="M:Gallio.Framework.Data.ConcatenationMergeStrategy.Merge(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2147 <summary>Merges the items from each provider into a new sequence.</summary>
2148 <param name="providers">The list of providers</param>
2149 <param name="bindings">The bindings</param>
2150 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2151 <returns>The merged sequence of items</returns>
2152 </member>
2153 <member name="T:Gallio.Framework.Data.ConstantDataAccessor">
2154 <summary>An implementation of <see cref="T:Gallio.Framework.Data.IDataAccessor" /> that returns a constant value, ignoring the data item it is passed. This class cannot be inherited.</summary>
2155 </member>
2156 <member name="T:Gallio.Framework.Data.CsvDataSet">
2157 <summary>
2158 <para> A CSV data set retrieves fields from a CSV document as strings. </para>
2159 <para> If the CSV document has a header, then it is interpreted as the names of the columns. Columns with names in brackets, such as "[ExpectedException]", are interpreted as containing metadata values associated with the named key. </para>
2160 </summary>
2161 </member>
2162 <member name="P:Gallio.Framework.Data.CsvDataSet.ColumnCount">
2163 <summary>Gets the number of columns in an indexed data set.</summary>
2164 </member>
2165 <member name="P:Gallio.Framework.Data.CsvDataSet.CommentPrefix">
2166 <summary>
2167 <para> Gets or sets a character that indicates that a line in the source represents a comment. May be set to '\0' (null) to disable comment handling. </para>
2168 <para> Comment lines are excluded from the record set. </para>
2169 </summary>
2170 <value>The default value is '#' (pound).</value>
2171 </member>
2172 <member name="P:Gallio.Framework.Data.CsvDataSet.DataLocationName">
2173 <summary>
2174 <para> Gets the name of the location that is providing the data, or null if none. </para>
2175 <para> The data location name and line number are exposed as <see cref="F:Gallio.Model.MetadataKeys.DataLocation" /> metadata when provided. </para>
2176 </summary>
2177 <value>The default value is null.</value>
2178 </member>
2179 <member name="P:Gallio.Framework.Data.CsvDataSet.FieldDelimiter">
2180 <summary>Gets or sets the field delimiter character.</summary>
2181 <value>The default value is ',' (comma).</value>
2182 </member>
2183 <member name="P:Gallio.Framework.Data.CsvDataSet.HasHeader">
2184 <summary>Gets or sets whether the CSV document has a header that should be used to provide aliases for indexed columns.</summary>
2185 <value>The default value is 'false' which indicates that the file does not have a header.</value>
2186 </member>
2187 <member name="M:Gallio.Framework.Data.CsvDataSet.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2188 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2189 <param name="binding">The data binding, not null</param>
2190 <returns>True if the binding can be satisfied</returns>
2191 </member>
2192 <member name="M:Gallio.Framework.Data.CsvDataSet.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2193 <summary>Enumerates the data items in the data set.</summary>
2194 <param name="bindings">The data bindings, not null</param>
2195 <param name="includeDynamicItems">If true, includes dynamic items</param>
2196 <returns>The enumeration of data items in the combined data set</returns>
2197 </member>
2198 <member name="T:Gallio.Framework.Data.CsvReader">
2199 <summary>
2200 <para> Reads data from a Comma Separated Values document. </para>
2201 <para> The document format simply consists of sequential lines of delimited field values. <list type="bullet"><item>The standard delimiter is ',' (comma) but it may be overridden using <see cref="P:Gallio.Framework.Data.CsvReader.FieldDelimiter" />.</item><item>Empty lines are considered to be records with one empty field.</item><item>Lines that begin with a special <see cref="P:Gallio.Framework.Data.CsvReader.CommentPrefix" /> are excluded from the record set.</item><item>Field values may be quoted using '"' (quote) characters. The quotes will be omitted from the record set. Quotes may be escaped by doubling them within a quoted field.</item><item>Unbalanced quotes are tolerated but may produce unexpected results.</item><item>Excess whitespace is trimmed unless quoted.</item><item>The document may contain a header consiting of field names but the reader does not interpret it in any special way. It will simply be returned to the client as an ordinary record.</item></list></para>
2202 </summary>
2203 </member>
2204 <member name="P:Gallio.Framework.Data.CsvReader.CommentPrefix">
2205 <summary>
2206 <para> Gets or sets a character that indicates that a line in the source represents a comment. May be set to '\0' (null) to disable comment handling. </para>
2207 <para> Comment lines are excluded from the record set. </para>
2208 </summary>
2209 <value>The default value is '#' (pound).</value>
2210 </member>
2211 <member name="P:Gallio.Framework.Data.CsvReader.FieldDelimiter">
2212 <summary>Gets or sets the field delimiter character.</summary>
2213 <value>The default value is ',' (comma).</value>
2214 </member>
2215 <member name="P:Gallio.Framework.Data.CsvReader.PreviousRecordLineNumber">
2216 <summary>Gets the 1-based line number of the previously returned record, or 0 if no lines have been read yet.</summary>
2217 </member>
2218 <member name="M:Gallio.Framework.Data.CsvReader.Close">
2219 <summary>Closes the reader.</summary>
2220 </member>
2221 <member name="M:Gallio.Framework.Data.CsvReader.ReadRecord">
2222 <summary>Reads the list of fields that belong to the next record in the document. Returns null at the end of the document.</summary>
2223 <returns>The record contents as an array of field values, or null if at the end of the document</returns>
2224 <exception cref="T:System.IO.IOException">Thrown if an I/O error occurs</exception>
2225 </member>
2226 <member name="T:Gallio.Framework.Data.DataBinding">
2227 <summary>
2228 <para> A data binding object describes how a data binding is to take place. </para>
2229 <para> This class provides support for optional path-based and index-based lookup. Subclasses may provide additional properties that are recognized by special kinds of data sets to modify how a bound value is resolved. </para>
2230 </summary>
2231 </member>
2232 <member name="P:Gallio.Framework.Data.DataBinding.Index">
2233 <summary>Gets an optional binding index that describes how to locate the bound value in a data set that is structured as an ordered tuple, such as the ordinal index of a cell in an array. Null if none.</summary>
2234 </member>
2235 <member name="P:Gallio.Framework.Data.DataBinding.Path">
2236 <summary>Gets an optional binding path that describes how to locate the bound value in the data set, such as a column name or an XPath expression. Null if none.</summary>
2237 </member>
2238 <member name="M:Gallio.Framework.Data.DataBinding.Equals(System.Object)">
2239 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
2240 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
2241 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
2242 </member>
2243 <member name="M:Gallio.Framework.Data.DataBinding.GetHashCode">
2244 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
2245 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
2246 </member>
2247 <member name="M:Gallio.Framework.Data.DataBinding.ReplaceIndex(System.Nullable{System.Int32})">
2248 <summary>Creates a clone of the data binding with a different index.</summary>
2249 <param name="index">The new index</param>
2250 <returns>The cloned binding</returns>
2251 </member>
2252 <member name="M:Gallio.Framework.Data.DataBinding.ToString">
2253 <summary>Returns a debug representation of the binding as a string.</summary>
2254 <returns>The string representation</returns>
2255 </member>
2256 <member name="T:Gallio.Framework.Data.DataBindingContext">
2257 <summary>A <see cref="T:Gallio.Framework.Data.DataBindingContext" /> tracks a list of <see cref="T:Gallio.Framework.Data.IDataSet" />s and <see cref="T:Gallio.Framework.Data.DataBinding" />s that are used to produce <see cref="T:Gallio.Framework.Data.IDataItem" />s. This class cannot be inherited.</summary>
2258 </member>
2259 <member name="P:Gallio.Framework.Data.DataBindingContext.Converter">
2260 <summary>Gets the converter service.</summary>
2261 </member>
2262 <member name="P:Gallio.Framework.Data.DataBindingContext.DataSets">
2263 <summary>Gets the immutable list of data sets to be enumerated during data binding.</summary>
2264 </member>
2265 <member name="P:Gallio.Framework.Data.DataBindingContext.HasBindings">
2266 <summary>Returns true if the data binding context contains registered data bindings.</summary>
2267 </member>
2268 <member name="P:Gallio.Framework.Data.DataBindingContext.Strategy">
2269 <summary>Gets or sets the <see cref="T:Gallio.Framework.Data.IJoinStrategy" /> to use for combining the <see cref="P:Gallio.Framework.Data.DataBindingContext.DataSets" /> together. By default the strategy is <see cref="T:Gallio.Framework.Data.CombinatorialJoinStrategy" />.</summary>
2270 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
2271 </member>
2272 <member name="M:Gallio.Framework.Data.DataBindingContext.GetItems(System.Boolean)">
2273 <summary>
2274 <para> Gets an enumeration of <see cref="T:Gallio.Framework.Data.IDataItem" />s. </para>
2275 <para> The contents of each item may be inspected using a <see cref="T:Gallio.Framework.Data.IDataAccessor" /> as returned by <see cref="M:Gallio.Framework.Data.DataBindingContext.RegisterBinding(Gallio.Framework.Data.IDataSet,Gallio.Framework.Data.DataBinding)" />. When the client is finished with an item, it should dispose it by calling the <see cref="M:System.IDisposable.Dispose" /> method of the <see cref="T:Gallio.Framework.Data.IDataItem" nolink="true" />. </para>
2276 </summary>
2277 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2278 <returns>The enumeration of data items</returns>
2279 </member>
2280 <member name="M:Gallio.Framework.Data.DataBindingContext.RegisterBinding(Gallio.Framework.Data.IDataSet,Gallio.Framework.Data.DataBinding)">
2281 <summary>Registers a data binding for a given data set and adds the data set to the list of data sets to be enumerated during data binding. Returns a <see cref="T:Gallio.Framework.Data.IDataAccessor" /> that may be used to retrieve the values associated with the binding.</summary>
2282 <param name="dataSet">The data set</param>
2283 <param name="binding">The data binding</param>
2284 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="dataSet" /> or <paramref name="binding" /> is null</exception>
2285 </member>
2286 <member name="T:Gallio.Framework.Data.DataBindingException">
2287 <summary>The type of exception thrown when data binding operations fail.</summary>
2288 </member>
2289 <member name="T:Gallio.Framework.Data.DataBindingSpec">
2290 <summary>
2291 <para> A data binding specification describes how values are bound to slots (<see cref="T:Gallio.Reflection.ISlotInfo" />) of a type or method. The specification can then be used to create new objects or invoke methods. </para>
2292 <para> A specification automatically converts values to the correct types for data binding using a <see cref="T:Gallio.Framework.Conversions.IConverter" />. It can also format the specification to a string using a <see cref="T:Gallio.Framework.Formatting.IFormatter" />. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2293 </member>
2294 <member name="P:Gallio.Framework.Data.DataBindingSpec.Converter">
2295 <summary>Gets the converter.</summary>
2296 </member>
2297 <member name="P:Gallio.Framework.Data.DataBindingSpec.SlotValues">
2298 <summary>Gets the slot values.</summary>
2299 </member>
2300 <member name="M:Gallio.Framework.Data.DataBindingSpec.AppendFormattedGenericArguments(System.Text.StringBuilder,System.Type[],Gallio.Framework.Formatting.IFormatter)">
2301 <summary>Appends formatted generic arguments within angle brackets, if any.</summary>
2302 <param name="str">The string builder, not null</param>
2303 <param name="arguments">The arguments, not null</param>
2304 <param name="formatter">The formatter, not null</param>
2305 </member>
2306 <member name="M:Gallio.Framework.Data.DataBindingSpec.AppendFormattedMethodArguments(System.Text.StringBuilder,System.Object[],Gallio.Framework.Formatting.IFormatter)">
2307 <summary>Appends formatted generic arguments within parentheses, if any.</summary>
2308 <param name="str">The string builder, not null</param>
2309 <param name="arguments">The arguments, not null</param>
2310 <param name="formatter">The formatter, not null</param>
2311 </member>
2312 <member name="M:Gallio.Framework.Data.DataBindingSpec.AppendFormattedNamedValues(System.Text.StringBuilder,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}},Gallio.Framework.Formatting.IFormatter)">
2313 <summary>Appends formatted values keyed and sorted by name, if any. This method is used with fields and properties.</summary>
2314 <param name="str">The string builder, not null</param>
2315 <param name="namedValues">The named values, not null</param>
2316 <param name="formatter">The formatter, not null</param>
2317 </member>
2318 <member name="M:Gallio.Framework.Data.DataBindingSpec.Format(System.String,Gallio.Framework.Formatting.IFormatter)">
2319 <summary>
2320 <para> Formats the specification to a string for presentation. </para>
2321 <para> The values are listed sequentially as follows: <list type="bullet"><item>The <paramref name="entity" />.</item><item>The <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> slot values, if any, are ordered by index and enclosed within angle bracket.</item><item>The <see cref="T:Gallio.Reflection.IParameterInfo" /> slot values, if any, are ordered by index and enclosed within parentheses.</item><item>All other slot values, if any, are sorted by name and formatted as name-value pair assignments following a colon and delimited by a comma</item></list> Example: 'SomeType<int, string>(42, "deep thought"): Author="Douglas Adams", Book="HGTTG"'. </para>
2322 <para> If there are no slots of a given kind, then the enclosing angle brackets or parentheses are ignored. Therefore if <see cref="P:Gallio.Framework.Data.DataBindingSpec.SlotValues" /> is empty then <paramref name="entity" /> will be returned unmodified. </para>
2323 </summary>
2324 <param name="entity">The entity that is qualified by the specification such as the name of a type or method</param>
2325 <param name="formatter">The formatter</param>
2326 <returns>The formatted specification</returns>
2327 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="entity" /> or <paramref name="formatter" /> is null</exception>
2328 </member>
2329 <member name="M:Gallio.Framework.Data.DataBindingSpec.FormatImpl(System.String,Gallio.Framework.Formatting.IFormatter)">
2330 <summary>Internal implementation of <see cref="M:Gallio.Framework.Data.DataBindingSpec.Format(System.String,Gallio.Framework.Formatting.IFormatter)" /> after argument validation.</summary>
2331 <param name="entity">The entity that is qualified by the specification such as the name of a type or method</param>
2332 <param name="formatter">The formatter, not null</param>
2333 <returns>The formatted specification</returns>
2334 </member>
2335 <member name="M:Gallio.Framework.Data.DataBindingSpec.ResolveMember``1(System.Type,``0)">
2336 <summary>
2337 <para> Resolves a member that may be declared by a generic type using the resolved type or one of its subtypes. </para>
2338 <para> For example, if <paramref name="member" /> was declared by type Foo<T> and <paramref name="resolvedType" /> is a subtype of Foo<int>, returns a reflection object for the member as declared by Foo<int>. </para>
2339 </summary>
2340 <typeparam name="T">The type of member</typeparam>
2341 <param name="resolvedType">The resolved type, not null</param>
2342 <param name="member">The member, not null</param>
2343 <returns>The resolved member</returns>
2344 </member>
2345 <member name="T:Gallio.Framework.Data.DataItemExtensions">
2346 <summary>Extension methods for <see cref="T:Gallio.Framework.Data.IDataItem" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2347 </member>
2348 <member name="M:Gallio.Framework.Data.DataItemExtensions.GetMetadata(Gallio.Framework.Data.IDataItem)">
2349 <summary>Gets the metadata associated with a data item.</summary>
2350 <param name="dataItem">The data item</param>
2351 <returns>The associated metadata</returns>
2352 </member>
2353 <member name="T:Gallio.Framework.Data.DataRow">
2354 <summary>
2355 <para> A data row is a simple immutable value type that encpasulates an array of values along with associated metadata for use in data binding expressions. It presents a fluent interface that users may find more convenient than other <see cref="T:Gallio.Framework.Data.IDataItem" /> implementations. </para>
2356 <para> The data in a <see cref="T:Gallio.Framework.Data.DataRow" /> is always considered dynamic. </para>
2357 </summary>
2358 </member>
2359 <member name="P:Gallio.Framework.Data.DataRow.IsDynamic">
2360 <summary>
2361 <para> Returns true if the item contains data that is obtained dynamically from sources whose content may change over time or may be expensive to query ahead of time. </para>
2362 <para> For example, data obtained from a database should be considered dynamic. On the other hand, data obtained from declarative metadata defined as part of the test should be considered static. </para>
2363 </summary>
2364 </member>
2365 <member name="M:Gallio.Framework.Data.DataRow.GetValueImpl(Gallio.Framework.Data.DataBinding)">
2366 <summary>Implements <see cref="M:Gallio.Framework.Data.BaseDataItem.GetValue(Gallio.Framework.Data.DataBinding)" />.</summary>
2367 <param name="binding">The binding, never null</param>
2368 <returns>The associated value</returns>
2369 </member>
2370 <member name="M:Gallio.Framework.Data.DataRow.PopulateMetadataImpl(Gallio.Model.MetadataMap)">
2371 <summary>Implements <see cref="M:Gallio.Framework.Data.BaseDataItem.PopulateMetadata(Gallio.Model.MetadataMap)" />.</summary>
2372 <param name="map">The metadata map to populate, never null</param>
2373 </member>
2374 <member name="M:Gallio.Framework.Data.DataRow.WithMetadata(System.String,System.String)">
2375 <summary>Returns an augmented data row with added metadata.</summary>
2376 <param name="key">The metadata key</param>
2377 <param name="value">The metadata value</param>
2378 <returns>The augmented data row</returns>
2379 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="key" /> or <paramref name="value" /> is null</exception>
2380 </member>
2381 <member name="M:Gallio.Framework.Data.DataRow.WithMetadata(Gallio.Model.MetadataMap)">
2382 <summary>Returns an augmented data row with added metadata from the specified metadata map.</summary>
2383 <param name="map">The metadata map</param>
2384 <returns>The augmented data row</returns>
2385 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="map" /> is null</exception>
2386 </member>
2387 <member name="T:Gallio.Framework.Data.DataSource">
2388 <summary>An data source object provides a simple way of aggregating data sets together. It also provides a simple translation mechanism for mapping binding paths to binding indexes which is useful for providing named aliases for columns in indexed data sets.</summary>
2389 </member>
2390 <member name="P:Gallio.Framework.Data.DataSource.Name">
2391 <summary>Gets the name of the data source, or an empty string if it is anonymous.</summary>
2392 </member>
2393 <member name="M:Gallio.Framework.Data.DataSource.AddIndexAlias(System.String,System.Nullable{System.Int32})">
2394 <summary>Adds an alias for a binding path to map it to the specified index.</summary>
2395 <param name="path">The binding path to match in a case-insensitive manner</param>
2396 <param name="index">The associated index to use instead</param>
2397 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="path" /> is null</exception>
2398 </member>
2399 <member name="M:Gallio.Framework.Data.DataSource.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2400 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2401 <param name="binding">The data binding, not null</param>
2402 <returns>True if the binding can be satisfied</returns>
2403 </member>
2404 <member name="M:Gallio.Framework.Data.DataSource.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2405 <summary>Enumerates the data items in the data set.</summary>
2406 <param name="bindings">The data bindings, not null</param>
2407 <param name="includeDynamicItems">If true, includes dynamic items</param>
2408 <returns>The enumeration of data items in the combined data set</returns>
2409 </member>
2410 <member name="T:Gallio.Framework.Data.DataSourceTable">
2411 <summary>A data source table manages a collection of named data sources.</summary>
2412 </member>
2413 <member name="M:Gallio.Framework.Data.DataSourceTable.ResolveDataSource(System.String)">
2414 <summary>Resolves the data source with the specified name.</summary>
2415 <param name="name">The data source name</param>
2416 <returns>The resolved data source, or null if none found</returns>
2417 </member>
2418 <member name="T:Gallio.Framework.Data.FactoryDataSet">
2419 <summary>
2420 <para> A factory data set generates data items by invoking a factory delegate and interpreting its output in accordance with the factory kind. </para>
2421 <para> Multiple different interpretations are supported. Refer to the documentation of the <see cref="T:Gallio.Framework.Data.FactoryKind" /> enumeration for more details about each kind. </para>
2422 </summary>
2423 </member>
2424 <member name="P:Gallio.Framework.Data.FactoryDataSet.ColumnCount">
2425 <summary>Gets the number of columns in an indexed data set.</summary>
2426 </member>
2427 <member name="M:Gallio.Framework.Data.FactoryDataSet.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2428 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2429 <param name="binding">The data binding, not null</param>
2430 <returns>True if the binding can be satisfied</returns>
2431 </member>
2432 <member name="M:Gallio.Framework.Data.FactoryDataSet.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2433 <summary>Enumerates the data items in the data set.</summary>
2434 <param name="bindings">The data bindings, not null</param>
2435 <param name="includeDynamicItems">If true, includes dynamic items</param>
2436 <returns>The enumeration of data items in the combined data set</returns>
2437 </member>
2438 <member name="T:Gallio.Framework.Data.Generators">
2439 <summary>This class provides a set of factory methods for creating enumerable objects that generate values according to a specified rule. The generated values may be used for a variety of purposes including data-driven testing. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2440 </member>
2441 <member name="M:Gallio.Framework.Data.Generators.EnumValues(System.Type)">
2442 <summary>Creates an enumeration that yields all values of an <see cref="T:System.Enum" /> type.</summary>
2443 <param name="enumType">The <see cref="T:System.Enum" /> type</param>
2444 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="enumType" /> is null</exception>
2445 <exception cref="T:System.ArgumentException">Thrown if <paramref name="enumType" /> is not an <see cref="T:System.Enum" /> type</exception>
2446 </member>
2447 <member name="M:Gallio.Framework.Data.Generators.Linear(System.Int32,System.Int32,System.Int32)">
2448 <summary>Creates an enumeration that yields a linear sequence of <see cref="T:System.Int32" /> values forming an arithmetic progression.</summary>
2449 <param name="firstValue">The first value to generate</param>
2450 <param name="count">The number of values to generate</param>
2451 <param name="step">The increment for each successive value</param>
2452 <returns>The enumeration</returns>
2453 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="count" /> is less than 0</exception>
2454 </member>
2455 <member name="M:Gallio.Framework.Data.Generators.Linear(System.Double,System.Int32,System.Double)">
2456 <summary>Creates an enumeration that yields a linear sequence of <see cref="T:System.Double" /> values forming an arithmetic progression.</summary>
2457 <param name="firstValue">The first value to generate</param>
2458 <param name="count">The number of values to generate</param>
2459 <param name="step">The increment for each successive value</param>
2460 <returns>The enumeration</returns>
2461 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="count" /> is less than 0</exception>
2462 </member>
2463 <member name="T:Gallio.Framework.Data.IntersectionMergeStrategy">
2464 <summary>
2465 <para> The intersection merge strategy combines the items from multiple providers by discarding items whose values do not appear in the items of all other providers. If the same item appears more than once within any given provider, when it will be enumerated only as often as the least number of repetitions of that item that appear in other providers. </para>
2466 <para> Uniqueness is determined by the natural equality of each bound value in the item. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2467 </member>
2468 <member name="F:Gallio.Framework.Data.IntersectionMergeStrategy.Instance">
2469 <summary>Gets the singleton instance of the strategy. This field is read-only.</summary>
2470 </member>
2471 <member name="M:Gallio.Framework.Data.IntersectionMergeStrategy.Merge(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2472 <summary>Merges the items from each provider into a new sequence.</summary>
2473 <param name="providers">The list of providers</param>
2474 <param name="bindings">The bindings</param>
2475 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2476 <returns>The merged sequence of items</returns>
2477 </member>
2478 <member name="T:Gallio.Framework.Data.ItemSequenceDataSet">
2479 <summary>A data set constructed from a sequence of data items. This class cannot be inherited.</summary>
2480 </member>
2481 <member name="P:Gallio.Framework.Data.ItemSequenceDataSet.ColumnCount">
2482 <summary>Gets the number of columns in an indexed data set.</summary>
2483 </member>
2484 <member name="T:Gallio.Framework.Data.JoinedDataSet">
2485 <summary>
2486 <para> A joined data set is an aggregate data set that joins items from each of zero or more other data sets according to a <see cref="T:Gallio.Framework.Data.IJoinStrategy" />. </para>
2487 <para> A joined data set supports queries with two kinds of <see cref="T:Gallio.Framework.Data.DataBinding" />: <list type="bullet"><item>A translated binding produced by <see cref="M:Gallio.Framework.Data.JoinedDataSet.TranslateBinding(Gallio.Framework.Data.IDataSet,Gallio.Framework.Data.DataBinding)" /> is scoped to a particular <see cref="T:Gallio.Framework.Data.IDataSet" />. When a query occurs using a translated binding, only that <see cref="T:Gallio.Framework.Data.IDataSet" nolink="true" /> and its <see cref="T:Gallio.Framework.Data.IDataItem" /> components are consulted.</item><item>Any other binding is treated as if it referred to the joined <see cref="T:Gallio.Framework.Data.IDataItem" nolink="true" /> including all of the contributions of all data sets. The joined <see cref="T:Gallio.Framework.Data.IDataItem" nolink="true" /> is conceptually laid out such that the columns of first <see cref="T:Gallio.Framework.Data.IDataSet" nolink="true" /> appear first followed by those of successive <see cref="T:Gallio.Framework.Data.IDataSet" nolink="true" />s in order. To maintain this illustion, the <see cref="P:Gallio.Framework.Data.DataBinding.Index" /> component of the binding is adjusted internally before passing any queries on to the <see cref="T:Gallio.Framework.Data.IDataSet" nolink="true" />s. Thereafter a binding will be consumed by the first <see cref="T:Gallio.Framework.Data.IDataSet" nolink="true" /> that returns <c>true</c> from its <see cref="M:Gallio.Framework.Data.IDataSet.CanBind(Gallio.Framework.Data.DataBinding)" /> method after index-adjustment. </item></list></para>
2488 </summary>
2489 </member>
2490 <member name="P:Gallio.Framework.Data.JoinedDataSet.ColumnCount">
2491 <summary>Gets the number of columns in an indexed data set.</summary>
2492 </member>
2493 <member name="P:Gallio.Framework.Data.JoinedDataSet.Strategy">
2494 <summary>Gets or sets the <see cref="T:Gallio.Framework.Data.IJoinStrategy" />. By default the strategy is <see cref="T:Gallio.Framework.Data.CombinatorialJoinStrategy" />.</summary>
2495 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
2496 </member>
2497 <member name="M:Gallio.Framework.Data.JoinedDataSet.AddDataSet(Gallio.Framework.Data.IDataSet)">
2498 <summary>Adds a data set to the aggregate.</summary>
2499 <param name="dataSet">The data set to add</param>
2500 </member>
2501 <member name="M:Gallio.Framework.Data.JoinedDataSet.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2502 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2503 <param name="binding">The data binding, not null</param>
2504 <returns>True if the binding can be satisfied</returns>
2505 </member>
2506 <member name="M:Gallio.Framework.Data.JoinedDataSet.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2507 <summary>Enumerates the data items in the data set.</summary>
2508 <param name="bindings">The data bindings, not null</param>
2509 <param name="includeDynamicItems">If true, includes dynamic items</param>
2510 <returns>The enumeration of data items in the combined data set</returns>
2511 </member>
2512 <member name="M:Gallio.Framework.Data.JoinedDataSet.TranslateBinding(Gallio.Framework.Data.IDataSet,Gallio.Framework.Data.DataBinding)">
2513 <summary>
2514 <para> Translates a binding into one that expresses a query that is scoped over a particular data set that is associated with this interface. </para>
2515 <para> If the binding contains an index parameter, the translated binding will contain an index that is offset based on the position of the contents of the data set within the items of the joined aggregate. </para>
2516 </summary>
2517 <param name="dataSet">The data set</param>
2518 <param name="binding">The binding</param>
2519 <returns>The translated binding</returns>
2520 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="dataSet" /> or <paramref name="binding" /> is null</exception>
2521 <exception cref="T:System.ArgumentException">Thrown if <paramref name="dataSet" /> is not a member of this instance</exception>
2522 </member>
2523 <member name="T:Gallio.Framework.Data.ListDataItem`1">
2524 <summary>A list data item contains a list of static data values combined with optional metadata for the item. Data binding occurs based on the binding index alone. This class cannot be inherited.</summary>
2525 <typeparam name="T">The value type</typeparam>
2526 </member>
2527 <member name="T:Gallio.Framework.Data.MergedDataSet">
2528 <summary>A merged data set is an aggregate data set that selects items from each of zero or more other data sets according to a <see cref="T:Gallio.Framework.Data.IMergeStrategy" />.</summary>
2529 </member>
2530 <member name="P:Gallio.Framework.Data.MergedDataSet.ColumnCount">
2531 <summary>Gets the number of columns in an indexed data set.</summary>
2532 </member>
2533 <member name="P:Gallio.Framework.Data.MergedDataSet.Strategy">
2534 <summary>Gets or sets the <see cref="T:Gallio.Framework.Data.IMergeStrategy" />. By default the strategy is <see cref="T:Gallio.Framework.Data.ConcatenationMergeStrategy" />.</summary>
2535 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
2536 </member>
2537 <member name="M:Gallio.Framework.Data.MergedDataSet.AddDataSet(Gallio.Framework.Data.IDataSet)">
2538 <summary>Adds a data set to the aggregate.</summary>
2539 <param name="dataSet">The data set to add</param>
2540 </member>
2541 <member name="M:Gallio.Framework.Data.MergedDataSet.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2542 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2543 <param name="binding">The data binding, not null</param>
2544 <returns>True if the binding can be satisfied</returns>
2545 </member>
2546 <member name="M:Gallio.Framework.Data.MergedDataSet.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2547 <summary>Enumerates the data items in the data set.</summary>
2548 <param name="bindings">The data bindings, not null</param>
2549 <param name="includeDynamicItems">If true, includes dynamic items</param>
2550 <returns>The enumeration of data items in the combined data set</returns>
2551 </member>
2552 <member name="T:Gallio.Framework.Data.MethodInvocationSpec">
2553 <summary>Encapsulates a specification for invoking a method given values for its generic parameters and formal parameters. This class cannot be inherited.</summary>
2554 </member>
2555 <member name="P:Gallio.Framework.Data.MethodInvocationSpec.Method">
2556 <summary>Gets the method or generic method definition to be invoked.</summary>
2557 </member>
2558 <member name="P:Gallio.Framework.Data.MethodInvocationSpec.ResolvedArguments">
2559 <summary>
2560 <para> Gets the resolved method arguments. </para>
2561 <para> The values have already been converted to appropriate types for invoking the method. </para>
2562 </summary>
2563 </member>
2564 <member name="P:Gallio.Framework.Data.MethodInvocationSpec.ResolvedMethod">
2565 <summary>Gets the resolved method given any generic method arguments that may have been provided as slot values.</summary>
2566 </member>
2567 <member name="P:Gallio.Framework.Data.MethodInvocationSpec.ResolvedType">
2568 <summary>Gets the resolved type that declares the method.</summary>
2569 </member>
2570 <member name="M:Gallio.Framework.Data.MethodInvocationSpec.Invoke(System.Object)">
2571 <summary>Invokes the method.</summary>
2572 <param name="obj">The object on which to invoke the method. This value is ignored if the method is static.</param>
2573 <returns>The method result value</returns>
2574 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="obj" /> is null but the method is non-static</exception>
2575 <exception cref="T:System.Exception">Any exception thrown by the invoked method</exception>
2576 </member>
2577 <member name="T:Gallio.Framework.Data.NullDataItem">
2578 <summary>A null data item simply returns a null value on each request. It has no metadata. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2579 </member>
2580 <member name="F:Gallio.Framework.Data.NullDataItem.Instance">
2581 <summary>Gets the singleton null data item instance. This field is read-only.</summary>
2582 </member>
2583 <member name="P:Gallio.Framework.Data.NullDataItem.IsDynamic">
2584 <summary>
2585 <para> Returns true if the item contains data that is obtained dynamically from sources whose content may change over time or may be expensive to query ahead of time. </para>
2586 <para> For example, data obtained from a database should be considered dynamic. On the other hand, data obtained from declarative metadata defined as part of the test should be considered static. </para>
2587 </summary>
2588 </member>
2589 <member name="T:Gallio.Framework.Data.ObjectCreationSpec">
2590 <summary>Encapsulates a specification for creating objects given values for a type's generic parameters, constructor parameters, fields and properties. This class cannot be inherited.</summary>
2591 </member>
2592 <member name="P:Gallio.Framework.Data.ObjectCreationSpec.ResolvedConstructor">
2593 <summary>Gets the resolved constructor, or null if the type was abstract or if it was a struct and the default struct constructor is being use.</summary>
2594 </member>
2595 <member name="P:Gallio.Framework.Data.ObjectCreationSpec.ResolvedConstructorArguments">
2596 <summary>
2597 <para> Gets the resolved constructor arguments. </para>
2598 <para> The values have already been converted to appropriate types for invoking the constructor. </para>
2599 </summary>
2600 </member>
2601 <member name="P:Gallio.Framework.Data.ObjectCreationSpec.ResolvedFieldValues">
2602 <summary>
2603 <para> Gets the resolved fields and their values. </para>
2604 <para> The values have already been converted to appropriate types for setting the fields. </para>
2605 </summary>
2606 </member>
2607 <member name="P:Gallio.Framework.Data.ObjectCreationSpec.ResolvedPropertyValues">
2608 <summary>
2609 <para> Gets the resolved properties and their values. </para>
2610 <para> The values have already been converted to appropriate types for setting the properties. </para>
2611 </summary>
2612 </member>
2613 <member name="P:Gallio.Framework.Data.ObjectCreationSpec.ResolvedType">
2614 <summary>Gets the resolved type given any generic type arguments that may have been provided as slot values.</summary>
2615 </member>
2616 <member name="P:Gallio.Framework.Data.ObjectCreationSpec.Type">
2617 <summary>Gets the type or generic type definition to be instantiated.</summary>
2618 </member>
2619 <member name="M:Gallio.Framework.Data.ObjectCreationSpec.CreateInstance">
2620 <summary>Creates an instance of the resolved type and initializes it using constructor parameter, field and property slot values.</summary>
2621 <returns>The new instance, never null</returns>
2622 <exception cref="T:System.InvalidOperationException">Thrown if the type is not instantiable</exception>
2623 </member>
2624 <member name="T:Gallio.Framework.Data.ObjectDataBinder">
2625 <summary>An object data binder creates objects and binds values to its slots such as generic type parameters, constructor parameters, fields and properties.</summary>
2626 </member>
2627 <member name="M:Gallio.Framework.Data.ObjectDataBinder.RegisterImpl(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)">
2628 <summary>Implementation of <see cref="M:Gallio.Framework.Data.BaseDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)" />.</summary>
2629 <param name="context">The data binding context, not null</param>
2630 <param name="resolver">The data source resolver, not null</param>
2631 <returns>The data binding accessor</returns>
2632 </member>
2633 <member name="M:Gallio.Framework.Data.ObjectDataBinder.SetSlotBinder(Gallio.Reflection.ISlotInfo,Gallio.Framework.Data.IDataBinder)">
2634 <summary>Sets the binder for a slot.</summary>
2635 <param name="slot">The slot</param>
2636 <param name="binder">The binder</param>
2637 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="slot" /> or <paramref name="binder" /> is null</exception>
2638 </member>
2639 <member name="T:Gallio.Framework.Data.PairwiseJoinStrategy">
2640 <summary>
2641 <para> The pairwise strategy constructs a limited number of combinations of the items within the data providers such that they cover all possible pairs of values from each data source. </para>
2642 <para> This strategy can be more efficient than one based on exhaustively testing all combinations since many test failures result from the interaction of a relatively small number of factors: often just two of them. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2643 </member>
2644 <member name="F:Gallio.Framework.Data.PairwiseJoinStrategy.Instance">
2645 <summary>Gets the singleton instance of the strategy. This field is read-only.</summary>
2646 </member>
2647 <member name="M:Gallio.Framework.Data.PairwiseJoinStrategy.Join(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.IList{System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding}},System.Boolean)">
2648 <summary>Joins the items from each provider into a sequence of aggregate items.</summary>
2649 <param name="providers">The list of providers</param>
2650 <param name="bindingsPerProvider">The list of bindings per provider</param>
2651 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2652 <returns>An enumeration of item-lists consisting of exactly one item from each provider and indexed in the same order as the <paramref name="providers" /> collection</returns>
2653 </member>
2654 <member name="T:Gallio.Framework.Data.ScalarDataBinder">
2655 <summary>A scalar data binder queries a specified data source with a data binding and converts the resulting value to the requested type. It does nothing during unbinding.</summary>
2656 </member>
2657 <member name="M:Gallio.Framework.Data.ScalarDataBinder.RegisterImpl(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)">
2658 <summary>Implementation of <see cref="M:Gallio.Framework.Data.BaseDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)" />.</summary>
2659 <param name="context">The data binding context, not null</param>
2660 <param name="resolver">The data source resolver, not null</param>
2661 <returns>The data binding accessor</returns>
2662 </member>
2663 <member name="T:Gallio.Framework.Data.ScalarDataItem`1">
2664 <summary>A scalar data item represents a single static data value combined with optional metadata for the item. Data binding occurs whenever the binding index is 0. This class cannot be inherited.</summary>
2665 <typeparam name="T">The value type</typeparam>
2666 </member>
2667 <member name="T:Gallio.Framework.Data.SequentialJoinStrategy">
2668 <summary>The sequential join strategy combines items from each data provider sequentially. If one provider contains fewer items than the others, the sequential join strategy will insert a <see cref="T:Gallio.Framework.Data.NullDataItem" /> in its place until all other providers have been exhausted. This is similar to performing an "outer join" of multiple sources by ordinal index. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2669 </member>
2670 <member name="F:Gallio.Framework.Data.SequentialJoinStrategy.Instance">
2671 <summary>Gets the singleton instance of the strategy. This field is read-only.</summary>
2672 </member>
2673 <member name="M:Gallio.Framework.Data.SequentialJoinStrategy.Join(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.IList{System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding}},System.Boolean)">
2674 <summary>Joins the items from each provider into a sequence of aggregate items.</summary>
2675 <param name="providers">The list of providers</param>
2676 <param name="bindingsPerProvider">The list of bindings per provider</param>
2677 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2678 <returns>An enumeration of item-lists consisting of exactly one item from each provider and indexed in the same order as the <paramref name="providers" /> collection</returns>
2679 </member>
2680 <member name="T:Gallio.Framework.Data.SimpleDataItem">
2681 <summary>An implementation of <see cref="T:Gallio.Framework.Data.IDataItem" /> that stores the dynamic flag and metadata. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
2682 </member>
2683 <member name="P:Gallio.Framework.Data.SimpleDataItem.IsDynamic">
2684 <summary>
2685 <para> Returns true if the item contains data that is obtained dynamically from sources whose content may change over time or may be expensive to query ahead of time. </para>
2686 <para> For example, data obtained from a database should be considered dynamic. On the other hand, data obtained from declarative metadata defined as part of the test should be considered static. </para>
2687 </summary>
2688 </member>
2689 <member name="M:Gallio.Framework.Data.SimpleDataItem.PopulateMetadataImpl(Gallio.Model.MetadataMap)">
2690 <summary>Implements <see cref="M:Gallio.Framework.Data.BaseDataItem.PopulateMetadata(Gallio.Model.MetadataMap)" />.</summary>
2691 <param name="map">The metadata map to populate, never null</param>
2692 </member>
2693 <member name="T:Gallio.Framework.Data.UnionMergeStrategy">
2694 <summary>
2695 <para> The union merge strategy combines the items from multiple providers by discarding all items whose values duplicate those of other items that have already been enumerated. </para>
2696 <para> Uniqueness is determined by the natural equality of each bound value in the item. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
2697 </member>
2698 <member name="F:Gallio.Framework.Data.UnionMergeStrategy.Instance">
2699 <summary>Gets the singleton instance of the strategy. This field is read-only.</summary>
2700 </member>
2701 <member name="M:Gallio.Framework.Data.UnionMergeStrategy.Merge(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2702 <summary>Merges the items from each provider into a new sequence.</summary>
2703 <param name="providers">The list of providers</param>
2704 <param name="bindings">The bindings</param>
2705 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2706 <returns>The merged sequence of items</returns>
2707 </member>
2708 <member name="T:Gallio.Framework.Data.ValueSequenceDataSet">
2709 <summary>A data set constructed from an enumerated sequence of values. This class cannot be inherited.</summary>
2710 </member>
2711 <member name="P:Gallio.Framework.Data.ValueSequenceDataSet.ColumnCount">
2712 <summary>Gets the number of columns in an indexed data set.</summary>
2713 </member>
2714 <member name="T:Gallio.Framework.Data.XmlDataSet">
2715 <summary>
2716 <para> An XML data set selects nodes from an XML document using XPath expressions. The selected nodes are returned as <see cref="T:System.Xml.XPath.XPathNavigator" /> objects. </para>
2717 <para> Two XPath expressions are used. <list type="bullet"><item><term>Item Path</term><description>An XPath expression that selects a set of nodes that are used to uniquely identify records. For example, the item path might be used to select the containing element of each Book element in an XML document of Books. The item path is specified in the constructor.</description></item><item><term>Binding Path</term><description>An XPath expression that selects a node relative to the item path that contains a particular data value of interest. For example, the binding path might be used to select the Author attribute of a Book element in an XML document of Books. The binding path is specified by the <see cref="T:Gallio.Framework.Data.DataBinding" />.</description></item></list></para>
2718 </summary>
2719 </member>
2720 <member name="P:Gallio.Framework.Data.XmlDataSet.ColumnCount">
2721 <summary>Gets the number of columns in an indexed data set.</summary>
2722 </member>
2723 <member name="M:Gallio.Framework.Data.XmlDataSet.CanBindImpl(Gallio.Framework.Data.DataBinding)">
2724 <summary>Determines whether a binding can be satisfied by the data set.</summary>
2725 <param name="binding">The data binding, not null</param>
2726 <returns>True if the binding can be satisfied</returns>
2727 </member>
2728 <member name="M:Gallio.Framework.Data.XmlDataSet.GetItemsImpl(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2729 <summary>Enumerates the data items in the data set.</summary>
2730 <param name="bindings">The data bindings, not null</param>
2731 <param name="includeDynamicItems">If true, includes dynamic items</param>
2732 <returns>The enumeration of data items in the combined data set</returns>
2733 </member>
2734 <member name="T:Gallio.Framework.Data.IDataAccessor">
2735 <summary>A data accessor extracts a value from a <see cref="T:Gallio.Framework.Data.IDataItem" />.</summary>
2736 </member>
2737 <member name="M:Gallio.Framework.Data.IDataAccessor.GetValue(Gallio.Framework.Data.IDataItem)">
2738 <summary>Gets a value derived from the <see cref="T:Gallio.Framework.Data.IDataItem" />.</summary>
2739 <param name="item">The data item</param>
2740 <returns>The value</returns>
2741 </member>
2742 <member name="T:Gallio.Framework.Data.IDataBinder">
2743 <summary>
2744 <para> A data binder specifies how to produce values that are suitable for data binding in some context. </para>
2745 <para> The typical <see cref="T:Gallio.Framework.Data.IDataBinder" /> lifecycle is as follows: <list type="bullet"><item>First, a <see cref="T:Gallio.Framework.Data.DataBindingContext" /> is created.</item><item>Next the client calls <see cref="M:Gallio.Framework.Data.IDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)" /> for each <see cref="T:Gallio.Framework.Data.IDataBinder" nolink="true" />, supplying the <see cref="T:Gallio.Framework.Data.DataBindingContext" nolink="true" /> and a <see cref="T:Gallio.Framework.Data.IDataSourceResolver" /> for resolving data sources.</item><item>Then the client calls <see cref="M:Gallio.Framework.Data.DataBindingContext.GetItems(System.Boolean)" /> and begins enumerating over the items.</item><item>For each item, the client calls <see cref="M:Gallio.Framework.Data.IDataAccessor.GetValue(Gallio.Framework.Data.IDataItem)" /> using the <see cref="T:Gallio.Framework.Data.IDataAccessor" /> produced by the <see cref="T:Gallio.Framework.Data.IDataBinder" nolink="true" />s to obtain the bound values.</item><item>When finished with an item, the client disposes it.</item></list></para>
2746 <para> The lifecycle may also be explained in terms of three phases from the perspective of a <see cref="T:Gallio.Framework.Data.IDataBinder" nolink="true" />. <list type="bullet"><item><term>Prebinding</term><description>The <see cref="M:Gallio.Framework.Data.IDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)" nolink="true" /> method is called to register interest in particular <see cref="T:Gallio.Framework.Data.IDataSet" />s with the <see cref="T:Gallio.Framework.Data.DataBindingContext" nolink="true" />.</description></item><item><term>Binding</term><description>The <see cref="M:Gallio.Framework.Data.IDataAccessor.GetValue(Gallio.Framework.Data.IDataItem)" nolink="true" /> method is called to obtain bound values from a <see cref="T:Gallio.Framework.Data.IDataItem" />.</description></item><item><term>Unbinding</term><description>The <see cref="T:Gallio.Framework.Data.IDataItem" nolink="true" />'s <see cref="M:System.IDisposable.Dispose" /> method is called to release resources used by the bound values.</description></item></list></para>
2747 </summary>
2748 </member>
2749 <member name="M:Gallio.Framework.Data.IDataBinder.Register(Gallio.Framework.Data.DataBindingContext,Gallio.Framework.Data.IDataSourceResolver)">
2750 <summary>Registers the <see cref="T:Gallio.Framework.Data.IDataBinder" />'s requests to query particular <see cref="T:Gallio.Framework.Data.IDataSet" />s with the <see cref="T:Gallio.Framework.Data.DataBindingContext" />.</summary>
2751 <param name="context">The data binding context</param>
2752 <param name="resolver">The data source resolver</param>
2753 <returns>The data binding accessor to use for obtaining bound values from <see cref="T:Gallio.Framework.Data.IDataItem" />s produced by the <see cref="T:Gallio.Framework.Data.DataBindingContext" />.</returns>
2754 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="context" /> or <paramref name="resolver" /> is null</exception>
2755 </member>
2756 <member name="T:Gallio.Framework.Data.IDataItem">
2757 <summary>
2758 <para> A data item is an opaque representation of a collection of values and metadata that may be retrieved using data bindings that encode the appropriate lookup rules into the item. </para>
2759 <para> Data items may have very different forms: <list type="bullet"><item>Scalar-like items: Items that always yield a single value, possibly a constant</item><item>Row-like items: Items that yield several values in response to index-based data bindings or named column paths</item><item>Structured items: Items that yield values by binding to paths within the item or by resolving custom data binding expressions</item></list></para>
2760 </summary>
2761 </member>
2762 <member name="P:Gallio.Framework.Data.IDataItem.IsDynamic">
2763 <summary>
2764 <para> Returns true if the item contains data that is obtained dynamically from sources whose content may change over time or may be expensive to query ahead of time. </para>
2765 <para> For example, data obtained from a database should be considered dynamic. On the other hand, data obtained from declarative metadata defined as part of the test should be considered static. </para>
2766 </summary>
2767 </member>
2768 <member name="M:Gallio.Framework.Data.IDataItem.GetValue(Gallio.Framework.Data.DataBinding)">
2769 <summary>Gets the value of the specified binding.</summary>
2770 <param name="binding">The data binding, never null</param>
2771 <returns>The value</returns>
2772 <exception cref="T:Gallio.Framework.Data.DataBindingException">Thrown if the <paramref name="binding" /> cannot be resolved or if its value cannot be obtained</exception>
2773 </member>
2774 <member name="M:Gallio.Framework.Data.IDataItem.PopulateMetadata(Gallio.Model.MetadataMap)">
2775 <summary>
2776 <para> Populates the specified metadata map with key/value pairs associated with the data item, if any. </para>
2777 <para> For example, the metadata may contain a description that serves as documentation of the contents of the data item or of the test scenario that is exercised by the contents of the data item. This metadata may be injected into test instances created with the contents of this data item. </para>
2778 </summary>
2779 <param name="map">The metadata map</param>
2780 </member>
2781 <member name="T:Gallio.Framework.Data.IDataProvider">
2782 <summary>A data provider generates an enumeration of <see cref="T:Gallio.Framework.Data.IDataItem" />s given a collection of <see cref="T:Gallio.Framework.Data.DataBinding" />s to satisfy.</summary>
2783 </member>
2784 <member name="M:Gallio.Framework.Data.IDataProvider.GetItems(System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2785 <summary>Gets an enumeration of data items that can supply values for a given collection of bindings.</summary>
2786 <param name="bindings">The bindings that are requested</param>
2787 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2788 <returns>The enumeration of data items</returns>
2789 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="bindings" /> is null</exception>
2790 </member>
2791 <member name="T:Gallio.Framework.Data.IDataSet">
2792 <summary>A data set provides data items for data binding and describes whether is supports particular bindings.</summary>
2793 </member>
2794 <member name="P:Gallio.Framework.Data.IDataSet.ColumnCount">
2795 <summary>Gets the number of columns in an indexed data set.</summary>
2796 </member>
2797 <member name="M:Gallio.Framework.Data.IDataSet.CanBind(Gallio.Framework.Data.DataBinding)">
2798 <summary>Returns true if the data set can provide a value for the specified binding.</summary>
2799 <param name="binding">The binding</param>
2800 <returns>True if the data set can provide a value for the binding</returns>
2801 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="binding" /> is null</exception>
2802 </member>
2803 <member name="T:Gallio.Framework.Data.IDataSourceResolver">
2804 <summary>Resolves data sources by name.</summary>
2805 </member>
2806 <member name="M:Gallio.Framework.Data.IDataSourceResolver.ResolveDataSource(System.String)">
2807 <summary>Resolves the data source with the specified name.</summary>
2808 <param name="name">The data source name</param>
2809 <returns>The resolved data source, or null if none found</returns>
2810 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> is null</exception>
2811 </member>
2812 <member name="T:Gallio.Framework.Data.IJoinStrategy">
2813 <summary>A join strategy combines items from multiple providers into products according to some algorithm.</summary>
2814 </member>
2815 <member name="M:Gallio.Framework.Data.IJoinStrategy.Join(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.IList{System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding}},System.Boolean)">
2816 <summary>Joins the items from each provider into a sequence of aggregate items.</summary>
2817 <param name="providers">The list of providers</param>
2818 <param name="bindingsPerProvider">The list of bindings per provider</param>
2819 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2820 <returns>An enumeration of item-lists consisting of exactly one item from each provider and indexed in the same order as the <paramref name="providers" /> collection</returns>
2821 </member>
2822 <member name="T:Gallio.Framework.Data.IMergeStrategy">
2823 <summary>A merge strategy combines items from multiple providers into a sequence according to some algorithm.</summary>
2824 </member>
2825 <member name="M:Gallio.Framework.Data.IMergeStrategy.Merge(System.Collections.Generic.IList{Gallio.Framework.Data.IDataProvider},System.Collections.Generic.ICollection{Gallio.Framework.Data.DataBinding},System.Boolean)">
2826 <summary>Merges the items from each provider into a new sequence.</summary>
2827 <param name="providers">The list of providers</param>
2828 <param name="bindings">The bindings</param>
2829 <param name="includeDynamicItems">If true, includes items that may be dynamically generated in the result set. Otherwise excludes such items and only returns those that are statically known a priori.</param>
2830 <returns>The merged sequence of items</returns>
2831 </member>
2832 <member name="T:Gallio.Framework.Data.FactoryKind">
2833 <summary>
2834 <para> Specifies the kind of factory member referenced by <see cref="T:Gallio.Framework.Data.FactoryDataSet" />. </para>
2835 <para> Each kind of factory expresses its contents by returning enumerations of data sets, data items, object arrays and single objects. </para>
2836 <para> The kind of a factory may be automatically determined or it may be explicitly specified in cases where it may be ambiguous. </para>
2837 </summary>
2838 </member>
2839 <member name="F:Gallio.Framework.Data.FactoryKind.Auto">
2840 <summary>
2841 <para> Automatically determines the type of factory based on the type of element returned by the enumeration. </para>
2842 <para>
2843 <list type="bullet">
2844 <item>If the element is a <see cref="T:Gallio.Framework.Data.IDataSet" /> then it is processed in the same manner as <see cref="F:Gallio.Framework.Data.FactoryKind.DataSet" />.</item>
2845 <item>If the element is a <see cref="T:Gallio.Framework.Data.IDataItem" /> (such as <see cref="F:Gallio.Framework.Data.FactoryKind.DataItem" />, <see cref="T:Gallio.Framework.Data.ScalarDataItem`1" /> or <see cref="T:Gallio.Framework.Data.ListDataItem`1" />) then it is processed in the same manner as <see cref="F:Gallio.Framework.Data.FactoryKind.DataItem" nolink="true" />.</item>
2846 <item>If the element is an array then it is processed in the same manner as <see cref="F:Gallio.Framework.Data.FactoryKind.ObjectArray" />.</item>
2847 <item>Otherwise the element is process in the same manner as <see cref="F:Gallio.Framework.Data.FactoryKind.Object" />.</item>
2848 </list>
2849 </para>
2850 <para> Refer to the other factory kinds for usage examples. </para>
2851 </summary>
2852 </member>
2853 <member name="F:Gallio.Framework.Data.FactoryKind.DataSet">
2854 <summary>Specifies that the factory returns an enumeration <see cref="T:Gallio.Framework.Data.IDataSet" />s whose items are to be consumed.</summary>
2855 </member>
2856 <member name="F:Gallio.Framework.Data.FactoryKind.DataItem">
2857 <summary>Specifies that the factory returns an enumeration of <see cref="T:Gallio.Framework.Data.IDataItem" />s (such as <see cref="T:Gallio.Framework.Data.DataRow" />, <see cref="T:Gallio.Framework.Data.ScalarDataItem`1" />, or <see cref="T:Gallio.Framework.Data.ListDataItem`1" />).</summary>
2858 </member>
2859 <member name="F:Gallio.Framework.Data.FactoryKind.ObjectArray">
2860 <summary>Specifies that the factory returns an enumeration of object arrays that describe successive items.</summary>
2861 </member>
2862 <member name="F:Gallio.Framework.Data.FactoryKind.Object">
2863 <summary>Specifies that the factory returns an enumeration of single object values.</summary>
2864 </member>
2865 <member name="T:Gallio.Framework.Formatting.BooleanFormattingRule">
2866 <summary>
2867 <para> A formatting rule for <see cref="T:System.Boolean" />. </para>
2868 <para> Formats values as "true" or "false". </para>This class cannot be inherited.</summary>
2869 </member>
2870 <member name="M:Gallio.Framework.Formatting.BooleanFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2871 <summary>Formats the specified object.</summary>
2872 <param name="obj">The object to format, never null</param>
2873 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2874 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2875 </member>
2876 <member name="M:Gallio.Framework.Formatting.BooleanFormattingRule.GetPriority(System.Type)">
2877 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2878 <param name="type">The type of object, never null</param>
2879 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2880 </member>
2881 <member name="T:Gallio.Framework.Formatting.ByteFormattingRule">
2882 <summary>
2883 <para> A formatting rule for <see cref="T:System.Byte" />. </para>
2884 <para> Formats values as two digit hex values like "0xa5". </para>This class cannot be inherited.</summary>
2885 </member>
2886 <member name="M:Gallio.Framework.Formatting.ByteFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2887 <summary>Formats the specified object.</summary>
2888 <param name="obj">The object to format, never null</param>
2889 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2890 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2891 </member>
2892 <member name="M:Gallio.Framework.Formatting.ByteFormattingRule.GetPriority(System.Type)">
2893 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2894 <param name="type">The type of object, never null</param>
2895 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2896 </member>
2897 <member name="T:Gallio.Framework.Formatting.CharFormattingRule">
2898 <summary>
2899 <para> A formatting rule for <see cref="T:System.Char" />. </para>
2900 <para> Formats values as literals like: "'x'" or "'\n'". </para>This class cannot be inherited.</summary>
2901 </member>
2902 <member name="M:Gallio.Framework.Formatting.CharFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2903 <summary>Formats the specified object.</summary>
2904 <param name="obj">The object to format, never null</param>
2905 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2906 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2907 </member>
2908 <member name="M:Gallio.Framework.Formatting.CharFormattingRule.GetPriority(System.Type)">
2909 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2910 <param name="type">The type of object, never null</param>
2911 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2912 </member>
2913 <member name="T:Gallio.Framework.Formatting.ConvertToStringFormattingRule">
2914 <summary>A default formatting rule for objects based on using the <see cref="T:Gallio.Framework.Conversions.IConverter" /> to convert the value to a string. This rule has minimum priority so that all other formatting rules should override it in principle. This class cannot be inherited.</summary>
2915 </member>
2916 <member name="M:Gallio.Framework.Formatting.ConvertToStringFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2917 <summary>Formats the specified object.</summary>
2918 <param name="obj">The object to format, never null</param>
2919 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2920 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2921 </member>
2922 <member name="M:Gallio.Framework.Formatting.ConvertToStringFormattingRule.GetPriority(System.Type)">
2923 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2924 <param name="type">The type of object, never null</param>
2925 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2926 </member>
2927 <member name="T:Gallio.Framework.Formatting.DateTimeFormattingRule">
2928 <summary>
2929 <para> A formatting rule for <see cref="T:System.DateTime" />. </para>
2930 <para> Formats values in the invariant round-trip format like: "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzz". </para>This class cannot be inherited.</summary>
2931 </member>
2932 <member name="M:Gallio.Framework.Formatting.DateTimeFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2933 <summary>Formats the specified object.</summary>
2934 <param name="obj">The object to format, never null</param>
2935 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2936 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2937 </member>
2938 <member name="M:Gallio.Framework.Formatting.DateTimeFormattingRule.GetPriority(System.Type)">
2939 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2940 <param name="type">The type of object, never null</param>
2941 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2942 </member>
2943 <member name="T:Gallio.Framework.Formatting.DBNullFormattingRule">
2944 <summary>
2945 <para> A formatting rule for <see cref="T:System.DBNull" />. </para>
2946 <para> Formats values as "dbnull". </para>This class cannot be inherited.</summary>
2947 </member>
2948 <member name="M:Gallio.Framework.Formatting.DBNullFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2949 <summary>Formats the specified object.</summary>
2950 <param name="obj">The object to format, never null</param>
2951 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2952 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2953 </member>
2954 <member name="M:Gallio.Framework.Formatting.DBNullFormattingRule.GetPriority(System.Type)">
2955 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2956 <param name="type">The type of object, never null</param>
2957 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2958 </member>
2959 <member name="T:Gallio.Framework.Formatting.DecimalFormattingRule">
2960 <summary>
2961 <para> A formatting rule for <see cref="T:System.Decimal" />. </para>
2962 <para> Formats values like: "5.6m". </para>This class cannot be inherited.</summary>
2963 </member>
2964 <member name="M:Gallio.Framework.Formatting.DecimalFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2965 <summary>Formats the specified object.</summary>
2966 <param name="obj">The object to format, never null</param>
2967 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2968 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2969 </member>
2970 <member name="M:Gallio.Framework.Formatting.DecimalFormattingRule.GetPriority(System.Type)">
2971 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2972 <param name="type">The type of object, never null</param>
2973 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2974 </member>
2975 <member name="T:Gallio.Framework.Formatting.DictionaryEntryFormattingRule">
2976 <summary>
2977 <para> A formatting rule for <see cref="T:System.Collections.DictionaryEntry" />. </para>
2978 <para> Formats values as "\"key\": \"value\"". </para>This class cannot be inherited.</summary>
2979 </member>
2980 <member name="M:Gallio.Framework.Formatting.DictionaryEntryFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2981 <summary>Formats the specified object.</summary>
2982 <param name="obj">The object to format, never null</param>
2983 <param name="formatter">The formatter to use for recursive formatting, never null</param>
2984 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
2985 </member>
2986 <member name="M:Gallio.Framework.Formatting.DictionaryEntryFormattingRule.GetPriority(System.Type)">
2987 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
2988 <param name="type">The type of object, never null</param>
2989 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
2990 </member>
2991 <member name="T:Gallio.Framework.Formatting.DoubleFormattingRule">
2992 <summary>
2993 <para> A formatting rule for <see cref="T:System.Double" />. </para>
2994 <para> Formats values like: "5.6". </para>This class cannot be inherited.</summary>
2995 </member>
2996 <member name="M:Gallio.Framework.Formatting.DoubleFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
2997 <summary>Formats the specified object.</summary>
2998 <param name="obj">The object to format, never null</param>
2999 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3000 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3001 </member>
3002 <member name="M:Gallio.Framework.Formatting.DoubleFormattingRule.GetPriority(System.Type)">
3003 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3004 <param name="type">The type of object, never null</param>
3005 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3006 </member>
3007 <member name="T:Gallio.Framework.Formatting.EnumerableFormattingRule">
3008 <summary>
3009 <para> A formatting rule for <see cref="T:System.Collections.IEnumerable" />. </para>
3010 <para> Formats values as "[1, 2, 3]". </para>This class cannot be inherited.</summary>
3011 </member>
3012 <member name="M:Gallio.Framework.Formatting.EnumerableFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3013 <summary>Formats the specified object.</summary>
3014 <param name="obj">The object to format, never null</param>
3015 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3016 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3017 </member>
3018 <member name="M:Gallio.Framework.Formatting.EnumerableFormattingRule.GetPriority(System.Type)">
3019 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3020 <param name="type">The type of object, never null</param>
3021 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3022 </member>
3023 <member name="T:Gallio.Framework.Formatting.FormattingRulePriority">
3024 <summary>Typical <see cref="T:Gallio.Framework.Formatting.IFormattingRule" /> priority values to use as guidelines. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3025 </member>
3026 <member name="F:Gallio.Framework.Formatting.FormattingRulePriority.Best">
3027 <summary>The best possible formatting rule priority. A rule with this priority will override all other matching rules. This field is constant and read-only.</summary>
3028 </member>
3029 <member name="F:Gallio.Framework.Formatting.FormattingRulePriority.Better">
3030 <summary>A better than typical rule. This value should be used for cases where the typical rule is not quite precise enough. This field is constant and read-only.</summary>
3031 </member>
3032 <member name="F:Gallio.Framework.Formatting.FormattingRulePriority.Default">
3033 <summary>The default formatting rule priority. A rule with this priority will be overridden by all other matching rules. This field is constant and read-only.</summary>
3034 </member>
3035 <member name="F:Gallio.Framework.Formatting.FormattingRulePriority.Typical">
3036 <summary>Typical rule priority. This is a good starting point for rule priorities. This field is constant and read-only.</summary>
3037 </member>
3038 <member name="T:Gallio.Framework.Formatting.IntegerFormattingRule">
3039 <summary>
3040 <para> A formatting rule for <see cref="T:System.Int16" />, <see cref="T:System.Int32" />, <see cref="T:System.Int64" />, <see cref="T:System.UInt16" />, <see cref="T:System.UInt32" />, and <see cref="T:System.UInt64" />. </para>
3041 <para> Formats values like: "5", "123", "-12". </para>This class cannot be inherited.</summary>
3042 </member>
3043 <member name="M:Gallio.Framework.Formatting.IntegerFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3044 <summary>Formats the specified object.</summary>
3045 <param name="obj">The object to format, never null</param>
3046 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3047 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3048 </member>
3049 <member name="M:Gallio.Framework.Formatting.IntegerFormattingRule.GetPriority(System.Type)">
3050 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3051 <param name="type">The type of object, never null</param>
3052 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3053 </member>
3054 <member name="T:Gallio.Framework.Formatting.KeyValuePairFormattingRule">
3055 <summary>
3056 <para> A formatting rule for <see cref="T:System.Collections.Generic.KeyValuePair`2" />. </para>
3057 <para> Formats values as "\"key\": \"value\"". </para>This class cannot be inherited.</summary>
3058 </member>
3059 <member name="M:Gallio.Framework.Formatting.KeyValuePairFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3060 <summary>Formats the specified object.</summary>
3061 <param name="obj">The object to format, never null</param>
3062 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3063 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3064 </member>
3065 <member name="M:Gallio.Framework.Formatting.KeyValuePairFormattingRule.GetPriority(System.Type)">
3066 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3067 <param name="type">The type of object, never null</param>
3068 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3069 </member>
3070 <member name="T:Gallio.Framework.Formatting.RuleBasedFormatter">
3071 <summary>A rule-based formatter uses a set of <see cref="T:Gallio.Framework.Formatting.IFormattingRule" />s to format values appropriately.</summary>
3072 </member>
3073 <member name="M:Gallio.Framework.Formatting.RuleBasedFormatter.Format(System.Object)">
3074 <summary>Formats an object to a string for display.</summary>
3075 <param name="obj">The object to format, may be null</param>
3076 <returns>The formatted string, never null and never an empty string</returns>
3077 </member>
3078 <member name="T:Gallio.Framework.Formatting.SByteFormattingRule">
3079 <summary>
3080 <para> A formatting rule for <see cref="T:System.SByte" />. </para>
3081 <para> Formats values as two digit signed hex values like "0x55" and "-0x55". </para>This class cannot be inherited.</summary>
3082 </member>
3083 <member name="M:Gallio.Framework.Formatting.SByteFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3084 <summary>Formats the specified object.</summary>
3085 <param name="obj">The object to format, never null</param>
3086 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3087 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3088 </member>
3089 <member name="M:Gallio.Framework.Formatting.SByteFormattingRule.GetPriority(System.Type)">
3090 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3091 <param name="type">The type of object, never null</param>
3092 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3093 </member>
3094 <member name="T:Gallio.Framework.Formatting.SingleFormattingRule">
3095 <summary>
3096 <para> A formatting rule for <see cref="T:System.Single" />. </para>
3097 <para> Formats values like: "5.6f". </para>This class cannot be inherited.</summary>
3098 </member>
3099 <member name="M:Gallio.Framework.Formatting.SingleFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3100 <summary>Formats the specified object.</summary>
3101 <param name="obj">The object to format, never null</param>
3102 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3103 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3104 </member>
3105 <member name="M:Gallio.Framework.Formatting.SingleFormattingRule.GetPriority(System.Type)">
3106 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3107 <param name="type">The type of object, never null</param>
3108 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3109 </member>
3110 <member name="T:Gallio.Framework.Formatting.StringFormattingRule">
3111 <summary>
3112 <para> A formatting rule for <see cref="T:System.String" />. </para>
3113 <para> Formats values as literals like: ""abc\ndef"". </para>This class cannot be inherited.</summary>
3114 </member>
3115 <member name="M:Gallio.Framework.Formatting.StringFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3116 <summary>Formats the specified object.</summary>
3117 <param name="obj">The object to format, never null</param>
3118 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3119 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3120 </member>
3121 <member name="M:Gallio.Framework.Formatting.StringFormattingRule.GetPriority(System.Type)">
3122 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3123 <param name="type">The type of object, never null</param>
3124 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3125 </member>
3126 <member name="T:Gallio.Framework.Formatting.TypeFormattingRule">
3127 <summary>
3128 <para> A formatting rule for <see cref="T:System.Type" />. </para>
3129 <para> Formats values like: System.String, MyType+Nested, System.Int32[] </para>This class cannot be inherited.</summary>
3130 </member>
3131 <member name="M:Gallio.Framework.Formatting.TypeFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3132 <summary>Formats the specified object.</summary>
3133 <param name="obj">The object to format, never null</param>
3134 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3135 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3136 </member>
3137 <member name="M:Gallio.Framework.Formatting.TypeFormattingRule.GetPriority(System.Type)">
3138 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3139 <param name="type">The type of object, never null</param>
3140 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3141 </member>
3142 <member name="T:Gallio.Framework.Formatting.XPathNavigableFormattingRule">
3143 <summary>
3144 <para> A formatting rule for <see cref="T:System.Xml.XPath.IXPathNavigable" />. </para>
3145 <para> Formats values as "<root />". </para>This class cannot be inherited.</summary>
3146 </member>
3147 <member name="M:Gallio.Framework.Formatting.XPathNavigableFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3148 <summary>Formats the specified object.</summary>
3149 <param name="obj">The object to format, never null</param>
3150 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3151 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3152 </member>
3153 <member name="M:Gallio.Framework.Formatting.XPathNavigableFormattingRule.GetPriority(System.Type)">
3154 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3155 <param name="type">The type of object, never null</param>
3156 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3157 </member>
3158 <member name="T:Gallio.Framework.Formatting.IFormatter">
3159 <summary>Provides services for formatting objects for display.</summary>
3160 </member>
3161 <member name="M:Gallio.Framework.Formatting.IFormatter.Format(System.Object)">
3162 <summary>Formats an object to a string for display.</summary>
3163 <param name="obj">The object to format, may be null</param>
3164 <returns>The formatted string, never null and never an empty string</returns>
3165 </member>
3166 <member name="T:Gallio.Framework.Formatting.IFormattingRule">
3167 <summary>A formatting rule encapsulates an algorithm for formatting values of particular types to strings for presentation.</summary>
3168 </member>
3169 <member name="M:Gallio.Framework.Formatting.IFormattingRule.Format(System.Object,Gallio.Framework.Formatting.IFormatter)">
3170 <summary>Formats the specified object.</summary>
3171 <param name="obj">The object to format, never null</param>
3172 <param name="formatter">The formatter to use for recursive formatting, never null</param>
3173 <returns>The formatted string representation of the object or null if the object could not be formatted to produce a non-empty string</returns>
3174 </member>
3175 <member name="M:Gallio.Framework.Formatting.IFormattingRule.GetPriority(System.Type)">
3176 <summary>Gets the formatting rule's priority for object of the specified type. Rules with higher priority values take precedence over rules with lower priority values.</summary>
3177 <param name="type">The type of object, never null</param>
3178 <returns>The priority of this rule, or null if the rule does not support formatting the specified object type</returns>
3179 </member>
3180 <member name="T:Gallio.Framework.Pattern.AnnotationPatternAttribute">
3181 <summary>
3182 <para> Associates an annotation message with a code element. When the code element is processed as part of building some other test, the annotation message will be emitted. This may be used to signal error, warning, and informational messages associated with the code element in question. </para>
3183 <para> Many annotations are automatically generated by the framework. For example, improperly used attributes generally cause error annotations to be emitted. This attribute provides an easy way for test authors to leverage the annotation mechanism for other discretionary purposes where it is desirable to draw attention to a particular code element. </para>
3184 <para> Note that the annotation will only be emitted if it is encountered during the process of building a test. If for some reason the annotated code element is not processed, then the attribute will have no effect. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3185 </member>
3186 <member name="P:Gallio.Framework.Pattern.AnnotationPatternAttribute.Details">
3187 <summary>Gets or sets optional detail text of the annotation, or null if none.</summary>
3188 </member>
3189 <member name="P:Gallio.Framework.Pattern.AnnotationPatternAttribute.Message">
3190 <summary>Gets the annotation message.</summary>
3191 </member>
3192 <member name="P:Gallio.Framework.Pattern.AnnotationPatternAttribute.Type">
3193 <summary>Gets the annotation type.</summary>
3194 </member>
3195 <member name="M:Gallio.Framework.Pattern.AnnotationPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3196 <summary>
3197 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
3198 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
3199 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
3200 </summary>
3201 <param name="scope">The scope</param>
3202 <param name="codeElement">The code element to process</param>
3203 </member>
3204 <member name="T:Gallio.Framework.Pattern.BasePattern">
3205 <summary>Abstract base implementation of <see cref="T:Gallio.Framework.Pattern.IPattern" /> with do-nothing implementations. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3206 </member>
3207 <member name="P:Gallio.Framework.Pattern.BasePattern.IsPrimary">
3208 <summary>
3209 <para> Returns true if this is a primary pattern. </para>
3210 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
3211 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
3212 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
3213 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
3214 </summary>
3215 </member>
3216 <member name="M:Gallio.Framework.Pattern.BasePattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
3217 <summary>
3218 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
3219 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
3220 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
3221 </summary>
3222 <param name="containingScope">The containing scope</param>
3223 <param name="codeElement">The code element to process</param>
3224 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
3225 </member>
3226 <member name="M:Gallio.Framework.Pattern.BasePattern.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
3227 <summary>Returns true if the code element represents a test.</summary>
3228 <param name="evaluator">The evaluator</param>
3229 <param name="codeElement">The code element</param>
3230 <returns>True if the code element represents a test</returns>
3231 </member>
3232 <member name="M:Gallio.Framework.Pattern.BasePattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3233 <summary>
3234 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
3235 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
3236 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
3237 </summary>
3238 <param name="scope">The scope</param>
3239 <param name="codeElement">The code element to process</param>
3240 </member>
3241 <member name="T:Gallio.Framework.Pattern.BasePatternTestFrameworkExtension">
3242 <summary>A base implementation of <see cref="T:Gallio.Framework.Pattern.IPatternTestFrameworkExtension" /> that does nothing.</summary>
3243 </member>
3244 <member name="M:Gallio.Framework.Pattern.BasePatternTestFrameworkExtension.GetReferencedTools(Gallio.Reflection.IAssemblyInfo)">
3245 <summary>
3246 <para> Gets information about the tools that are used by the specified test assembly. The tool information will be included in the report as part of the framework node that contains the assembly. </para>
3247 <para> This method is used by authors of tools that are derived from the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" /> to provide brand and version information about the tool so that it will be visible to end users. </para>
3248 <para> If no tools are referenced by the assembly, it will be ignored by the <see cref="T:Gallio.Framework.Pattern.PatternTestExplorer" />. </para>
3249 </summary>
3250 <param name="assembly">The test assembly</param>
3251 <returns>The tool information</returns>
3252 </member>
3253 <member name="T:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern">
3254 <summary>The pattern used to bootstrap test enumeration for assemblies.</summary>
3255 </member>
3256 <member name="F:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern.Instance">
3257 <summary>Gets the singleton instance of the pattern. This field is read-only.</summary>
3258 </member>
3259 <member name="P:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern.DefaultAssemblyPattern">
3260 <summary>Gets the default pattern to apply to assemblies that do not have a primary pattern, or null if none.</summary>
3261 </member>
3262 <member name="P:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern.IsPrimary">
3263 <summary>
3264 <para> Returns true if this is a primary pattern. </para>
3265 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
3266 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
3267 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
3268 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
3269 </summary>
3270 </member>
3271 <member name="M:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
3272 <summary>
3273 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
3274 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
3275 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
3276 </summary>
3277 <param name="containingScope">The containing scope</param>
3278 <param name="codeElement">The code element to process</param>
3279 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
3280 </member>
3281 <member name="M:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
3282 <summary>Returns true if the code element represents a test.</summary>
3283 <param name="evaluator">The evaluator</param>
3284 <param name="codeElement">The code element</param>
3285 <returns>True if the code element represents a test</returns>
3286 </member>
3287 <member name="T:Gallio.Framework.Pattern.ContributionMethodPatternAttribute">
3288 <summary>A contribution method pattern attribute applies decorations to a containing scope such as by introducing a new setup or teardown action to a test. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3289 </member>
3290 <member name="P:Gallio.Framework.Pattern.ContributionMethodPatternAttribute.IsPrimary">
3291 <summary>
3292 <para> Returns true if this is a primary pattern. </para>
3293 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
3294 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
3295 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
3296 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
3297 </summary>
3298 </member>
3299 <member name="M:Gallio.Framework.Pattern.ContributionMethodPatternAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
3300 <summary>
3301 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
3302 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
3303 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
3304 </summary>
3305 <param name="containingScope">The containing scope</param>
3306 <param name="codeElement">The code element to process</param>
3307 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
3308 </member>
3309 <member name="M:Gallio.Framework.Pattern.ContributionMethodPatternAttribute.DecorateContainingScope(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
3310 <summary>Applies decorations to the containing <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
3311 <param name="containingScope">The containing scope</param>
3312 <param name="method">The method to process</param>
3313 </member>
3314 <member name="M:Gallio.Framework.Pattern.ContributionMethodPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
3315 <summary>Verifies that the attribute is being used correctly.</summary>
3316 <param name="containingScope">The containing scope</param>
3317 <param name="method">The method</param>
3318 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
3319 </member>
3320 <member name="T:Gallio.Framework.Pattern.DataPatternAttribute">
3321 <summary>
3322 <para> The data pattern attribute applies a data source to a fixture or test parameter declaratively. It can be attached to a fixture class, a public property or field of a fixture, a test method or a test method parameter. When attached to a property or field of a fixture, implies that the property or field is a fixture parameter (so the <see cref="T:Gallio.Framework.Pattern.TestParameterPatternAttribute" /> may be omitted). </para>
3323 <para> The order in which items contributed by a data pattern attribute are use can be controlled via the <see cref="P:Gallio.Framework.Pattern.DecoratorPatternAttribute.Order" /> property. The contents of data sets with lower order indices are processed before those with higher indices. </para>
3324 <example>
3325 <code>
3326 // Ensures that the rows are processed in exactly the order they appear.
3327 [Test]
3328 [Row(1, "a"), Order=1)]
3329 [Row(2, "b"), Order=2)]
3330 [Row(3, "c"), Order=3)]
3331 public void Test(int x, string y) { ... }
3332 </code>
3333 </example>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3334 </member>
3335 <member name="P:Gallio.Framework.Pattern.DataPatternAttribute.SourceName">
3336 <summary>
3337 <para> Gets or sets the name of the data source to create so that the values produced by this attribute can be referred to elsewhere. Multiple data attributes may use the same data source name to produce a compound data source consisting of all of their values combined. </para>
3338 <para> If no name is given to the data source (or it is an empty string), the data source is considered anonymous. An anonymous data source is only visible within the scope of the code element with which the data source declaration is associated. By default, test parameters are bound to the anonymous data source of their enclosing scope. </para>
3339 </summary>
3340 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
3341 </member>
3342 <member name="M:Gallio.Framework.Pattern.DataPatternAttribute.PopulateDataSource(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Framework.Data.DataSource,Gallio.Reflection.ICodeElementInfo)">
3343 <summary>Populates the data source with the contributions of this attribute.</summary>
3344 <param name="scope">The scope</param>
3345 <param name="dataSource">The data source</param>
3346 <param name="codeElement">The code element</param>
3347 </member>
3348 <member name="M:Gallio.Framework.Pattern.DataPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3349 <summary>
3350 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
3351 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
3352 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
3353 </summary>
3354 <param name="scope">The scope</param>
3355 <param name="codeElement">The code element to process</param>
3356 </member>
3357 <member name="M:Gallio.Framework.Pattern.DataPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3358 <summary>Verifies that the attribute is being used correctly.</summary>
3359 <param name="scope">The scope</param>
3360 <param name="codeElement">The code element</param>
3361 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
3362 </member>
3363 <member name="T:Gallio.Framework.Pattern.DeclarativePatternResolver">
3364 <summary>A declarative pattern resolver based on <see cref="T:Gallio.Framework.Pattern.PatternAttribute" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3365 </member>
3366 <member name="F:Gallio.Framework.Pattern.DeclarativePatternResolver.Instance">
3367 <summary>Gets the singleton instance of the declarative pattern resolver. This field is read-only.</summary>
3368 </member>
3369 <member name="M:Gallio.Framework.Pattern.DeclarativePatternResolver.GetPatterns(Gallio.Reflection.ICodeElementInfo)">
3370 <summary>Gets the patterns associated with the specified code element.</summary>
3371 <param name="codeElement">The code element</param>
3372 <returns>The enumeration of patterns</returns>
3373 </member>
3374 <member name="T:Gallio.Framework.Pattern.DecoratorPatternAttribute">
3375 <summary>
3376 <para> A decorator attribute applies contributions to a test model object such as an <see cref="T:Gallio.Framework.Pattern.PatternTest" /> or <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" /> generated by some other pattern attribute. </para>
3377 <para> Occasionally the order in which decorators are applied is significant so this type provides a <see cref="P:Gallio.Framework.Pattern.DecoratorPatternAttribute.Order" /> property to specify an explicit ordering when required. All decorators that apply to a given test component declaration are applied in increasing <see cref="P:Gallio.Framework.Pattern.DecoratorPatternAttribute.Order" nolink="true" />. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3378 </member>
3379 <member name="P:Gallio.Framework.Pattern.DecoratorPatternAttribute.Order">
3380 <summary>Gets or sets the order in which the decorator should be applied. Decorators with lower order indices values are applied before decorators with higher ones. In the case of a tie, an arbitrary choice is made among decorators with the same order index to determine the order in which they will be processed.</summary>
3381 <value>The default order index is 0.</value>
3382 </member>
3383 <member name="T:Gallio.Framework.Pattern.MetadataPatternAttribute">
3384 <summary>
3385 <para> Applies declarative metadata to a test component. </para>
3386 <para> A metadata attribute is similar to a decorator but more restrictive. Metadata does not modify the structure of a test directly. Instead it introduces additional entries in the <see cref="T:Gallio.Model.MetadataMap" /> collection that are useful for classification, filtering, reporting, documentation or other purposes. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3387 </member>
3388 <member name="M:Gallio.Framework.Pattern.MetadataPatternAttribute.Apply(Gallio.Model.MetadataMap)">
3389 <summary>Applies metadata contributions the metadata map of a test component.</summary>
3390 <param name="metadata">The metadata map</param>
3391 </member>
3392 <member name="M:Gallio.Framework.Pattern.MetadataPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3393 <summary>
3394 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
3395 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
3396 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
3397 </summary>
3398 <param name="scope">The scope</param>
3399 <param name="codeElement">The code element to process</param>
3400 </member>
3401 <member name="M:Gallio.Framework.Pattern.MetadataPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3402 <summary>Verifies that the attribute is being used correctly.</summary>
3403 <param name="scope">The scope</param>
3404 <param name="codeElement">The code element</param>
3405 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
3406 </member>
3407 <member name="T:Gallio.Framework.Pattern.PatternAttribute">
3408 <summary>
3409 <para> The <see cref="T:Gallio.Framework.Pattern.PatternAttribute" /> class is the base class for all pattern test framework attributes. It associates a code element with a <see cref="T:Gallio.Framework.Pattern.PatternTest" /> for building <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" /> and <see cref="T:Gallio.Framework.Pattern.PatternAttribute" nolink="true" /> objects using reflection. </para>
3410 <para> Subclasses of <see cref="T:Gallio.Framework.Pattern.IPattern" /> define simpler interfaces for implementing the semantics of common types of attributes such as test factories, decorators, and data providers. Refer to the documentation of each subclass for details on its use. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
3411 </member>
3412 <member name="M:Gallio.Framework.Pattern.PatternAttribute.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
3413 <summary>Returns true if the code element represents a test.</summary>
3414 <param name="evaluator">The evaluator</param>
3415 <param name="codeElement">The code element</param>
3416 <returns>True if the code element represents a test</returns>
3417 </member>
3418 <member name="M:Gallio.Framework.Pattern.PatternAttribute.ThrowUsageErrorException(System.String)">
3419 <summary>Throws a <see cref="T:Gallio.Framework.Pattern.PatternUsageErrorException" /> with the specified message including a short heading that identifies the attribute type.</summary>
3420 <param name="message">The message, not null</param>
3421 </member>
3422 <member name="M:Gallio.Framework.Pattern.PatternAttribute.ThrowUsageErrorException(System.String,System.Exception)">
3423 <summary>Throws a <see cref="T:Gallio.Framework.Pattern.PatternUsageErrorException" /> with the specified message including a short heading that identifies the attribute type.</summary>
3424 <param name="message">The message, not null</param>
3425 <param name="ex">The associated exception, or null if none</param>
3426 </member>
3427 <member name="T:Gallio.Framework.Pattern.PatternAttributeTargets">
3428 <summary>Standard <see cref="T:System.AttributeTargets" /> flag combinations for <see cref="T:Gallio.Framework.Pattern.PatternAttribute" /> declarations. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
3429 </member>
3430 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.ContributionMethod">
3431 <summary>Valid attribute targets for contribution methods. This field is constant and read-only.</summary>
3432 </member>
3433 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.DataContext">
3434 <summary>Valid attribute targets for data contexts. This field is constant and read-only.</summary>
3435 </member>
3436 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.Test">
3437 <summary>Valid attribute targets for tests. This field is constant and read-only.</summary>
3438 </member>
3439 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.TestAssembly">
3440 <summary>Valid attribute targets for test assemblies. This field is constant and read-only.</summary>
3441 </member>
3442 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.TestComponent">
3443 <summary>Valid attribute targets for tests or test parameters. This field is constant and read-only.</summary>
3444 </member>
3445 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.TestConstructor">
3446 <summary>Valid attribute targets for test constructors. This field is constant and read-only.</summary>
3447 </member>
3448 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.TestMethod">
3449 <summary>Valid attribute targets for test methods. This field is constant and read-only.</summary>
3450 </member>
3451 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.TestParameter">
3452 <summary>Valid attribute targets for test parameters. This field is constant and read-only.</summary>
3453 </member>
3454 <member name="F:Gallio.Framework.Pattern.PatternAttributeTargets.TestType">
3455 <summary>Valid attribute targets for test types. This field is constant and read-only.</summary>
3456 </member>
3457 <member name="T:Gallio.Framework.Pattern.PatternEvaluationScope">
3458 <summary>A pattern evaluation scope defines the scope within which a pattern is being evaluated. It provides references to declared entities such as tests and test parameters that are being manipulated and extended by an <see cref="T:Gallio.Framework.Pattern.IPattern" />.</summary>
3459 </member>
3460 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.CanAddChildTest">
3461 <summary>Returns true if a child test can be added to the test within scope.</summary>
3462 </member>
3463 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.CanAddTestParameter">
3464 <summary>Returns true if a test parameter can be added to the test within scope.</summary>
3465 </member>
3466 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.CodeElement">
3467 <summary>Gets the code element associated with the scope, or null if none.</summary>
3468 </member>
3469 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.Evaluator">
3470 <summary>Gets the pattern evaluator.</summary>
3471 </member>
3472 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.IsTestDeclaration">
3473 <summary>
3474 <para> Returns true if the scope represents a test declaration. </para>
3475 <para> An arbitrary scope nested within a test declaration scope is not itself considered a test declaration scope unless it also represents a test declaration. </para>
3476 </summary>
3477 </member>
3478 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.IsTestParameterDeclaration">
3479 <summary>
3480 <para> Returns true if the scope represents a test parameter declaration. </para>
3481 <para> An arbitrary scope nested within a test parameter declaration scope is not itself considered a test parameter declaration scope unless it also represents a test parameter declaration. </para>
3482 </summary>
3483 </member>
3484 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.Parent">
3485 <summary>Gets the parent scope, or null if none.</summary>
3486 </member>
3487 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain">
3488 <summary>
3489 <para> Gets a chain of actions that are used to lazily populate child tests. The chain should do nothing if the children have already been populated. </para>
3490 <para> The action's parameter specified the code element whose patterns will declare the children to be populated. If its value is null, then all children should be populated. </para>
3491 </summary>
3492 </member>
3493 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.Test">
3494 <summary>Gets the innermost test declared by this scope or by one of its ancestors, or null if there is none.</summary>
3495 </member>
3496 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.TestComponent">
3497 <summary>
3498 <para> Gets the innermost test component declared by this scope or by one of its ancestors, or null if there is none. </para>
3499 <para> If the scope has a <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.TestParameter" /> then it is returned, otherwise the <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.Test" /> is returned if there is one. </para>
3500 </summary>
3501 </member>
3502 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.TestDataContext">
3503 <summary>Gets the test data context for this scope.</summary>
3504 </member>
3505 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.TestModel">
3506 <summary>Gets the test model being built.</summary>
3507 </member>
3508 <member name="P:Gallio.Framework.Pattern.PatternEvaluationScope.TestParameter">
3509 <summary>Gets the innermost test parameter declared by this scope of by one of its ancestors, or null if there is none.</summary>
3510 </member>
3511 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.AddChildTest(Gallio.Framework.Pattern.PatternTest)">
3512 <summary>Adds a test as a child of the scoped test.</summary>
3513 <param name="test">The test to add</param>
3514 <returns>The child test's scope</returns>
3515 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="test" /> is null</exception>
3516 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.CanAddChildTest" /> is false</exception>
3517 </member>
3518 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.AddDecorator(System.Int32,System.Action{Gallio.Framework.Pattern.PatternEvaluationScope})">
3519 <summary>Registers a deferred decorator action to be applied to the scope later, pending the addition of all decorators so that they may be applied in order.</summary>
3520 <param name="order">The order in which the decorator should be evaluated, decorators with lower order indices are evaluated before those with higher ones</param>
3521 <param name="decorator">The decorator action</param>
3522 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="decorator" /> is null</exception>
3523 </member>
3524 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.AddTestParameter(Gallio.Framework.Pattern.PatternTestParameter)">
3525 <summary>Adds a test parameter to the scoped test.</summary>
3526 <param name="testParameter">The test parameter to add</param>
3527 <returns>The test parameter's scope</returns>
3528 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testParameter" /> is null</exception>
3529 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.CanAddTestParameter" /> is false</exception>
3530 </member>
3531 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.ApplyDecorators">
3532 <summary>Applies all pending decorators and clears the list of pending decorators.</summary>
3533 </member>
3534 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.Consume(Gallio.Reflection.ICodeElementInfo,System.Boolean,Gallio.Framework.Pattern.IPattern)">
3535 <summary>Consumes the specified code element using this scope as the containing scope.</summary>
3536 <param name="codeElement">The code element to consume</param>
3537 <param name="skipChildren">If true, instructs the primary pattern to defer populating child tests</param>
3538 <param name="defaultPrimaryPattern">The default primary pattern to use, if none can be resolved for the code element. May be null if none.</param>
3539 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3540 </member>
3541 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.EnterTestDataContext(Gallio.Framework.Pattern.PatternTestDataContext)">
3542 <summary>Creates a child scope to represent a new test data context.</summary>
3543 <param name="testDataContext">The test data context</param>
3544 <returns>The child scope</returns>
3545 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testDataContext" /> is null</exception>
3546 </member>
3547 <member name="M:Gallio.Framework.Pattern.PatternEvaluationScope.Process(Gallio.Reflection.ICodeElementInfo)">
3548 <summary>Processes the specified code element using this scope as the current scope.</summary>
3549 <param name="codeElement">The code element to process</param>
3550 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3551 </member>
3552 <member name="T:Gallio.Framework.Pattern.PatternEvaluator">
3553 <summary>A pattern evaluator maintains state that is needed to interpret patterns. It is used by the <see cref="T:Gallio.Framework.Pattern.PatternTestExplorer" /> to populate a <see cref="P:Gallio.Framework.Pattern.PatternEvaluator.TestModel" /> during test enumeration.</summary>
3554 </member>
3555 <member name="P:Gallio.Framework.Pattern.PatternEvaluator.ReflectionPolicy">
3556 <summary>Gets the reflection policy for the model.</summary>
3557 </member>
3558 <member name="P:Gallio.Framework.Pattern.PatternEvaluator.TestModel">
3559 <summary>Gets the test model being built.</summary>
3560 </member>
3561 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.AddFinishModelAction(Gallio.Reflection.ICodeElementInfo,Gallio.Action)">
3562 <summary>Registers a deferred action to be performed when <see cref="M:Gallio.Framework.Pattern.PatternEvaluator.FinishModel" /> is called.</summary>
3563 <param name="codeElement">The associated code element, use to report errors if the action throws an exception</param>
3564 <param name="action">The action to perform</param>
3565 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> or <paramref name="action" /> is null</exception>
3566 </member>
3567 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.AddTest(Gallio.Framework.Pattern.PatternTest)">
3568 <summary>Adds a test as a child of the root test.</summary>
3569 <param name="test">The test to add</param>
3570 <returns>The test's scope</returns>
3571 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="test" /> is null</exception>
3572 </member>
3573 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean,Gallio.Framework.Pattern.IPattern)">
3574 <summary>Consumes the specified code element.</summary>
3575 <param name="containingScope">The containing scope</param>
3576 <param name="codeElement">The code element to consume</param>
3577 <param name="skipChildren">If true, instructs the primary pattern to defer populating child tests</param>
3578 <param name="defaultPrimaryPattern">The default primary pattern to use, if none can be resolved for the code element. May be null if none.</param>
3579 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="containingScope" /> or <paramref name="codeElement" /> is null</exception>
3580 </member>
3581 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.FinishModel">
3582 <summary>Applies all pending decorators and clears the list of pending decorators.</summary>
3583 </member>
3584 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.GetPatterns(Gallio.Reflection.ICodeElementInfo)">
3585 <summary>Gets all patterns associated with a code element.</summary>
3586 <param name="codeElement">The code element</param>
3587 <returns>The enumeration of patterns, or null if none</returns>
3588 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3589 </member>
3590 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.GetPrimaryPattern(Gallio.Reflection.ICodeElementInfo)">
3591 <summary>Gets the primary pattern associated with a code element, or null if none.</summary>
3592 <param name="codeElement">The code element</param>
3593 <returns>The primary pattern, or null if none</returns>
3594 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3595 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if there are multiple primary patterns associated with the code element</exception>
3596 </member>
3597 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.GetScopes(Gallio.Reflection.ICodeElementInfo)">
3598 <summary>Finds scopes that are associated with the specified <see cref="T:Gallio.Reflection.ICodeElementInfo" /> and returns an enumeration of their <see cref="T:Gallio.Framework.Pattern.PatternEvaluationScope" /> objects.</summary>
3599 <param name="codeElement">The code element</param>
3600 <returns>The enumeration of scopes</returns>
3601 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3602 </member>
3603 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.HasPatterns(Gallio.Reflection.ICodeElementInfo)">
3604 <summary>Returns true if a code element has one or more associated patterns.</summary>
3605 <param name="codeElement">The code element</param>
3606 <returns>True if the code element has an associated pattern</returns>
3607 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3608 </member>
3609 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.IsTest(Gallio.Reflection.ICodeElementInfo,Gallio.Framework.Pattern.IPattern)">
3610 <summary>Returns true if the code element represents a test.</summary>
3611 <param name="codeElement">The code element</param>
3612 <param name="defaultPrimaryPattern">The default primary pattern to use, if none can be resolved for the code element. May be null if none.</param>
3613 <returns>True if the code element represents a test</returns>
3614 </member>
3615 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
3616 <summary>Processes the specified code element.</summary>
3617 <param name="scope">The scope</param>
3618 <param name="codeElement">The code element to process</param>
3619 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
3620 </member>
3621 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.PublishExceptionAsAnnotation(Gallio.Reflection.ICodeElementInfo,System.Exception)">
3622 <summary>Publishes an exception as an annotation about a particular code element.</summary>
3623 <param name="codeElement">The code element, or null if none</param>
3624 <param name="ex">The exception to publish</param>
3625 </member>
3626 <member name="M:Gallio.Framework.Pattern.PatternEvaluator.RegisterScope(Gallio.Framework.Pattern.PatternEvaluationScope)">
3627 <summary>Registers the scope so that it can be resolved later by <see cref="M:Gallio.Framework.Pattern.PatternEvaluator.GetScopes(Gallio.Reflection.ICodeElementInfo)" />.</summary>
3628 <param name="scope">The scope</param>
3629 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="scope" /> is null</exception>
3630 </member>
3631 <member name="T:Gallio.Framework.Pattern.PatternTest">
3632 <summary>A test case that has been defined by the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" />.</summary>
3633 </member>
3634 <member name="P:Gallio.Framework.Pattern.PatternTest.ApartmentState">
3635 <summary>
3636 <para> Gets or sets the apartment state to be used to run the test. </para>
3637 <para> If the apartment state is <see cref="F:System.Threading.ApartmentState.Unknown" /> the test will inherit the apartment state of its parent. Otherwise it will run in a thread with the specified apartment state. </para>
3638 <para> The test runner guarantees that the root test runs with the <see cref="F:System.Threading.ApartmentState.STA" /> apartment state. Consequently the apartment state only needs to be overridden to run a test in some mode that may differ from that which it would ordinarily inherit. </para>
3639 </summary>
3640 <value>The default value of this property is <see cref="F:System.Threading.ApartmentState.Unknown" />.</value>
3641 </member>
3642 <member name="P:Gallio.Framework.Pattern.PatternTest.DataContext">
3643 <summary>Gets the data context of the component.</summary>
3644 </member>
3645 <member name="P:Gallio.Framework.Pattern.PatternTest.TestActions">
3646 <summary>Gets the set of actions that describe the behavior of the test.</summary>
3647 </member>
3648 <member name="P:Gallio.Framework.Pattern.PatternTest.TestControllerFactory">
3649 <summary>Gets a <see cref="T:Gallio.Model.Execution.ITestController" /><see cref="T:Gallio.Func`1" /> to run this tes and all of its children. Returns null if this test is merely a container for other tests or if it otherwise does not require or provide its own controller.</summary>
3650 <value>The test controller factory, or null if this test cannot produce a controller (and consequently is not a master test according to the definition above)</value>
3651 </member>
3652 <member name="P:Gallio.Framework.Pattern.PatternTest.TestInstanceActions">
3653 <summary>Gets the set of actions that describe the behavior of the test's instances.</summary>
3654 </member>
3655 <member name="P:Gallio.Framework.Pattern.PatternTest.Timeout">
3656 <summary>Gets or sets the maximum amount of time the whole test including its setup, teardown and body should be permitted to run. If the test runs any longer than this, it will be aborted by the framework. The timeout may be null to indicate the absence of a timeout.</summary>
3657 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="value" /> represents a negative time span</exception>
3658 </member>
3659 <member name="M:Gallio.Framework.Pattern.PatternTest.SetName(System.String)">
3660 <summary>Sets the name of the component.</summary>
3661 </member>
3662 <member name="T:Gallio.Framework.Pattern.PatternTestActions">
3663 <summary>
3664 <para> An implementation of <see cref="T:Gallio.Framework.Pattern.IPatternTestHandler" /> based on actions that can be sequenced and composed as chains. </para>
3665 <para> This class is the backbone of the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" /> extensibility model. Because new behaviors can be defined and added to action chains at will by any component that participates in the test construction process (typically an <see cref="T:Gallio.Framework.Pattern.IPattern" />), the framework itself does not need to hardcode the mechanism by which the behaviors are selected. </para>
3666 </summary>
3667 </member>
3668 <member name="P:Gallio.Framework.Pattern.PatternTestActions.AfterTestChain">
3669 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.AfterTest(Gallio.Framework.Pattern.PatternTestState)" /> actions.</summary>
3670 </member>
3671 <member name="P:Gallio.Framework.Pattern.PatternTestActions.BeforeTestChain">
3672 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.BeforeTest(Gallio.Framework.Pattern.PatternTestState)" /> actions.</summary>
3673 </member>
3674 <member name="P:Gallio.Framework.Pattern.PatternTestActions.DecorateTestInstanceChain">
3675 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.DecorateTestInstance(Gallio.Framework.Pattern.PatternTestState,Gallio.Framework.Pattern.PatternTestInstanceActions)" /> actions.</summary>
3676 </member>
3677 <member name="P:Gallio.Framework.Pattern.PatternTestActions.DisposeTestChain">
3678 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.DisposeTest(Gallio.Framework.Pattern.PatternTestState)" /> actions.</summary>
3679 </member>
3680 <member name="P:Gallio.Framework.Pattern.PatternTestActions.InitializeTestChain">
3681 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.InitializeTest(Gallio.Framework.Pattern.PatternTestState)" /> actions.</summary>
3682 </member>
3683 <member name="P:Gallio.Framework.Pattern.PatternTestActions.TestInstanceActions">
3684 <summary>Gets the test instance actions that describes the lifecycle of a test instance.</summary>
3685 </member>
3686 <member name="P:Gallio.Framework.Pattern.PatternTestActions.TestInstanceHandler">
3687 <summary>Gets the test instance handler that describes the lifecycle of a test instance.</summary>
3688 </member>
3689 <member name="M:Gallio.Framework.Pattern.PatternTestActions.AfterTest(Gallio.Framework.Pattern.PatternTestState)">
3690 <summary>
3691 <para> Cleans up a completed test state after its use. </para>
3692 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of its containing test step because the test has terminated. </para>
3693 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item></list></para>
3694 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3695 </summary>
3696 <param name="testState">The test state, never null</param>
3697 </member>
3698 <member name="M:Gallio.Framework.Pattern.PatternTestActions.BeforeTest(Gallio.Framework.Pattern.PatternTestState)">
3699 <summary>
3700 <para> Prepares a newly created test state before its use. </para>
3701 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of its containing test step because the test has not yet been started. </para>
3702 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding or changing slot binding accessors via <see cref="P:Gallio.Framework.Pattern.PatternTestState.SlotBindingAccessors" />.</item><item>Configuring the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> in anticipation of test execution.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item><item>Skipping the test by throwing an appropriate <see cref="T:Gallio.Framework.SilentTestException" />.</item></list></para>
3703 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item></list></para>
3704 </summary>
3705 <param name="testState">The test state, never null</param>
3706 </member>
3707 <member name="M:Gallio.Framework.Pattern.PatternTestActions.CreateDecorator(Gallio.Framework.Pattern.IPatternTestHandler)">
3708 <summary>
3709 <para> Creates a new <see cref="T:Gallio.Framework.Pattern.PatternTestActions" /> object initially configured to forward calls to the specified handler without change. The result is that any behaviors added to the action chains of the returned <see cref="T:Gallio.Framework.Pattern.PatternTestActions" nolink="true" /> will be invoked before, after or around those of the specified handler. </para>
3710 <para> A pattern test decorator applies additional actions around those of another <see cref="T:Gallio.Framework.Pattern.IPatternTestHandler" /> for a <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
3711 </summary>
3712 <param name="handler">The handler to decorate</param>
3713 <returns>The decorated handler actions</returns>
3714 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="handler" /> is null</exception>
3715 </member>
3716 <member name="M:Gallio.Framework.Pattern.PatternTestActions.DecorateTestInstance(Gallio.Framework.Pattern.PatternTestState,Gallio.Framework.Pattern.PatternTestInstanceActions)">
3717 <summary>
3718 <para> Decorates the <see cref="T:Gallio.Framework.Pattern.IPatternTestHandler" /> of a test instance before its <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions have a chance to run. </para>
3719 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of its containing test instance because the test has not yet been started. </para>
3720 <para> This method may apply any number of decorations to the test instance's handler by adding actions to the supplied <paramref name="decoratedTestInstanceActions" /> object. The test instance's original handler is unmodified by this operation and the decorated actions are discarded once the child test is finished. </para>
3721 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding additional actions for the test instance to the <paramref name="decoratedTestInstanceActions" />.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3722 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item></list></para>
3723 </summary>
3724 <param name="testState">The test state, never null</param>
3725 <param name="decoratedTestInstanceActions">The test instance's actions to decorate, never null</param>
3726 </member>
3727 <member name="M:Gallio.Framework.Pattern.PatternTestActions.DisposeTest(Gallio.Framework.Pattern.PatternTestState)">
3728 <summary>
3729 <para> Cleans up a test following the execution of its instances. </para>
3730 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" />. </para>
3731 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Deconfiguring the test environment following the enumeration and execution of all test instances.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item></list></para>
3732 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3733 </summary>
3734 <param name="testState">The test state, never null</param>
3735 </member>
3736 <member name="M:Gallio.Framework.Pattern.PatternTestActions.InitializeTest(Gallio.Framework.Pattern.PatternTestState)">
3737 <summary>
3738 <para> Initializes a test prior to the execution of its instances. </para>
3739 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" />. </para>
3740 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Aborting the test run if any preconditions have not been satisfied or if the test is to be skipped.</item><item>Configuring the test environment in advance of the enumeration and execution of all test instances.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item></list></para>
3741 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3742 </summary>
3743 <param name="testState">The test state, never null</param>
3744 </member>
3745 <member name="T:Gallio.Framework.Pattern.PatternTestController">
3746 <summary>Controls the execution of <see cref="T:Gallio.Framework.Pattern.PatternTest" /> instances.</summary>
3747 </member>
3748 <member name="M:Gallio.Framework.Pattern.PatternTestController.RunTestsImpl(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
3749 <summary>Implementation of <see cref="M:Gallio.Model.Execution.BaseTestController.RunTests(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> called after argument validation has taken place.</summary>
3750 <param name="rootTestCommand">The root test command, not null</param>
3751 <param name="parentTestStep">The parent test step, or null if none</param>
3752 <param name="options">The test execution options, not null</param>
3753 <param name="progressMonitor">The progress monitor, not null</param>
3754 <returns>The combined outcome of the root test command</returns>
3755 </member>
3756 <member name="T:Gallio.Framework.Pattern.PatternTestDataContext">
3757 <summary>
3758 <para> A pattern test data context introduces a scope for data source declarations. </para>
3759 <para> Each <see cref="T:Gallio.Framework.Pattern.PatternTest" /> or <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" /> has a <see cref="T:Gallio.Framework.Pattern.PatternTestDataContext" />. However, data contexts may also be nested. </para>
3760 <para> For example, the constructor of a test class typically augments its containing test with additional test parameters that represent its own constructor parameters. If data binding attributes are applied to the constructor, they should operate within the scope of that constructor only. To achieve this effect, the constructor declares a new <see cref="T:Gallio.Framework.Pattern.PatternTestDataContext" nolink="true" /> within which its test parameters will be created. </para>
3761 </summary>
3762 </member>
3763 <member name="P:Gallio.Framework.Pattern.PatternTestDataContext.ImplicitDataBindingIndexOffset">
3764 <summary>
3765 <para> Gets or sets the offset to add to a test parameter's implicit data binding index to map it into the containing data context. </para>
3766 <para> This property is used to determine the data binding index of a test parameter that has not been explicitly bound. The offsets are summed cumulatively to produce an implicit data binding index while traversing the chain of containing data contexts while locating the first anonymous data source. </para>
3767 <para> For example, suppose <c>Y</c> is the second parameter of a test method. If <c>Y</c> does not have an explicit data binding, we will apply implicit data binding rules as follows. <list type="bullet"><item>If <c>Y</c>'s data context contains an anonymous data source, then the implicit data binding index will be 0.</item><item>Otherwise, if <c>Y</c>'s containing data context contains an anonymous data source, then the implicit data binding index will equal the offset specified in <c>Y</c>'s data context: 1 (since it is the second parameter).</item><item>Otherwise, we continue searching containing data contexts and summing their offsets until we find an anonymous data source. If none is found, then data binding will fail.</item></list></para>
3768 </summary>
3769 </member>
3770 <member name="P:Gallio.Framework.Pattern.PatternTestDataContext.Parent">
3771 <summary>Gets the containing data context, or null if none.</summary>
3772 </member>
3773 <member name="M:Gallio.Framework.Pattern.PatternTestDataContext.CreateChild">
3774 <summary>Creates a child data context.</summary>
3775 <returns>A handle for the child context</returns>
3776 </member>
3777 <member name="M:Gallio.Framework.Pattern.PatternTestDataContext.DefineDataSource(System.String)">
3778 <summary>Defines a new data source within this data context if one does not exist. Otherwise returns the existing one.</summary>
3779 <param name="name">The data source name</param>
3780 <returns>The defined data source</returns>
3781 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> is null</exception>
3782 </member>
3783 <member name="M:Gallio.Framework.Pattern.PatternTestDataContext.ResolveDataSource(System.String)">
3784 <summary>Resolves the data source with the specified name.</summary>
3785 <param name="name">The data source name</param>
3786 <returns>The resolved data source, or null if none found</returns>
3787 </member>
3788 <member name="M:Gallio.Framework.Pattern.PatternTestDataContext.ResolveImplicitDataBindingIndex">
3789 <summary>Returns the index that should be used to implicitly bind to the nearest anonymous data source that can be found. The index is computed as the sum of the <see cref="P:Gallio.Framework.Pattern.PatternTestDataContext.ImplicitDataBindingIndexOffset" /> of each data context traversed to find the data source excluding the data context that actually has the data source.</summary>
3790 <returns>The implicit data binding index, or null if no anonymous data sources were found</returns>
3791 </member>
3792 <member name="T:Gallio.Framework.Pattern.PatternTestExplorer">
3793 <summary>A test explorer for <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" />.</summary>
3794 </member>
3795 <member name="M:Gallio.Framework.Pattern.PatternTestExplorer.ExploreAssembly(Gallio.Reflection.IAssemblyInfo,System.Action{Gallio.Model.ITest})">
3796 <summary>Explores the tests defined by an assembly and links them into the <see cref="P:Gallio.Model.ITestExplorer.TestModel" />.</summary>
3797 <param name="assembly">The assembly</param>
3798 <param name="consumer">An action to perform on each assembly-level test explored, or null if no action is required</param>
3799 </member>
3800 <member name="M:Gallio.Framework.Pattern.PatternTestExplorer.ExploreType(Gallio.Reflection.ITypeInfo,System.Action{Gallio.Model.ITest})">
3801 <summary>Explores the tests defined by a type and links them into the <see cref="P:Gallio.Model.ITestExplorer.TestModel" />.</summary>
3802 <param name="type">The type</param>
3803 <param name="consumer">An action to perform on each type-level test explored, or null if no action is required</param>
3804 </member>
3805 <member name="M:Gallio.Framework.Pattern.PatternTestExplorer.FinishModel">
3806 <summary>Performs any final actions after exploration has taken place to ensure that we have a complete and internally consistent model.</summary>
3807 </member>
3808 <member name="M:Gallio.Framework.Pattern.PatternTestExplorer.IsTest(Gallio.Reflection.ICodeElementInfo)">
3809 <summary>Returns true if the code element represents a test.</summary>
3810 <param name="element">The element</param>
3811 <returns>True if the element represents a test</returns>
3812 </member>
3813 <member name="T:Gallio.Framework.Pattern.PatternTestFramework">
3814 <summary>
3815 <para> The pattern test framework is a built-in framework that Gallio provides based on reflection over attributes that implement <see cref="T:Gallio.Framework.Pattern.IPattern" />. </para>
3816 <para> The pattern test framework does not provide many attributes that end-users would use to write tests. The framework is intended to be extended by <see cref="T:Gallio.Framework.Pattern.IPatternTestFrameworkExtension" /> components and libraries that define the test syntax and other facilities. </para>
3817 <para> For example, a Test-Driven framework would augment the base framework with a syntax based around test fixtures, test methods and assertions. A Behavior-Driven framework would instead use a syntax based around contexts and specifications. Both frameworks would share the common attribute-based model provided by the pattern test framework. They may even interoperate to a large extent. </para>
3818 <para> Other add-on libraries and tools may further contribute functionality to the pattern test framework by registering components with the runtime or by subclassing pattern attributes. </para>
3819 </summary>
3820 </member>
3821 <member name="P:Gallio.Framework.Pattern.PatternTestFramework.Name">
3822 <summary>Gets the name of the test framework.</summary>
3823 </member>
3824 <member name="M:Gallio.Framework.Pattern.PatternTestFramework.CreateTestExplorer(Gallio.Model.TestModel)">
3825 <summary>Creates a test explorer for this test framework.</summary>
3826 <param name="testModel">The test model to populate incrementally as tests are discovered</param>
3827 <returns>The test explorer</returns>
3828 </member>
3829 <member name="T:Gallio.Framework.Pattern.PatternTestInstanceActions">
3830 <summary>An implementation of <see cref="T:Gallio.Framework.Pattern.IPatternTestInstanceHandler" /> based on actions that can be sequenced and composed as chains.</summary>
3831 </member>
3832 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.AfterTestInstanceChain">
3833 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.AfterTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3834 </member>
3835 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.BeforeTestInstanceChain">
3836 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3837 </member>
3838 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.DecorateChildTestChain">
3839 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DecorateChildTest(Gallio.Framework.Pattern.PatternTestInstanceState,Gallio.Framework.Pattern.PatternTestActions)" /> actions.</summary>
3840 </member>
3841 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.DisposeTestInstanceChain">
3842 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DisposeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3843 </member>
3844 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.ExecuteTestInstanceChain">
3845 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.ExecuteTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3846 </member>
3847 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.InitializeTestInstanceChain">
3848 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.InitializeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3849 </member>
3850 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.SetUpTestInstanceChain">
3851 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.SetUpTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3852 </member>
3853 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceActions.TearDownTestInstanceChain">
3854 <summary>Gets the chain of <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.TearDownTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions.</summary>
3855 </member>
3856 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.AfterTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3857 <summary>
3858 <para> Cleans up a completed test instance after its use. </para>
3859 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> because the test step for this instance (if different from the primary step) has terminated. </para>
3860 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Deconfiguring the test environment following the test disposal.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3861 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3862 </summary>
3863 <param name="testInstanceState">The test instance state, never null</param>
3864 </member>
3865 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3866 <summary>
3867 <para> Prepares a newly created test instance state before its use. </para>
3868 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> because the test step for this instance (if different from the primary step) has not yet started. </para>
3869 <para> If <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep" /> is false then this method has the opportunity to modify the name or add metadata to the brand new <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> that was created for just this test instance. </para>
3870 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding or changing slot values <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" />.</item><item>Configuring the test environment in advance of test initialization.</item><item>Modifying the name or metadata of the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" nolink="true" />, if <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep" nolink="true" /> is false (since the primary test step has already started execution).</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3871 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" nolink="true" /> object in any way UNLESS <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep" nolink="true" /> is false.</item><item>Skipping the test instance by throwing an appropriate <see cref="T:Gallio.Framework.SilentTestException" />.</item></list></para>
3872 </summary>
3873 <param name="testInstanceState">The test instance state, never null</param>
3874 </member>
3875 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.CreateDecorator(Gallio.Framework.Pattern.IPatternTestInstanceHandler)">
3876 <summary>
3877 <para> Creates a new <see cref="T:Gallio.Framework.Pattern.PatternTestInstanceActions" /> object initially configured to forward calls to the specified handler without change. The result is that any behaviors added to the action chains of the returned <see cref="T:Gallio.Framework.Pattern.PatternTestInstanceActions" nolink="true" /> will be invoked before, after or around those of the specified handler. </para>
3878 <para> A pattern test decorator applies additional actions around those of another <see cref="T:Gallio.Framework.Pattern.IPatternTestInstanceHandler" /> for a <see cref="T:Gallio.Framework.Pattern.PatternTestStep" />. </para>
3879 </summary>
3880 <param name="handler">The handler to decorate</param>
3881 <returns>The decorated handler actions</returns>
3882 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="handler" /> is null</exception>
3883 </member>
3884 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.DecorateChildTest(Gallio.Framework.Pattern.PatternTestInstanceState,Gallio.Framework.Pattern.PatternTestActions)">
3885 <summary>
3886 <para> Decorates the <see cref="T:Gallio.Framework.Pattern.IPatternTestInstanceHandler" /> of a child test before its <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.BeforeTest(Gallio.Framework.Pattern.PatternTestState)" /> actions have a chance to run. </para>
3887 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Execute" /> lifecycle phase. </para>
3888 <para> This method may apply any number of decorations to the child test's handler by adding actions to the supplied <paramref name="decoratedChildTestActions" /> object. The child test's original handler is unmodified by this operation and the decorated actions are discarded once the child test is finished. </para>
3889 <para> A typical use of this method is to augment the <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.SetUpTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> and <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.TearDownTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> behaviors of the child test with additional contributions provided by the parent. </para>
3890 <para> It is also possible to decorate descendants besides direct children. To do so, decorate the child's <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DecorateChildTest(Gallio.Framework.Pattern.PatternTestInstanceState,Gallio.Framework.Pattern.PatternTestActions)" /> behavior to perpetuate the decoration down to more deeply nested descendants. This process of recursive decoration may be carried along to whatever depth is required. </para>
3891 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding additional actions for the child test to the <paramref name="decoratedChildTestActions" />.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3892 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3893 </summary>
3894 <param name="testInstanceState">The test instance state, never null</param>
3895 <param name="decoratedChildTestActions">The child test's actions to decorate, never null</param>
3896 </member>
3897 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.DisposeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3898 <summary>
3899 <para> Disposes a test instance that is about to terminate. </para>
3900 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Dispose" /> lifecycle phase. </para>
3901 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Deconfiguring the test fixture following test execution.</item><item>Disposing the test fixture instance.</item><item>Disposing other resources.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3902 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3903 </summary>
3904 <param name="testInstanceState">The test instance state, never null</param>
3905 </member>
3906 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.ExecuteTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3907 <summary>
3908 <para> Executes the test instance. </para>
3909 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Execute" /> lifecycle phase. </para>
3910 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Invoking test methods.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3911 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3912 </summary>
3913 <param name="testInstanceState">The test instance state, never null</param>
3914 </member>
3915 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.InitializeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3916 <summary>
3917 <para> Initializes a test instance that has just started running. </para>
3918 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Initialize" /> lifecycle phase. </para>
3919 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Creating the test fixture instance and setting <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType" /> and <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureInstance" />.</item><item>Configuring the test fixture in advance of test execution.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3920 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3921 </summary>
3922 <param name="testInstanceState">The test instance state, never null</param>
3923 </member>
3924 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.SetUpTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3925 <summary>
3926 <para> Sets up a test instance prior to execution. </para>
3927 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.SetUp" /> lifecycle phase. </para>
3928 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Invoking test setup methods.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3929 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3930 </summary>
3931 <param name="testInstanceState">The test instance state, never null</param>
3932 </member>
3933 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceActions.TearDownTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
3934 <summary>
3935 <para> Tears down a test instance following execution. </para>
3936 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.TearDown" /> lifecycle phase. </para>
3937 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Invoking test teardown methods.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
3938 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
3939 </summary>
3940 <param name="testInstanceState">The test instance state, never null</param>
3941 </member>
3942 <member name="T:Gallio.Framework.Pattern.PatternTestInstanceState">
3943 <summary>
3944 <para> Represents the run-time state of a single instance of a <see cref="T:Gallio.Framework.Pattern.PatternTest" /> that is to be executed. </para>
3945 <para> Typical lifecycle of <see cref="T:Gallio.Framework.Pattern.PatternTestInstanceState" />: <list type="bullet"><item>The <see cref="T:Gallio.Framework.Pattern.PatternTestController" /> creates a <see cref="T:Gallio.Framework.Pattern.PatternTestInstanceState" nolink="true" /> for the instance of the <see cref="T:Gallio.Framework.Pattern.PatternTest" nolink="true" /> to be executed using particular data bindings.</item><item>The controller populates the instance state with slot values for each slot with an associated <see cref="T:Gallio.Framework.Data.IDataAccessor" /> in the <see cref="T:Gallio.Framework.Pattern.PatternTestState" />.</item><item>The controller calls <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> to give test extensions the opportunity to modify the instance state.</item><item>The controller initializes, sets up, executes, tears down and disposes the test instance.</item><item>The controller calls <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.AfterTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> to give test extensions the opportunity to clean up the instance state.</item></list></para>
3946 </summary>
3947 </member>
3948 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.BindingItem">
3949 <summary>Gets the data item obtained from the test's <see cref="T:Gallio.Framework.Data.DataBindingContext" /> to create this state.</summary>
3950 </member>
3951 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.Converter">
3952 <summary>Gets the converter for data binding.</summary>
3953 </member>
3954 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data">
3955 <summary>Gets the user data collection associated with the test instance state. It may be used to associate arbitrary key/value pairs with the execution of the test instance.</summary>
3956 </member>
3957 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureInstance">
3958 <summary>Gets or sets the test fixture instance or null if none.</summary>
3959 </member>
3960 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType">
3961 <summary>Gets or sets the test fixture type or null if none.</summary>
3962 <exception cref="T:System.ArgumentException">Thrown if <paramref name="value" /> contains unbound generic parameters, is a generic parameter, has an element type</exception>
3963 </member>
3964 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.Formatter">
3965 <summary>Gets the formatter for data binding.</summary>
3966 </member>
3967 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep">
3968 <summary>Returns true if the <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestStep" /> is the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> that was created for the test. False if a new <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> was created as a child of the primary test step just for this test instance.</summary>
3969 </member>
3970 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues">
3971 <summary>
3972 <para> Gets a mutable dictionary of slots and their bound values. </para>
3973 <para> The dictionary maps slots to the values that will be stored in them during test execution. </para>
3974 </summary>
3975 </member>
3976 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.Test">
3977 <summary>Gets the test associated with this test instance state.</summary>
3978 </member>
3979 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestArguments">
3980 <summary>Gets or sets the test method arguments or null if none.</summary>
3981 </member>
3982 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestInstanceHandler">
3983 <summary>Gets the handler for the test instance.</summary>
3984 </member>
3985 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestMethod">
3986 <summary>Gets or sets the test method or null if none.</summary>
3987 <exception cref="T:System.ArgumentException">Thrown if <paramref name="value" /> is contains unbound generic parameters</exception>
3988 </member>
3989 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestState">
3990 <summary>Gets the test state associated with this test instance state.</summary>
3991 </member>
3992 <member name="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestStep">
3993 <summary>Gets the test step used to execute the test instance.</summary>
3994 </member>
3995 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceState.FromContext(Gallio.Framework.Context)">
3996 <summary>Gets the pattern test instance state from the specified context.</summary>
3997 <param name="context">The context</param>
3998 <returns>The pattern test instance state, or null if none</returns>
3999 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="context" /> is null</exception>
4000 </member>
4001 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceState.GetFixtureObjectCreationSpec(Gallio.Reflection.ITypeInfo)">
4002 <summary>Gets a fixture object creation specification using the state's bound <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" />.</summary>
4003 <param name="type">The fixture type or generic type definition</param>
4004 <returns>The fixture instance</returns>
4005 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="type" /> is null</exception>
4006 <exception cref="T:System.ArgumentException">Thrown if the slots or values in <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" /> are not appropriate for instantiating <paramref name="type" /></exception>
4007 </member>
4008 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceState.GetTestMethodInvocationSpec(Gallio.Reflection.IMethodInfo)">
4009 <summary>Gets a test method invocation specification using the state's bound <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" />.</summary>
4010 <param name="method">The test method or generic method definition, possibly declared by a generic type or generic type defintion</param>
4011 <returns>The method return value</returns>
4012 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="method" /> is null</exception>
4013 <exception cref="T:System.ArgumentException">Thrown if the slots or values in <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" /> or <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType" /> are not appropriate for invoking <paramref name="method" /></exception>
4014 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType" /> is null</exception>
4015 </member>
4016 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceState.InvokeFixtureMethod(Gallio.Reflection.IMethodInfo,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Gallio.Reflection.ISlotInfo,System.Object}})">
4017 <summary>Invokes a fixture method using the specified <paramref name="slotValues" />.</summary>
4018 <param name="method">The fixture method or generic method definition, possibly declared by a generic type or generic type defintion</param>
4019 <param name="slotValues">The slot values to use for invoking the method</param>
4020 <returns>The method return value</returns>
4021 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="method" /> or <paramref name="slotValues" /> is null</exception>
4022 <exception cref="T:System.ArgumentException">Thrown if the slots or values in <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" /> or <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType" /> or <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureInstance" /> are not appropriate for invoking <paramref name="method" /></exception>
4023 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType" /> is null</exception>
4024 <exception cref="T:System.Exception">Any exception thrown by the invoked method</exception>
4025 </member>
4026 <member name="M:Gallio.Framework.Pattern.PatternTestInstanceState.InvokeTestMethod">
4027 <summary>Invokes the test method specified by <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestMethod" />, <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureInstance" /> and <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.TestArguments" />. If there is no test method or no arguments, does nothing.</summary>
4028 <returns>The method return value, or null if there was none</returns>
4029 <exception cref="T:System.Exception">Any exception thrown by the invoked method</exception>
4030 </member>
4031 <member name="T:Gallio.Framework.Pattern.PatternTestParameter">
4032 <summary>Represents an parameter of a <see cref="T:Gallio.Framework.Pattern.PatternTest" /> derived from a field, property or method parameter.</summary>
4033 </member>
4034 <member name="P:Gallio.Framework.Pattern.PatternTestParameter.Binder">
4035 <summary>Gets or sets the <see cref="T:Gallio.Framework.Data.IDataBinder" /> for this test parameter.</summary>
4036 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
4037 </member>
4038 <member name="P:Gallio.Framework.Pattern.PatternTestParameter.DataContext">
4039 <summary>Gets the data context of the component.</summary>
4040 </member>
4041 <member name="P:Gallio.Framework.Pattern.PatternTestParameter.Owner">
4042 <summary>Gets the test that owns this parameter.</summary>
4043 </member>
4044 <member name="P:Gallio.Framework.Pattern.PatternTestParameter.Slot">
4045 <summary>Gets the associated slot.</summary>
4046 </member>
4047 <member name="M:Gallio.Framework.Pattern.PatternTestParameter.SetName(System.String)">
4048 <summary>Sets the name of the component.</summary>
4049 </member>
4050 <member name="T:Gallio.Framework.Pattern.PatternTestState">
4051 <summary>
4052 <para> Represents the run-time state of a <see cref="T:Gallio.Framework.Pattern.PatternTest" /> that is to be executed. </para>
4053 <para> Typical lifecycle of <see cref="T:Gallio.Framework.Pattern.PatternTestState" />: <list type="bullet"><item>The <see cref="T:Gallio.Framework.Pattern.PatternTestController" /> creates a <see cref="T:Gallio.Framework.Pattern.PatternTestState" nolink="true" /> for the <see cref="T:Gallio.Framework.Pattern.PatternTest" nolink="true" /> to be executed.</item><item>The controller populates the test state with slot binding accessors for each <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" /> associated with the test.</item><item>The controller calls <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.BeforeTest(Gallio.Framework.Pattern.PatternTestState)" /> to give test extensions the opportunity to modify the test state.</item><item>The controller begins iterating over the <see cref="T:Gallio.Framework.Data.IDataItem" />s produced by the state's <see cref="P:Gallio.Framework.Pattern.PatternTestState.BindingContext" />. For each item it constructs a <see cref="T:Gallio.Framework.Pattern.PatternTestInstanceState" /> and executes the test instance.</item><item>The controller calls <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.AfterTest(Gallio.Framework.Pattern.PatternTestState)" /> to give test extensions the opportunity to clean up the test state.</item></list></para>
4054 </summary>
4055 </member>
4056 <member name="P:Gallio.Framework.Pattern.PatternTestState.BindingContext">
4057 <summary>Gets the data binding context of the test. The context is used to produce data items for test instances.</summary>
4058 </member>
4059 <member name="P:Gallio.Framework.Pattern.PatternTestState.Converter">
4060 <summary>Gets the converter for data binding.</summary>
4061 </member>
4062 <member name="P:Gallio.Framework.Pattern.PatternTestState.Data">
4063 <summary>Gets the user data collection associated with the test state. It may be used to associate arbitrary key/value pairs with the execution of the test.</summary>
4064 </member>
4065 <member name="P:Gallio.Framework.Pattern.PatternTestState.Formatter">
4066 <summary>Gets the formatter for data binding.</summary>
4067 </member>
4068 <member name="P:Gallio.Framework.Pattern.PatternTestState.IsExplicit">
4069 <summary>Returns true if the test was selected explicitly.</summary>
4070 </member>
4071 <member name="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep">
4072 <summary>
4073 <para> Gets the primary test step associated with this test state. </para>
4074 <para> If the test has data bindings, the test instance for each data item will be executed as children of the primary test step. Otherwise, the primary test step will be used for the entire test run. </para>
4075 </summary>
4076 </member>
4077 <member name="P:Gallio.Framework.Pattern.PatternTestState.SlotBindingAccessors">
4078 <summary>
4079 <para> Gets a mutable dictionary of slots and their binding accessors. </para>
4080 <para> The dictionary maps slots to accessors that will provide values for those slots when building test instances. The accessor will be applied to <see cref="T:Gallio.Framework.Data.IDataItem" />s produced iteratively by the <see cref="P:Gallio.Framework.Pattern.PatternTestState.BindingContext" /> of this test state. </para>
4081 </summary>
4082 </member>
4083 <member name="P:Gallio.Framework.Pattern.PatternTestState.Test">
4084 <summary>Gets the test associated with this test state.</summary>
4085 </member>
4086 <member name="P:Gallio.Framework.Pattern.PatternTestState.TestHandler">
4087 <summary>Gets the handler for the test.</summary>
4088 </member>
4089 <member name="M:Gallio.Framework.Pattern.PatternTestState.FromContext(Gallio.Framework.Context)">
4090 <summary>Gets the pattern test state from the specified context.</summary>
4091 <param name="context">The context</param>
4092 <returns>The pattern test state, or null if none</returns>
4093 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="context" /> is null</exception>
4094 </member>
4095 <member name="T:Gallio.Framework.Pattern.PatternTestStep">
4096 <summary>A step that belongs to a <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
4097 </member>
4098 <member name="P:Gallio.Framework.Pattern.PatternTestStep.Test">
4099 <summary>Gets the associated test.</summary>
4100 </member>
4101 <member name="T:Gallio.Framework.Pattern.PatternUsageErrorException">
4102 <summary>
4103 <para> The type of exception thrown when a test declaration is malformed or contains an error. Implementations of <see cref="T:Gallio.Framework.Pattern.IPattern" /> may use this exception to report that a pattern is malformed or not valid in the context in which it appears. </para>
4104 <para> The exception effectively halts the processing of the pattern. The message text is then manifested as an error annotation that may be displayed to the user. </para>
4105 <para> When you see this error, check to make sure that the syntax of the test is correct, all required parameters have been provided and they contain valid values. </para>
4106 </summary>
4107 </member>
4108 <member name="T:Gallio.Framework.Pattern.TestAssemblyDecoratorPatternAttribute">
4109 <summary>A test assembly decorator pattern attribute applies decorations to an existing assembly-level test. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4110 </member>
4111 <member name="M:Gallio.Framework.Pattern.TestAssemblyDecoratorPatternAttribute.DecorateAssemblyTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4112 <summary>
4113 <para> Applies decorations to an assembly-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
4114 <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
4115 </summary>
4116 <param name="assemblyScope">The assembly scope</param>
4117 <param name="assembly">The assembly</param>
4118 </member>
4119 <member name="M:Gallio.Framework.Pattern.TestAssemblyDecoratorPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4120 <summary>
4121 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4122 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4123 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4124 </summary>
4125 <param name="scope">The scope</param>
4126 <param name="codeElement">The code element to process</param>
4127 </member>
4128 <member name="M:Gallio.Framework.Pattern.TestAssemblyDecoratorPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4129 <summary>Verifies that the attribute is being used correctly.</summary>
4130 <param name="scope">The scope</param>
4131 <param name="assembly">The assembly</param>
4132 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4133 </member>
4134 <member name="T:Gallio.Framework.Pattern.TestAssemblyInitializationAttribute">
4135 <summary>
4136 <para> An assembly initialization attribute gets a chance to perform early initialization of the system before enumerating the tests within the assembly. </para>
4137 <para> For examples, a subclass of this attribute may be used to register an assembly resolver before test enumeration occurs to ensure that all referenced assemblies can be loaded. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4138 </member>
4139 <member name="M:Gallio.Framework.Pattern.TestAssemblyInitializationAttribute.Initialize(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4140 <summary>Performs early initialization for the specified assembly.</summary>
4141 <param name="frameworkScope">The framework-level scope that will eventually contain the assembly-level test</param>
4142 <param name="assembly">The assembly to process</param>
4143 </member>
4144 <member name="T:Gallio.Framework.Pattern.TestAssemblyPatternAttribute">
4145 <summary>
4146 <para> Declares that an assembly generates an assembly-level test. Subclasses of this attribute can customize how test enumeration takes place within the assembly. </para>
4147 <para> At most one attribute of this type may appear on any given assembly. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4148 </member>
4149 <member name="F:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.DefaultInstance">
4150 <summary>Gets a default instance of the assembly pattern attribute to use when no other pattern consumes an assembly. This field is read-only.</summary>
4151 </member>
4152 <member name="P:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.DefaultTypePattern">
4153 <summary>Gets the default pattern to apply to types that do not have a primary pattern, or null if none.</summary>
4154 </member>
4155 <member name="P:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.IsPrimary">
4156 <summary>
4157 <para> Returns true if this is a primary pattern. </para>
4158 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
4159 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
4160 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
4161 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
4162 </summary>
4163 </member>
4164 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
4165 <summary>
4166 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
4167 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
4168 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
4169 </summary>
4170 <param name="containingScope">The containing scope</param>
4171 <param name="codeElement">The code element to process</param>
4172 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
4173 </member>
4174 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.CreateAssemblyTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4175 <summary>Creates a test for an assembly.</summary>
4176 <param name="containingScope">The containing scope</param>
4177 <param name="assembly">The assembly</param>
4178 <returns>The test</returns>
4179 </member>
4180 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.InitializeAssemblyTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4181 <summary>Initializes a test for an assembly after it has been added to the test model.</summary>
4182 <param name="assemblyScope">The assembly scope</param>
4183 <param name="assembly">The assembly</param>
4184 </member>
4185 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
4186 <summary>Returns true if the code element represents a test.</summary>
4187 <param name="evaluator">The evaluator</param>
4188 <param name="codeElement">The code element</param>
4189 <returns>True if the code element represents a test</returns>
4190 </member>
4191 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.PopulateChildrenImmediately(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4192 <summary>Populates the children of the assembly test all at once.</summary>
4193 <param name="assemblyScope">The assembly scope</param>
4194 <param name="assembly">The assembly</param>
4195 </member>
4196 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.PrepareToPopulateChildrenOnDemand(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4197 <summary>Prepares to populate the children of the assembly test on demand by adding actions to <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />.</summary>
4198 <param name="assemblyScope">The assembly scope</param>
4199 <param name="assembly">The assembly</param>
4200 </member>
4201 <member name="M:Gallio.Framework.Pattern.TestAssemblyPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IAssemblyInfo)">
4202 <summary>Verifies that the attribute is being used correctly.</summary>
4203 <param name="containingScope">The containing scope</param>
4204 <param name="assembly">The assembly</param>
4205 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4206 </member>
4207 <member name="T:Gallio.Framework.Pattern.TestConstructorPatternAttribute">
4208 <summary>
4209 <para> Declares that a constructor is used to provide paramters to a <see cref="T:Gallio.Framework.Pattern.PatternTest" />. Subclasses of this attribute can control what happens with the method. </para>
4210 <para> At most one attribute of this type may appear on any given constructor. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4211 </member>
4212 <member name="F:Gallio.Framework.Pattern.TestConstructorPatternAttribute.DefaultInstance">
4213 <summary>Gets a default instance of the constructor pattern attribute to use when no other pattern consumes a contructor. This field is read-only.</summary>
4214 </member>
4215 <member name="P:Gallio.Framework.Pattern.TestConstructorPatternAttribute.DefaultConstructorParameterPattern">
4216 <summary>Gets the default pattern to apply to constructor parameters that do not have a primary pattern, or null if none.</summary>
4217 </member>
4218 <member name="P:Gallio.Framework.Pattern.TestConstructorPatternAttribute.IsPrimary">
4219 <summary>
4220 <para> Returns true if this is a primary pattern. </para>
4221 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
4222 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
4223 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
4224 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
4225 </summary>
4226 </member>
4227 <member name="M:Gallio.Framework.Pattern.TestConstructorPatternAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
4228 <summary>
4229 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
4230 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
4231 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
4232 </summary>
4233 <param name="containingScope">The containing scope</param>
4234 <param name="codeElement">The code element to process</param>
4235 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
4236 </member>
4237 <member name="M:Gallio.Framework.Pattern.TestConstructorPatternAttribute.InitializeDataContext(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IConstructorInfo)">
4238 <summary>Initializes the <see cref="T:Gallio.Framework.Pattern.PatternTestDataContext" />.</summary>
4239 <param name="dataContextScope">The data context scope</param>
4240 <param name="constructor">The constructor</param>
4241 </member>
4242 <member name="M:Gallio.Framework.Pattern.TestConstructorPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IConstructorInfo)">
4243 <summary>Verifies that the attribute is being used correctly.</summary>
4244 <param name="containingScope">The containing scope</param>
4245 <param name="constructor">The constructor</param>
4246 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4247 </member>
4248 <member name="T:Gallio.Framework.Pattern.TestDecoratorPatternAttribute">
4249 <summary>A test decorator pattern attribute applies decorations to an existing assembly, type or method level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4250 </member>
4251 <member name="M:Gallio.Framework.Pattern.TestDecoratorPatternAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4252 <summary>
4253 <para> Applies decorations to a method or type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
4254 <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
4255 </summary>
4256 <param name="scope">The scope</param>
4257 <param name="codeElement">The code element</param>
4258 </member>
4259 <member name="M:Gallio.Framework.Pattern.TestDecoratorPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4260 <summary>
4261 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4262 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4263 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4264 </summary>
4265 <param name="scope">The scope</param>
4266 <param name="codeElement">The code element to process</param>
4267 </member>
4268 <member name="M:Gallio.Framework.Pattern.TestDecoratorPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4269 <summary>Verifies that the attribute is being used correctly.</summary>
4270 <param name="scope">The scope</param>
4271 <param name="codeElement">The code element</param>
4272 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4273 </member>
4274 <member name="T:Gallio.Framework.Pattern.TestDependencyPatternAttribute">
4275 <summary>A dependency pattern attribute creates a dependency on the tests defined by some other code element. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4276 </member>
4277 <member name="M:Gallio.Framework.Pattern.TestDependencyPatternAttribute.GetDependency(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4278 <summary>Gets the code element that declares the tests on which this test should depend.</summary>
4279 <param name="scope">The scope</param>
4280 <param name="codeElement">The code element</param>
4281 <returns>The code element representing the dependency</returns>
4282 </member>
4283 <member name="M:Gallio.Framework.Pattern.TestDependencyPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4284 <summary>
4285 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4286 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4287 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4288 </summary>
4289 <param name="scope">The scope</param>
4290 <param name="codeElement">The code element to process</param>
4291 </member>
4292 <member name="M:Gallio.Framework.Pattern.TestDependencyPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4293 <summary>Verifies that the attribute is being used correctly.</summary>
4294 <param name="scope">The scope</param>
4295 <param name="codeElement">The code element</param>
4296 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4297 </member>
4298 <member name="T:Gallio.Framework.Pattern.TestMethodDecoratorPatternAttribute">
4299 <summary>A test decorator pattern attribute applies decorations to an existing method-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4300 </member>
4301 <member name="M:Gallio.Framework.Pattern.TestMethodDecoratorPatternAttribute.DecorateMethodTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
4302 <summary>
4303 <para> Applies decorations to a method-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
4304 <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
4305 </summary>
4306 <param name="methodScope">The method scope</param>
4307 <param name="method">The method</param>
4308 </member>
4309 <member name="M:Gallio.Framework.Pattern.TestMethodDecoratorPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4310 <summary>
4311 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4312 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4313 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4314 </summary>
4315 <param name="scope">The scope</param>
4316 <param name="codeElement">The code element to process</param>
4317 </member>
4318 <member name="M:Gallio.Framework.Pattern.TestMethodDecoratorPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
4319 <summary>Verifies that the attribute is being used correctly.</summary>
4320 <param name="scope">The scope</param>
4321 <param name="method">The method</param>
4322 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4323 </member>
4324 <member name="T:Gallio.Framework.Pattern.TestMethodPatternAttribute">
4325 <summary>
4326 <para> Declares that a method represents a <see cref="T:Gallio.Framework.Pattern.PatternTest" />. Subclasses of this attribute can control what happens with the method. </para>
4327 <para> At most one attribute of this type may appear on any given method. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4328 </member>
4329 <member name="P:Gallio.Framework.Pattern.TestMethodPatternAttribute.DefaultGenericParameterPattern">
4330 <summary>Gets the default pattern to apply to generic parameters that do not have a primary pattern, or null if none.</summary>
4331 </member>
4332 <member name="P:Gallio.Framework.Pattern.TestMethodPatternAttribute.DefaultMethodParameterPattern">
4333 <summary>Gets the default pattern to apply to method parameters that do not have a primary pattern, or null if none.</summary>
4334 </member>
4335 <member name="P:Gallio.Framework.Pattern.TestMethodPatternAttribute.IsPrimary">
4336 <summary>
4337 <para> Returns true if this is a primary pattern. </para>
4338 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
4339 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
4340 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
4341 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
4342 </summary>
4343 </member>
4344 <member name="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
4345 <summary>
4346 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
4347 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
4348 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
4349 </summary>
4350 <param name="containingScope">The containing scope</param>
4351 <param name="codeElement">The code element to process</param>
4352 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
4353 </member>
4354 <member name="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.CreateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
4355 <summary>Creates a test for a method.</summary>
4356 <param name="containingScope">The containing scope</param>
4357 <param name="method">The method</param>
4358 <returns>The test</returns>
4359 </member>
4360 <member name="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.InitializeTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
4361 <summary>Initializes a test for a method after it has been added to the test model.</summary>
4362 <param name="methodScope">The method scope</param>
4363 <param name="method">The method</param>
4364 </member>
4365 <member name="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
4366 <summary>Returns true if the code element represents a test.</summary>
4367 <param name="evaluator">The evaluator</param>
4368 <param name="codeElement">The code element</param>
4369 <returns>True if the code element represents a test</returns>
4370 </member>
4371 <member name="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.SetTestSemantics(Gallio.Framework.Pattern.PatternTest,Gallio.Reflection.IMethodInfo)">
4372 <summary>
4373 <para> Applies semantic actions to the <see cref="P:Gallio.Framework.Pattern.PatternTest.TestActions" /> member of a test to set the test's runtime behavior. </para>
4374 <para> This method is called after <see cref="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.InitializeTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)" />. </para>
4375 </summary>
4376 <param name="test">The test</param>
4377 <param name="method">The test method</param>
4378 </member>
4379 <member name="M:Gallio.Framework.Pattern.TestMethodPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.IMethodInfo)">
4380 <summary>Verifies that the attribute is being used correctly.</summary>
4381 <param name="containingScope">The containing scope</param>
4382 <param name="method">The method</param>
4383 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4384 </member>
4385 <member name="T:Gallio.Framework.Pattern.TestParameterDecoratorPatternAttribute">
4386 <summary>A test parameter decorator pattern attribute applies decorations to an existing <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4387 </member>
4388 <member name="M:Gallio.Framework.Pattern.TestParameterDecoratorPatternAttribute.DecorateTestParameter(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ISlotInfo)">
4389 <summary>
4390 <para> Applies decorations to a <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" />. </para>
4391 <para> A typical use of this method is to augment the test parameter with additional metadata or to add additional behaviors to the test parameter. </para>
4392 </summary>
4393 <param name="slotScope">The slot scope</param>
4394 <param name="slot">The slot</param>
4395 </member>
4396 <member name="M:Gallio.Framework.Pattern.TestParameterDecoratorPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4397 <summary>
4398 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4399 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4400 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4401 </summary>
4402 <param name="scope">The scope</param>
4403 <param name="codeElement">The code element to process</param>
4404 </member>
4405 <member name="M:Gallio.Framework.Pattern.TestParameterDecoratorPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ISlotInfo)">
4406 <summary>Verifies that the attribute is being used correctly.</summary>
4407 <param name="scope">The scope</param>
4408 <param name="slot">The slot</param>
4409 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4410 </member>
4411 <member name="T:Gallio.Framework.Pattern.TestParameterPatternAttribute">
4412 <summary>
4413 <para> Declares that a field, property, method parameter or generic parameter represents a <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" />. Subclasses of this attribute can control what happens with the parameter. </para>
4414 <para> At most one attribute of this type may appear on any given property, field or parameter declaration. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4415 </member>
4416 <member name="F:Gallio.Framework.Pattern.TestParameterPatternAttribute.AutomaticInstance">
4417 <summary>Gets an instance of the parameter pattern attribute to use when no other pattern consumes the parameter but when the parameter appears to have other contributing pattern attributes associated with it. So a test parameter is created automatically if we try to apply contributions to it, such as data items, but otherwise it is silent. This is particularly useful with fields and properties. This field is read-only.</summary>
4418 </member>
4419 <member name="F:Gallio.Framework.Pattern.TestParameterPatternAttribute.DefaultInstance">
4420 <summary>Gets a default instance of the parameter pattern attribute to use when no other pattern consumes the parameter. This field is read-only.</summary>
4421 </member>
4422 <member name="P:Gallio.Framework.Pattern.TestParameterPatternAttribute.IsPrimary">
4423 <summary>
4424 <para> Returns true if this is a primary pattern. </para>
4425 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
4426 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
4427 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
4428 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
4429 </summary>
4430 </member>
4431 <member name="M:Gallio.Framework.Pattern.TestParameterPatternAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
4432 <summary>
4433 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
4434 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
4435 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
4436 </summary>
4437 <param name="containingScope">The containing scope</param>
4438 <param name="codeElement">The code element to process</param>
4439 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
4440 </member>
4441 <member name="M:Gallio.Framework.Pattern.TestParameterPatternAttribute.CreateTestParameter(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ISlotInfo)">
4442 <summary>Creates a test parameter.</summary>
4443 <param name="containingScope">The containing scope</param>
4444 <param name="slot">The slot</param>
4445 <returns>The test parameter</returns>
4446 </member>
4447 <member name="M:Gallio.Framework.Pattern.TestParameterPatternAttribute.InitializeTestParameter(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ISlotInfo)">
4448 <summary>Initializes a test parameter after it has been added to the containing test.</summary>
4449 <param name="testParameterScope">The test parameter scope</param>
4450 <param name="slot">The slot</param>
4451 </member>
4452 <member name="M:Gallio.Framework.Pattern.TestParameterPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ISlotInfo)">
4453 <summary>Verifies that the attribute is being used correctly.</summary>
4454 <param name="containingScope">The containing scope</param>
4455 <param name="slot">The slot</param>
4456 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4457 </member>
4458 <member name="T:Gallio.Framework.Pattern.TestTypeDecoratorPatternAttribute">
4459 <summary>A test type decorator pattern attribute applies decorations to an existing type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4460 </member>
4461 <member name="M:Gallio.Framework.Pattern.TestTypeDecoratorPatternAttribute.DecorateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
4462 <summary>
4463 <para> Applies decorations to a type-level <see cref="T:Gallio.Framework.Pattern.PatternTest" />. </para>
4464 <para> A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test. </para>
4465 </summary>
4466 <param name="typeScope">The type scope</param>
4467 <param name="type">The type</param>
4468 </member>
4469 <member name="M:Gallio.Framework.Pattern.TestTypeDecoratorPatternAttribute.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4470 <summary>
4471 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4472 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4473 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4474 </summary>
4475 <param name="scope">The scope</param>
4476 <param name="codeElement">The code element to process</param>
4477 </member>
4478 <member name="M:Gallio.Framework.Pattern.TestTypeDecoratorPatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
4479 <summary>Verifies that the attribute is being used correctly.</summary>
4480 <param name="scope">The scope</param>
4481 <param name="type">The type</param>
4482 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4483 </member>
4484 <member name="T:Gallio.Framework.Pattern.TestTypePatternAttribute">
4485 <summary>
4486 <para> Declares that a type represents an <see cref="T:Gallio.Framework.Pattern.PatternTest" />. Subclasses of this attribute can control what happens with the type. </para>
4487 <para> At most one attribute of this type may appear on any given class. </para>
4488 </summary>
4489 </member>
4490 <member name="F:Gallio.Framework.Pattern.TestTypePatternAttribute.AutomaticInstance">
4491 <summary>Gets an instance of the test type pattern attribute to use when no other pattern consumes the type. If the type can be inferred to be a test type then the pattern will behave as if the type has a test type pattern attribute applied to it. Otherwise it will simply recurse into nested types. This field is read-only.</summary>
4492 </member>
4493 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultConstructorPattern">
4494 <summary>Gets the default pattern to apply to constructors that do not have a primary pattern, or null if none.</summary>
4495 </member>
4496 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultEventPattern">
4497 <summary>Gets the default pattern to apply to events that do not have a primary pattern, or null if none.</summary>
4498 </member>
4499 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultFieldPattern">
4500 <summary>Gets the default pattern to apply to fields that do not have a primary pattern, or null if none.</summary>
4501 </member>
4502 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultGenericParameterPattern">
4503 <summary>Gets the default pattern to apply to generic parameters that do not have a primary pattern, or null if none.</summary>
4504 </member>
4505 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultMethodPattern">
4506 <summary>Gets the default pattern to apply to methods that do not have a primary pattern, or null if none.</summary>
4507 </member>
4508 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultNestedTypePattern">
4509 <summary>Gets the default pattern to apply to nested types that do not have a primary pattern, or null if none.</summary>
4510 </member>
4511 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.DefaultPropertyPattern">
4512 <summary>Gets the default pattern to apply to properties that do not have a primary pattern, or null if none.</summary>
4513 </member>
4514 <member name="P:Gallio.Framework.Pattern.TestTypePatternAttribute.IsPrimary">
4515 <summary>
4516 <para> Returns true if this is a primary pattern. </para>
4517 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
4518 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
4519 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
4520 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
4521 </summary>
4522 </member>
4523 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
4524 <summary>
4525 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
4526 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
4527 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
4528 </summary>
4529 <param name="containingScope">The containing scope</param>
4530 <param name="codeElement">The code element to process</param>
4531 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
4532 </member>
4533 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.ConsumeNestedTypes(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
4534 <summary>Consumes nested types.</summary>
4535 <param name="type">The type whose nested types are to be consumed</param>
4536 <param name="scope">The scope to be used as the containing scope for nested types</param>
4537 </member>
4538 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.CreateTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
4539 <summary>Creates a test for a type.</summary>
4540 <param name="constainingScope">The containing scope</param>
4541 <param name="type">The type</param>
4542 <returns>The test</returns>
4543 </member>
4544 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.GetMemberBindingFlags(Gallio.Reflection.ITypeInfo)">
4545 <summary>Gets the binding flags that should be used to enumerate non-nested type members of the type for determining their contribution to the test fixture. Instance members are only included if the type is not abstract.</summary>
4546 <param name="type">The type</param>
4547 <returns>The binding flags for enumerating members</returns>
4548 </member>
4549 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.InferTestType(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ITypeInfo)">
4550 <summary>Infers whether the type is a test type based on its structure. Returns true if the type any associated patterns, if it has non-nested type members (subject to <see cref="M:Gallio.Framework.Pattern.TestTypePatternAttribute.GetMemberBindingFlags(Gallio.Reflection.ITypeInfo)" />) with patterns, or if it has generic parameters with patterns.</summary>
4551 <param name="evaluator">The pattern evaluator</param>
4552 <param name="type">The type</param>
4553 <returns>True if the type is likely a test type</returns>
4554 </member>
4555 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.InitializeTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
4556 <summary>
4557 <para> Initializes a test for a type after it has been added to the test model. </para>
4558 <para> The members of base types are processed before those of subtypes. </para>
4559 </summary>
4560 <param name="typeScope">The type scope</param>
4561 <param name="type">The type</param>
4562 </member>
4563 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
4564 <summary>Returns true if the code element represents a test.</summary>
4565 <param name="evaluator">The evaluator</param>
4566 <param name="codeElement">The code element</param>
4567 <returns>True if the code element represents a test</returns>
4568 </member>
4569 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.SetTestSemantics(Gallio.Framework.Pattern.PatternTest,Gallio.Reflection.ITypeInfo)">
4570 <summary>
4571 <para> Applies semantic actions to the <see cref="P:Gallio.Framework.Pattern.PatternTest.TestActions" /> member of a test to set the test's runtime behavior. </para>
4572 <para> This method is called after <see cref="M:Gallio.Framework.Pattern.TestTypePatternAttribute.InitializeTest(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)" />. </para>
4573 </summary>
4574 <param name="test">The test</param>
4575 <param name="type">The test type</param>
4576 </member>
4577 <member name="M:Gallio.Framework.Pattern.TestTypePatternAttribute.Validate(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ITypeInfo)">
4578 <summary>Verifies that the attribute is being used correctly.</summary>
4579 <param name="containingScope">The containing scope</param>
4580 <param name="type">The type</param>
4581 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">Thrown if the attribute is being used incorrectly</exception>
4582 </member>
4583 <member name="T:Gallio.Framework.Pattern.ToolInfo">
4584 <summary>Provides information about a tool that extends the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" />. This class cannot be inherited.</summary>
4585 </member>
4586 <member name="P:Gallio.Framework.Pattern.ToolInfo.Id">
4587 <summary>Gets the unique id of the tool.</summary>
4588 </member>
4589 <member name="P:Gallio.Framework.Pattern.ToolInfo.Name">
4590 <summary>Gets the display name of the tool.</summary>
4591 </member>
4592 <member name="T:Gallio.Framework.Pattern.IPattern">
4593 <summary>
4594 <para> A <see cref="T:Gallio.Framework.Pattern.IPattern" /> defines a composable rule for building <see cref="T:Gallio.Framework.Pattern.PatternTest" /> and <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" /> objects using reflection. </para>
4595 <para> The general idea is that a pattern applies contributions to a <see cref="T:Gallio.Framework.Pattern.PatternEvaluationScope" /> that represents the state of the pattern interpretation process. A primary pattern adds contributions to its containing scope with the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method. All patterns (primary and non-primary) add further contributions to the pattern's own scope with the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method. </para>
4596 <para> A pattern can also defer some of its processing by registering a decorator on the scope. Once all of the decorators have been gathered, they can be applied in sorted order as required. </para>
4597 <para> Pattern processing is performed recursively. First a top-level <see cref="T:Gallio.Framework.Pattern.BootstrapTestAssemblyPattern" /> identifies the primary pattern for an assembly. This pattern then takes over and performs reflection over the types within the assembly and hands off control to any primary patterns it finds there. And so on. Each primary pattern also provides an opportunity for non-primary patterns associated with the same code element to run. </para>
4598 <para> Typically a pattern is associated with a code element by means of a <see cref="T:Gallio.Framework.Pattern.PatternAttribute" /> but other associations are possible. Some patterns might define default rules for recursively processing code elements that do not have primary patterns of their own. Others might use means other than standard reflection to discover the patterns to be applied. The process is intended to be open and extensible. </para>
4599 </summary>
4600 </member>
4601 <member name="P:Gallio.Framework.Pattern.IPattern.IsPrimary">
4602 <summary>
4603 <para> Returns true if this is a primary pattern. </para>
4604 <para> A primary pattern is a pattern that defines the ultimate purpose of a code element and the nature of the tests or test parameters that are produced from it. Consequently the primary pattern is the only one on which the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method will be called. </para>
4605 <para> Each code element may have at most one primary pattern. It is an error for a code element to have more than one associated primary pattern. </para>
4606 <para> If a code element does not have an associated primary pattern, its containing test may choose to apply default processing to it instead. For example, the containing test may give an opportunity to patterns associated with the code element to consume a test method parameter but will revert to default behavior if no primary patterns explicitly claim it. </para>
4607 <para> Non-primary patterns still play a very important part in the construction of the test model. Non-primary patterns may implement the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method to decorate tests and test parameters declared by the primary pattern. </para>
4608 </summary>
4609 </member>
4610 <member name="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)">
4611 <summary>
4612 <para> Consumes a code element and applies its contributions to the scope provided by a containing pattern. </para>
4613 <para> This method is used to declare new tests, test parameters and other components and add them to a containing test that was defined in some other scope. </para>
4614 <para> For example, when enumerating test fixtures, the assembly-level pattern will call the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of the primary patterns associated with each type in an assembly. Some of these patterns will create new test fixture objects and add them as children of the containing assembly-level test. They will then call the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method of each non-primary pattern associated with the type within the scope of the test fixture. Then they will typically recurse into the fixture to apply contributions defined by patterns associated with methods, fields, properties, events, constructors and generic type parameters. </para>
4615 </summary>
4616 <param name="containingScope">The containing scope</param>
4617 <param name="codeElement">The code element to process</param>
4618 <param name="skipChildren">If true, skips generating child tests. Instead the children may be populated on demand using <see cref="P:Gallio.Framework.Pattern.PatternEvaluationScope.PopulateChildrenChain" />. The implementation may safely ignore the value of this flag so long as subsequent attempts to populate children on demand are idempotent (do nothing or have no adverse side-effects).</param>
4619 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">May be thrown to halt processing of the pattern and report an error message to the user as an annotation that describes how the pattern was misapplied.</exception>
4620 </member>
4621 <member name="M:Gallio.Framework.Pattern.IPattern.IsTest(Gallio.Framework.Pattern.PatternEvaluator,Gallio.Reflection.ICodeElementInfo)">
4622 <summary>Returns true if the code element represents a test.</summary>
4623 <param name="evaluator">The evaluator</param>
4624 <param name="codeElement">The code element</param>
4625 <returns>True if the code element represents a test</returns>
4626 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">May be thrown to halt processing of the pattern and report an error message to the user as an annotation that describes how the pattern was misapplied.</exception>
4627 </member>
4628 <member name="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)">
4629 <summary>
4630 <para> Processes a code element and applies contributes to the scope of this pattern. The scope will typically have been introduced by the <see cref="M:Gallio.Framework.Pattern.IPattern.Consume(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo,System.Boolean)" /> method of a primary pattern applied to this code element. </para>
4631 <para> This method is used by patterns to decorate tests and test parameters that have been declared by primary patterns. </para>
4632 <para> For example, the <see cref="M:Gallio.Framework.Pattern.IPattern.Process(Gallio.Framework.Pattern.PatternEvaluationScope,Gallio.Reflection.ICodeElementInfo)" /> method will typically be called by another pattern that has just created a new test based on the associated code element, such as a test method. The method then has the opportunity to modify the test to add metadata, change its name, add new behaviors, and so on. </para>
4633 </summary>
4634 <param name="scope">The scope</param>
4635 <param name="codeElement">The code element to process</param>
4636 <exception cref="T:Gallio.Framework.Pattern.PatternUsageErrorException">May be thrown to halt processing of the pattern and report an error message to the user as an annotation that describes how the pattern was misapplied.</exception>
4637 </member>
4638 <member name="T:Gallio.Framework.Pattern.IPatternResolver">
4639 <summary>The pattern resolver provides a means for obtaining the <see cref="T:Gallio.Framework.Pattern.IPattern" /> objects associated with an <see cref="T:Gallio.Reflection.ICodeElementInfo" />.</summary>
4640 </member>
4641 <member name="M:Gallio.Framework.Pattern.IPatternResolver.GetPatterns(Gallio.Reflection.ICodeElementInfo)">
4642 <summary>Gets the patterns associated with the specified code element.</summary>
4643 <param name="codeElement">The code element</param>
4644 <returns>The enumeration of patterns</returns>
4645 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="codeElement" /> is null</exception>
4646 </member>
4647 <member name="T:Gallio.Framework.Pattern.IPatternTestComponent">
4648 <summary>An interface shared by <see cref="T:Gallio.Framework.Pattern.PatternTest" /> and <see cref="T:Gallio.Framework.Pattern.PatternTestParameter" />.</summary>
4649 </member>
4650 <member name="P:Gallio.Framework.Pattern.IPatternTestComponent.DataContext">
4651 <summary>Gets the data context of the component.</summary>
4652 </member>
4653 <member name="M:Gallio.Framework.Pattern.IPatternTestComponent.SetName(System.String)">
4654 <summary>Sets the name of the component.</summary>
4655 </member>
4656 <member name="T:Gallio.Framework.Pattern.IPatternTestFrameworkExtension">
4657 <summary>A pattern test framework extension provides the opportunity to extend the standard pattern test framework with additional behaviors.</summary>
4658 </member>
4659 <member name="M:Gallio.Framework.Pattern.IPatternTestFrameworkExtension.GetReferencedTools(Gallio.Reflection.IAssemblyInfo)">
4660 <summary>
4661 <para> Gets information about the tools that are used by the specified test assembly. The tool information will be included in the report as part of the framework node that contains the assembly. </para>
4662 <para> This method is used by authors of tools that are derived from the <see cref="T:Gallio.Framework.Pattern.PatternTestFramework" /> to provide brand and version information about the tool so that it will be visible to end users. </para>
4663 <para> If no tools are referenced by the assembly, it will be ignored by the <see cref="T:Gallio.Framework.Pattern.PatternTestExplorer" />. </para>
4664 </summary>
4665 <param name="assembly">The test assembly</param>
4666 <returns>The tool information</returns>
4667 </member>
4668 <member name="T:Gallio.Framework.Pattern.IPatternTestHandler">
4669 <summary>
4670 <para> A pattern test handler provides the logic that implements the various phases of the test execution lifecycle. Each method represents the behavior to be performed during a particular phase. </para>
4671 <para> Different actions are permitted during each phase. Consult the documentation the appropriate method if this interface for restrictions. </para>
4672 <para> The phases generally run in the following order. Some phases may be skipped due to exceptions or if there is no work to be done. <list type="bullet"><item><see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.BeforeTest(Gallio.Framework.Pattern.PatternTestState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.InitializeTest(Gallio.Framework.Pattern.PatternTestState)" /></item><item>-- for each test instance --</item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.DecorateTestInstance(Gallio.Framework.Pattern.PatternTestState,Gallio.Framework.Pattern.PatternTestInstanceActions)" /></item><item>Run the actions in the decorated <see cref="T:Gallio.Framework.Pattern.IPatternTestInstanceHandler" /></item><item>-- end --</item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.DisposeTest(Gallio.Framework.Pattern.PatternTestState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.AfterTest(Gallio.Framework.Pattern.PatternTestState)" /></item></list></para>
4673 </summary>
4674 </member>
4675 <member name="P:Gallio.Framework.Pattern.IPatternTestHandler.TestInstanceHandler">
4676 <summary>Gets the test instance handler that describes the lifecycle of a test instance.</summary>
4677 </member>
4678 <member name="M:Gallio.Framework.Pattern.IPatternTestHandler.AfterTest(Gallio.Framework.Pattern.PatternTestState)">
4679 <summary>
4680 <para> Cleans up a completed test state after its use. </para>
4681 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of its containing test step because the test has terminated. </para>
4682 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item></list></para>
4683 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4684 </summary>
4685 <param name="testState">The test state, never null</param>
4686 </member>
4687 <member name="M:Gallio.Framework.Pattern.IPatternTestHandler.BeforeTest(Gallio.Framework.Pattern.PatternTestState)">
4688 <summary>
4689 <para> Prepares a newly created test state before its use. </para>
4690 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of its containing test step because the test has not yet been started. </para>
4691 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding or changing slot binding accessors via <see cref="P:Gallio.Framework.Pattern.PatternTestState.SlotBindingAccessors" />.</item><item>Configuring the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> in anticipation of test execution.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item><item>Skipping the test by throwing an appropriate <see cref="T:Gallio.Framework.SilentTestException" />.</item></list></para>
4692 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item></list></para>
4693 </summary>
4694 <param name="testState">The test state, never null</param>
4695 </member>
4696 <member name="M:Gallio.Framework.Pattern.IPatternTestHandler.DecorateTestInstance(Gallio.Framework.Pattern.PatternTestState,Gallio.Framework.Pattern.PatternTestInstanceActions)">
4697 <summary>
4698 <para> Decorates the <see cref="T:Gallio.Framework.Pattern.IPatternTestHandler" /> of a test instance before its <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> actions have a chance to run. </para>
4699 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of its containing test instance because the test has not yet been started. </para>
4700 <para> This method may apply any number of decorations to the test instance's handler by adding actions to the supplied <paramref name="decoratedTestInstanceActions" /> object. The test instance's original handler is unmodified by this operation and the decorated actions are discarded once the child test is finished. </para>
4701 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding additional actions for the test instance to the <paramref name="decoratedTestInstanceActions" />.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4702 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item></list></para>
4703 </summary>
4704 <param name="testState">The test state, never null</param>
4705 <param name="decoratedTestInstanceActions">The test instance's actions to decorate, never null</param>
4706 </member>
4707 <member name="M:Gallio.Framework.Pattern.IPatternTestHandler.DisposeTest(Gallio.Framework.Pattern.PatternTestState)">
4708 <summary>
4709 <para> Cleans up a test following the execution of its instances. </para>
4710 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" />. </para>
4711 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Deconfiguring the test environment following the enumeration and execution of all test instances.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item></list></para>
4712 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4713 </summary>
4714 <param name="testState">The test state, never null</param>
4715 </member>
4716 <member name="M:Gallio.Framework.Pattern.IPatternTestHandler.InitializeTest(Gallio.Framework.Pattern.PatternTestState)">
4717 <summary>
4718 <para> Initializes a test prior to the execution of its instances. </para>
4719 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" />. </para>
4720 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Aborting the test run if any preconditions have not been satisfied or if the test is to be skipped.</item><item>Configuring the test environment in advance of the enumeration and execution of all test instances.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestState.Data" />.</item></list></para>
4721 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4722 </summary>
4723 <param name="testState">The test state, never null</param>
4724 </member>
4725 <member name="T:Gallio.Framework.Pattern.IPatternTestInstanceHandler">
4726 <summary>
4727 <para> A pattern test instance handler provides the logic that implements the various phases of the test instance execution lifecycle. Each method represents the behavior to be performed during a particular phase. </para>
4728 <para> Different actions are permitted during each phase. Consult the documentation the appropriate method if this interface for restrictions. </para>
4729 <para> The phases generally run in the following order. Some phases may be skipped due to exceptions or if there is no work to be done. <list type="bullet"><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.InitializeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.SetUpTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.ExecuteTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DecorateChildTest(Gallio.Framework.Pattern.PatternTestInstanceState,Gallio.Framework.Pattern.PatternTestActions)" /> before each child test</item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.TearDownTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DisposeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item><item><see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.AfterTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /></item></list></para>
4730 </summary>
4731 </member>
4732 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.AfterTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4733 <summary>
4734 <para> Cleans up a completed test instance after its use. </para>
4735 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> because the test step for this instance (if different from the primary step) has terminated. </para>
4736 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Deconfiguring the test environment following the test disposal.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4737 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4738 </summary>
4739 <param name="testInstanceState">The test instance state, never null</param>
4740 </member>
4741 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.BeforeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4742 <summary>
4743 <para> Prepares a newly created test instance state before its use. </para>
4744 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the <see cref="P:Gallio.Framework.Pattern.PatternTestState.PrimaryTestStep" /> because the test step for this instance (if different from the primary step) has not yet started. </para>
4745 <para> If <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep" /> is false then this method has the opportunity to modify the name or add metadata to the brand new <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> that was created for just this test instance. </para>
4746 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding or changing slot values <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.SlotValues" />.</item><item>Configuring the test environment in advance of test initialization.</item><item>Modifying the name or metadata of the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" nolink="true" />, if <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep" nolink="true" /> is false (since the primary test step has already started execution).</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4747 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" nolink="true" /> object in any way UNLESS <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.IsReusingPrimaryTestStep" nolink="true" /> is false.</item><item>Skipping the test instance by throwing an appropriate <see cref="T:Gallio.Framework.SilentTestException" />.</item></list></para>
4748 </summary>
4749 <param name="testInstanceState">The test instance state, never null</param>
4750 </member>
4751 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DecorateChildTest(Gallio.Framework.Pattern.PatternTestInstanceState,Gallio.Framework.Pattern.PatternTestActions)">
4752 <summary>
4753 <para> Decorates the <see cref="T:Gallio.Framework.Pattern.IPatternTestInstanceHandler" /> of a child test before its <see cref="M:Gallio.Framework.Pattern.IPatternTestHandler.BeforeTest(Gallio.Framework.Pattern.PatternTestState)" /> actions have a chance to run. </para>
4754 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Execute" /> lifecycle phase. </para>
4755 <para> This method may apply any number of decorations to the child test's handler by adding actions to the supplied <paramref name="decoratedChildTestActions" /> object. The child test's original handler is unmodified by this operation and the decorated actions are discarded once the child test is finished. </para>
4756 <para> A typical use of this method is to augment the <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.SetUpTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> and <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.TearDownTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)" /> behaviors of the child test with additional contributions provided by the parent. </para>
4757 <para> It is also possible to decorate descendants besides direct children. To do so, decorate the child's <see cref="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DecorateChildTest(Gallio.Framework.Pattern.PatternTestInstanceState,Gallio.Framework.Pattern.PatternTestActions)" /> behavior to perpetuate the decoration down to more deeply nested descendants. This process of recursive decoration may be carried along to whatever depth is required. </para>
4758 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Adding additional actions for the child test to the <paramref name="decoratedChildTestActions" />.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4759 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4760 </summary>
4761 <param name="testInstanceState">The test instance state, never null</param>
4762 <param name="decoratedChildTestActions">The child test's actions to decorate, never null</param>
4763 </member>
4764 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.DisposeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4765 <summary>
4766 <para> Disposes a test instance that is about to terminate. </para>
4767 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Dispose" /> lifecycle phase. </para>
4768 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Deconfiguring the test fixture following test execution.</item><item>Disposing the test fixture instance.</item><item>Disposing other resources.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4769 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4770 </summary>
4771 <param name="testInstanceState">The test instance state, never null</param>
4772 </member>
4773 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.ExecuteTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4774 <summary>
4775 <para> Executes the test instance. </para>
4776 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Execute" /> lifecycle phase. </para>
4777 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Invoking test methods.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4778 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4779 </summary>
4780 <param name="testInstanceState">The test instance state, never null</param>
4781 </member>
4782 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.InitializeTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4783 <summary>
4784 <para> Initializes a test instance that has just started running. </para>
4785 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.Initialize" /> lifecycle phase. </para>
4786 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Creating the test fixture instance and setting <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureType" /> and <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.FixtureInstance" />.</item><item>Configuring the test fixture in advance of test execution.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4787 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4788 </summary>
4789 <param name="testInstanceState">The test instance state, never null</param>
4790 </member>
4791 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.SetUpTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4792 <summary>
4793 <para> Sets up a test instance prior to execution. </para>
4794 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.SetUp" /> lifecycle phase. </para>
4795 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Invoking test setup methods.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4796 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4797 </summary>
4798 <param name="testInstanceState">The test instance state, never null</param>
4799 </member>
4800 <member name="M:Gallio.Framework.Pattern.IPatternTestInstanceHandler.TearDownTestInstance(Gallio.Framework.Pattern.PatternTestInstanceState)">
4801 <summary>
4802 <para> Tears down a test instance following execution. </para>
4803 <para> This method runs in the <see cref="T:Gallio.Framework.Context" /> of the test instance in the <see cref="F:Gallio.Model.LifecyclePhases.TearDown" /> lifecycle phase. </para>
4804 <para> The following actions are typically performed during this phase: <list type="bullet"><item>Invoking test teardown methods.</item><item>Accessing user data via <see cref="P:Gallio.Framework.Pattern.PatternTestInstanceState.Data" />.</item></list></para>
4805 <para> The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution: <list type="bullet"><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTest" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestState" /> object in any way.</item><item>Modifying the <see cref="T:Gallio.Framework.Pattern.PatternTestStep" /> object in any way.</item></list></para>
4806 </summary>
4807 <param name="testInstanceState">The test instance state, never null</param>
4808 </member>
4809 <member name="T:Gallio.Framework.Pattern.PatternTestPopulator">
4810 <summary>A delegate used to lazily populate the children of an <see cref="T:Gallio.Framework.Pattern.PatternTest" />.</summary>
4811 <param name="recurse">If true, the populator should recursively populate all of its newly populated test elements in addition to itself</param>
4812 </member>
4813 <member name="T:Gallio.Framework.Utilities.LogStreamLogger">
4814 <summary>A <see cref="T:Gallio.Runtime.Logging.ILogger" /> implementation that logs messages to the specified <see cref="T:Gallio.Framework.LogStreamWriter" />. This can be used to write log messages to the test execution log. This class cannot be inherited.</summary>
4815 </member>
4816 <member name="T:Gallio.Framework.Utilities.SampleRunner">
4817 <summary>
4818 <para> Runs sample test cases within an embedded copy of the test runner and provides access to the resulting test report. Logs debug output from the embedded test runner while the sample tests run. </para>
4819 <para> This utility class is intended to help write integration tests for test framework features. </para>
4820 </summary>
4821 </member>
4822 <member name="P:Gallio.Framework.Utilities.SampleRunner.PackageConfig">
4823 <summary>
4824 <para> Gets the package configuration object for the test run. </para>
4825 <para> The returned object may be modified prior to running the tests to configure various parameters of the test run. </para>
4826 </summary>
4827 </member>
4828 <member name="P:Gallio.Framework.Utilities.SampleRunner.Report">
4829 <summary>Gets the test report that was produced by the test run.</summary>
4830 </member>
4831 <member name="P:Gallio.Framework.Utilities.SampleRunner.Result">
4832 <summary>Gets the result of the test run.</summary>
4833 </member>
4834 <member name="M:Gallio.Framework.Utilities.SampleRunner.AddAssembly(System.Reflection.Assembly)">
4835 <summary>Adds a test assembly to the package configuration, if not already added.</summary>
4836 <param name="assembly">The assembly to add</param>
4837 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
4838 </member>
4839 <member name="M:Gallio.Framework.Utilities.SampleRunner.AddFilter(Gallio.Model.Filters.Filter{Gallio.Model.ITest})">
4840 <summary>Adds a test filter to the combined list of filters that select which tests to include in the run, if not already added.</summary>
4841 <param name="filter">The filter to add</param>
4842 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="filter" /> is null</exception>
4843 </member>
4844 <member name="M:Gallio.Framework.Utilities.SampleRunner.AddFixture(System.Type)">
4845 <summary>Adds a test fixture type to the list of filters, and automatically adds its containing test assembly to the package configuration, if not already added.</summary>
4846 <param name="fixtureType">The test fixture type to add</param>
4847 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="fixtureType" /> is null</exception>
4848 </member>
4849 <member name="M:Gallio.Framework.Utilities.SampleRunner.AddMethod(System.Type,System.String)">
4850 <summary>Adds a test method to the list of filters, and automatically adds its containing test assembly to the package configuration, if not already added.</summary>
4851 <param name="fixtureType">The test fixture type</param>
4852 <param name="methodName">The test method name</param>
4853 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="fixtureType" /> or <paramref name="methodName" /> is null</exception>
4854 </member>
4855 <member name="M:Gallio.Framework.Utilities.SampleRunner.Explore">
4856 <summary>Explores the tests but does not run them.</summary>
4857 </member>
4858 <member name="M:Gallio.Framework.Utilities.SampleRunner.GetPrimaryTestStepRun(Gallio.Reflection.CodeReference)">
4859 <summary>Gets the primary test step run of a test with the given code reference. If there are multiple primary steps, returns the first one found.</summary>
4860 <param name="codeReference">The code reference of the test</param>
4861 <returns>The first test step run, or null if not found</returns>
4862 </member>
4863 <member name="M:Gallio.Framework.Utilities.SampleRunner.GetTestCaseRunsWithin(Gallio.Reflection.CodeReference)">
4864 <summary>Gets all test step runs that represent test cases within a test with the specified code reference.</summary>
4865 <param name="codeReference">The code reference of the test</param>
4866 <returns>The first test step run, or null if not found</returns>
4867 </member>
4868 <member name="M:Gallio.Framework.Utilities.SampleRunner.GetTestData(Gallio.Reflection.CodeReference)">
4869 <summary>Gets information about the test with the given code reference.</summary>
4870 <param name="codeReference">The code reference of the test</param>
4871 <returns>The test data, or null if not found</returns>
4872 </member>
4873 <member name="M:Gallio.Framework.Utilities.SampleRunner.Run">
4874 <summary>Runs the tests.</summary>
4875 </member>
4876 <member name="T:Gallio.Model.AggregateTestExplorer">
4877 <summary>An aggregate test explorer combines multiple test explorers from different sources to incorporate all of their contributions.</summary>
4878 </member>
4879 <member name="M:Gallio.Model.AggregateTestExplorer.AddTestExplorer(Gallio.Model.ITestExplorer)">
4880 <summary>Adds a test explorer to the aggregate.</summary>
4881 <param name="explorer">The explorer to add</param>
4882 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="explorer" /> is null</exception>
4883 <exception cref="T:System.ArgumentException">Thrown if <paramref name="explorer" /> has a different <see cref="T:Gallio.Model.TestModel" /></exception>
4884 </member>
4885 <member name="M:Gallio.Model.AggregateTestExplorer.ExploreAssembly(Gallio.Reflection.IAssemblyInfo,System.Action{Gallio.Model.ITest})">
4886 <summary>Explores the tests defined by an assembly and links them into the <see cref="P:Gallio.Model.ITestExplorer.TestModel" />.</summary>
4887 <param name="assembly">The assembly</param>
4888 <param name="consumer">An action to perform on each assembly-level test explored, or null if no action is required</param>
4889 </member>
4890 <member name="M:Gallio.Model.AggregateTestExplorer.ExploreType(Gallio.Reflection.ITypeInfo,System.Action{Gallio.Model.ITest})">
4891 <summary>Explores the tests defined by a type and links them into the <see cref="P:Gallio.Model.ITestExplorer.TestModel" />.</summary>
4892 <param name="type">The type</param>
4893 <param name="consumer">An action to perform on each type-level test explored, or null if no action is required</param>
4894 </member>
4895 <member name="M:Gallio.Model.AggregateTestExplorer.FinishModel">
4896 <summary>Performs any final actions after exploration has taken place to ensure that we have a complete and internally consistent model.</summary>
4897 </member>
4898 <member name="M:Gallio.Model.AggregateTestExplorer.IsTest(Gallio.Reflection.ICodeElementInfo)">
4899 <summary>Returns true if the code element represents a test.</summary>
4900 <param name="element">The element</param>
4901 <returns>True if the element represents a test</returns>
4902 </member>
4903 <member name="T:Gallio.Model.Annotation">
4904 <summary>An annotation associates a message with a source code location to inform the user about a problem.</summary>
4905 </member>
4906 <member name="P:Gallio.Model.Annotation.CodeElement">
4907 <summary>Gets the code element associated with the annotation.</summary>
4908 </member>
4909 <member name="P:Gallio.Model.Annotation.Details">
4910 <summary>Gets additional details such as exception text, or null if none.</summary>
4911 </member>
4912 <member name="P:Gallio.Model.Annotation.Message">
4913 <summary>Gets the annotation message.</summary>
4914 </member>
4915 <member name="P:Gallio.Model.Annotation.Type">
4916 <summary>Gets the annotation type.</summary>
4917 </member>
4918 <member name="T:Gallio.Model.BaseInfo">
4919 <summary>Abstract base class for read-only reflection model objects. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4920 </member>
4921 <member name="M:Gallio.Model.BaseInfo.Equals(System.Object)">
4922 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
4923 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
4924 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
4925 </member>
4926 <member name="M:Gallio.Model.BaseInfo.Equals(Gallio.Model.BaseInfo)">
4927 <summary>Compares this object's source for equality with the other's source.</summary>
4928 <param name="other">The other object</param>
4929 <returns>True if the objects are equal</returns>
4930 </member>
4931 <member name="M:Gallio.Model.BaseInfo.GetHashCode">
4932 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
4933 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
4934 </member>
4935 <member name="M:Gallio.Model.BaseInfo.ToString">
4936 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
4937 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
4938 </member>
4939 <member name="M:Gallio.Model.BaseInfo.op_Equality(Gallio.Model.BaseInfo,Gallio.Model.BaseInfo)">
4940 <summary>Compares two objects for equality.</summary>
4941 <returns>True if they are equal</returns>
4942 </member>
4943 <member name="M:Gallio.Model.BaseInfo.op_Inequality(Gallio.Model.BaseInfo,Gallio.Model.BaseInfo)">
4944 <summary>Compares two objects for inequality.</summary>
4945 <returns>True if they are not equal</returns>
4946 </member>
4947 <member name="T:Gallio.Model.BaseInfoList`2">
4948 <summary>The abstract base class of a list that wraps model objects with their corresponding reflection types derived from <see cref="T:Gallio.Model.BaseInfo" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
4949 <typeparam name="TModel">The model object type</typeparam>
4950 <typeparam name="TInfo">The reflection type</typeparam>
4951 </member>
4952 <member name="P:Gallio.Model.BaseInfoList`2.Count">
4953 <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
4954 <value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
4955 </member>
4956 <member name="P:Gallio.Model.BaseInfoList`2.IsReadOnly">
4957 <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
4958 <value>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</value>
4959 </member>
4960 <member name="M:Gallio.Model.BaseInfoList`2.AsModelList">
4961 <summary>Returns a wrapper for the list of elements using the model object's type instead of the reflection object's type.</summary>
4962 <returns>The model list</returns>
4963 </member>
4964 <member name="M:Gallio.Model.BaseInfoList`2.GetEnumerator">
4965 <summary>Returns an enumerator that iterates through the collection.</summary>
4966 <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
4967 </member>
4968 <member name="M:Gallio.Model.BaseInfoList`2.Unwrap(`1)">
4969 <summary>Unwraps the specified output item.</summary>
4970 <param name="infoItem">The output item</param>
4971 <returns>The corresponding input item or null if the output item is a valid wrapper</returns>
4972 </member>
4973 <member name="M:Gallio.Model.BaseInfoList`2.Wrap(`0)">
4974 <summary>Wraps the specified input item.</summary>
4975 <param name="inputItem">The input item</param>
4976 <returns>The output item</returns>
4977 </member>
4978 <member name="T:Gallio.Model.BaseTest">
4979 <summary>Base implementation of <see cref="T:Gallio.Model.ITest" />.</summary>
4980 </member>
4981 <member name="P:Gallio.Model.BaseTest.BaselineLocalId">
4982 <summary>Gets or sets an initial approximation of a <see cref="P:Gallio.Model.BaseTest.LocalId" />, or null if none. The value returned by this method will be checked for uniqueness and amended as necessary to produce a truly unique <see cref="P:Gallio.Model.BaseTest.LocalId" nolink="true" />.</summary>
4983 <value>The local id</value>
4984 </member>
4985 <member name="P:Gallio.Model.BaseTest.Children">
4986 <summary>Gets the children of this test.</summary>
4987 </member>
4988 <member name="P:Gallio.Model.BaseTest.Dependencies">
4989 <summary>Gets the list of the dependencies of this test.</summary>
4990 </member>
4991 <member name="P:Gallio.Model.BaseTest.FullName">
4992 <summary>
4993 <para> Gets the full name of the test. The full name is derived by concatenating the <see cref="P:Gallio.Model.ITest.FullName" /> of the <see cref="P:Gallio.Model.ITest.Parent" /> followed by a slash ('/') followed by the <see cref="P:Gallio.Model.ITestComponent.Name" /> of this test. </para>
4994 <para> The full name of the root test is empty. </para>
4995 </summary>
4996 </member>
4997 <member name="P:Gallio.Model.BaseTest.Id">
4998 <summary>Gets the stable unique identifier of the component.</summary>
4999 </member>
5000 <member name="P:Gallio.Model.BaseTest.IsTestCase">
5001 <summary>Gets whether this test represents an individual test case as opposed to a test container such as a fixture or suite. The value of this property can be used by the test harness to avoid processing containers that have no test cases. It can also be used by the reporting infrastructure to constrain output statistics to test cases only.</summary>
5002 </member>
5003 <member name="P:Gallio.Model.BaseTest.Kind">
5004 <summary>Gets or sets the value of the <see cref="F:Gallio.Model.MetadataKeys.TestKind" /> metadata entry. (This is a convenience method.)</summary>
5005 <value>One of the <see cref="T:Gallio.Model.TestKinds" /> constants.</value>
5006 </member>
5007 <member name="P:Gallio.Model.BaseTest.LocalId">
5008 <summary>
5009 <para> Gets a locally unique identifier for this test that satisfies the following conditions: </para>
5010 <list type="bullet">
5011 <item>The identifier is unique among all siblings of this test belonging to the same parent.</item>
5012 <item>The identifier is likely to be stable across multiple sessions including changes and recompilations of the test projects.</item>
5013 <item>The identifier is non-null.</item>
5014 </list>
5015 <para> The local identifier may be the same as the test's name. However since the name is intended for display to end-users, it may contain irrelevant details (such as version numbers) that would reduce its long-term stability. In that case, a different local identifier should be selected such as one based on the test's <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> and an ordering condition among siblings to guarantee uniqueness. </para>
5016 </summary>
5017 <value>The locally unique identifier</value>
5018 </member>
5019 <member name="P:Gallio.Model.BaseTest.Parameters">
5020 <summary>Gets the parameters of this test. Each parameter must have a unique name. The order in which the parameters appear is not significant.</summary>
5021 </member>
5022 <member name="P:Gallio.Model.BaseTest.Parent">
5023 <summary>Gets or sets the parent of this test, or null if this is the root test.</summary>
5024 </member>
5025 <member name="M:Gallio.Model.BaseTest.AddChild(Gallio.Model.ITest)">
5026 <summary>Adds a child test and sets its <see cref="P:Gallio.Model.ITest.Parent" /> property.</summary>
5027 <param name="test">The test to add as a child</param>
5028 </member>
5029 <member name="M:Gallio.Model.BaseTest.AddDependency(Gallio.Model.ITest)">
5030 <summary>Adds a test dependency.</summary>
5031 <param name="test">The test to add as a dependency</param>
5032 </member>
5033 <member name="M:Gallio.Model.BaseTest.AddParameter(Gallio.Model.ITestParameter)">
5034 <summary>Adds a test parameter and sets its <see cref="P:Gallio.Model.ITestParameter.Owner" /> property.</summary>
5035 <param name="parameter">The test parameter to add</param>
5036 </member>
5037 <member name="M:Gallio.Model.BaseTest.ToString">
5038 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
5039 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
5040 </member>
5041 <member name="T:Gallio.Model.BaseTestComponent">
5042 <summary>Base implementation of <see cref="T:Gallio.Model.ITestComponent" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5043 </member>
5044 <member name="P:Gallio.Model.BaseTestComponent.CodeElement">
5045 <summary>Gets a reference to the point of definition of this test component in the code, or null if unknown.</summary>
5046 </member>
5047 <member name="P:Gallio.Model.BaseTestComponent.Metadata">
5048 <summary>Gets the metadata of the component.</summary>
5049 </member>
5050 <member name="P:Gallio.Model.BaseTestComponent.Name">
5051 <summary>Gets the name of the component.</summary>
5052 </member>
5053 <member name="M:Gallio.Model.BaseTestComponent.ToString">
5054 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
5055 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
5056 </member>
5057 <member name="T:Gallio.Model.BaseTestExplorer">
5058 <summary>A base test explorer that does nothing. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5059 </member>
5060 <member name="P:Gallio.Model.BaseTestExplorer.TestModel">
5061 <summary>Gets the test model that is incrementally populated by the test explorer as it explores tests.</summary>
5062 </member>
5063 <member name="T:Gallio.Model.BaseTestFramework">
5064 <summary>Abstract base class for test framework implementations. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5065 </member>
5066 <member name="M:Gallio.Model.BaseTestFramework.ConfigureTestDomain(Gallio.Model.TestDomainSetup)">
5067 <summary>Applies additional contributions to a test domain, if desired.</summary>
5068 <param name="testDomainSetup">The test domain setup to modify</param>
5069 </member>
5070 <member name="T:Gallio.Model.BaseTestParameter">
5071 <summary>Base implementation of <see cref="T:Gallio.Model.ITestParameter" />.</summary>
5072 </member>
5073 <member name="P:Gallio.Model.BaseTestParameter.Id">
5074 <summary>Gets the stable unique identifier of the component.</summary>
5075 </member>
5076 <member name="P:Gallio.Model.BaseTestParameter.Owner">
5077 <summary>Gets or sets the test that owns this parameter, or null if this parameter does not yet have an owner.</summary>
5078 </member>
5079 <member name="T:Gallio.Model.BaseTestStep">
5080 <summary>Base implementation of <see cref="T:Gallio.Model.ITestStep" />.</summary>
5081 </member>
5082 <member name="P:Gallio.Model.BaseTestStep.FullName">
5083 <summary>
5084 <para> Gets the full name of the step. </para>
5085 <para> The full name is derived by concatenating the <see cref="P:Gallio.Model.ITestStep.FullName" /> of the <see cref="P:Gallio.Model.ITestStep.Parent" /> followed by a slash ('/') followed by the <see cref="P:Gallio.Model.ITestComponent.Name" /> of this test step. </para>
5086 <para> The full name of the root test step is empty. </para>
5087 <para> Examples: <list type="bullet"><item><term>""</term><description>The root step</description></item><item><term>"SomeAssembly/SomeFixture/SomeTest"</term><description>The step corresponding to SomeTest</description></item><item><term>"SomeAssembly/SomeFixture/SomeTest/ChildStep"</term><description>A child step of SomeTest</description></item></list></para>
5088 </summary>
5089 </member>
5090 <member name="P:Gallio.Model.BaseTestStep.Id">
5091 <summary>Gets the stable unique identifier of the component.</summary>
5092 </member>
5093 <member name="P:Gallio.Model.BaseTestStep.IsDynamic">
5094 <summary>
5095 <para> Returns true if the test step is dynamic. A dynamic test step is one whose execution is governed by parameters that are not known a priori. </para>
5096 <para> For example, a primary test step is generally not dynamic because its existence usually only depends on statically known information derived from the test model. However, a child test step created at runtime by a data binding process might be considered dynamic if the data items that were used may change between test runs even when the static structure of the test code remains the same. So a test step that uses random data items or that owes its existence to processes that are not entirely under the control of the test framework should be flagged as dynamic. </para>
5097 <para> It can be useful to distinguish between static and dynamic test steps when correlating results across test runs. Dynamic test steps are more likely to change in dramatic ways between test runs than static test steps. </para>
5098 </summary>
5099 </member>
5100 <member name="P:Gallio.Model.BaseTestStep.IsPrimary">
5101 <summary>
5102 <para> Returns true if the test step is the top node of a hierarchy of test steps that are all associated with the same test. In the case where a single test step is associated with a test, then it is the primary test step. There may be multiple primary test steps of the same test if they are not directly related by ancestry (ie. one does not contain the other). </para>
5103 <para> A non-primary test step is known as a derived test step. </para>
5104 </summary>
5105 </member>
5106 <member name="P:Gallio.Model.BaseTestStep.IsTestCase">
5107 <summary>Returns true if the test step represents a distinct test case. A test case is typically a leaf of the test step hierarchy.</summary>
5108 </member>
5109 <member name="P:Gallio.Model.BaseTestStep.Parent">
5110 <summary>Gets the step that contains this one, or null if this instance represents the root step of the test step tree.</summary>
5111 </member>
5112 <member name="P:Gallio.Model.BaseTestStep.Test">
5113 <summary>Gets the test to which this step belongs.</summary>
5114 </member>
5115 <member name="M:Gallio.Model.BaseTestStep.ToString">
5116 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
5117 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
5118 </member>
5119 <member name="T:Gallio.Model.DefaultTestPackageExplorerFactory">
5120 <summary>Default implementation of a test package explorer factory that aggregates over all registered frameworks.</summary>
5121 </member>
5122 <member name="M:Gallio.Model.DefaultTestPackageExplorerFactory.CreateTestExplorer(Gallio.Model.TestPackageConfig,Gallio.Reflection.IReflectionPolicy)">
5123 <summary>Creates a test explorer with the specified reflection policy.</summary>
5124 <param name="testPackageConfig">The test package configuration</param>
5125 <param name="reflectionPolicy">The reflection policy</param>
5126 <returns>The test explorer</returns>
5127 </member>
5128 <member name="T:Gallio.Model.LifecyclePhases">
5129 <summary>Defines the names of common test step lifecycle phases. Custom phases may also be defined. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5130 </member>
5131 <member name="F:Gallio.Model.LifecyclePhases.Dispose">
5132 <summary>The test step's context is being disposed. This field is constant and read-only.</summary>
5133 </member>
5134 <member name="F:Gallio.Model.LifecyclePhases.Execute">
5135 <summary>The test step is executing its main body. This field is constant and read-only.</summary>
5136 </member>
5137 <member name="F:Gallio.Model.LifecyclePhases.Finishing">
5138 <summary>The test step is finishing. This field is constant and read-only.</summary>
5139 </member>
5140 <member name="F:Gallio.Model.LifecyclePhases.Initialize">
5141 <summary>The test is being initialize. (Fixture construction, etc.) This field is constant and read-only.</summary>
5142 </member>
5143 <member name="F:Gallio.Model.LifecyclePhases.SetUp">
5144 <summary>The test step is being set up. This field is constant and read-only.</summary>
5145 </member>
5146 <member name="F:Gallio.Model.LifecyclePhases.Starting">
5147 <summary>The test step is starting. This field is constant and read-only.</summary>
5148 </member>
5149 <member name="F:Gallio.Model.LifecyclePhases.TearDown">
5150 <summary>The test step is being torn down. This field is constant and read-only.</summary>
5151 </member>
5152 <member name="T:Gallio.Model.MetadataKeys">
5153 <summary>Provides common metadata keys. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5154 </member>
5155 <member name="F:Gallio.Model.MetadataKeys.AuthorEmail">
5156 <summary>The metadata key for the author's email. This field is constant and read-only.</summary>
5157 </member>
5158 <member name="F:Gallio.Model.MetadataKeys.AuthorHomepage">
5159 <summary>The metadata key for the author's homepage. This field is constant and read-only.</summary>
5160 </member>
5161 <member name="F:Gallio.Model.MetadataKeys.AuthorName">
5162 <summary>The metadata key for the author's name. This field is constant and read-only.</summary>
5163 </member>
5164 <member name="F:Gallio.Model.MetadataKeys.CategoryName">
5165 <summary>The metadata key for the name of a category to which a test belongs. This field is constant and read-only.</summary>
5166 </member>
5167 <member name="F:Gallio.Model.MetadataKeys.CodeBase">
5168 <summary>The matadata key for the location of an assembly as a local file path or as a Uri. This field is constant and read-only.</summary>
5169 </member>
5170 <member name="F:Gallio.Model.MetadataKeys.Company">
5171 <summary>The metadata key for the name of the company associated with a test. This field is constant and read-only.</summary>
5172 </member>
5173 <member name="F:Gallio.Model.MetadataKeys.Configuration">
5174 <summary>The metadata key for build/release configuration information associated with a test. It describes the target environment or usage for the test. This field is constant and read-only.</summary>
5175 </member>
5176 <member name="F:Gallio.Model.MetadataKeys.Copyright">
5177 <summary>The metadata key for a copyright associated with a test. This field is constant and read-only.</summary>
5178 </member>
5179 <member name="F:Gallio.Model.MetadataKeys.DataLocation">
5180 <summary>The metadata key for specifying the origin of data used by a test. This field is constant and read-only.</summary>
5181 </member>
5182 <member name="F:Gallio.Model.MetadataKeys.Description">
5183 <summary>The metadata key for the description of a test component. This field is constant and read-only.</summary>
5184 </member>
5185 <member name="F:Gallio.Model.MetadataKeys.ExpectedException">
5186 <summary>The metadata key for the expected exception type which should be the name, full name or assembly-qualified name of the expected exception type. This field is constant and read-only.</summary>
5187 </member>
5188 <member name="F:Gallio.Model.MetadataKeys.ExplicitReason">
5189 <summary>The metadata key that describes the reason that a test should be run explicitly. (Tests may of course be marked explicit without a declared reason.) This field is constant and read-only.</summary>
5190 </member>
5191 <member name="F:Gallio.Model.MetadataKeys.FileVersion">
5192 <summary>The metadata key for a file version number associated with a test. This field is constant and read-only.</summary>
5193 </member>
5194 <member name="F:Gallio.Model.MetadataKeys.IgnoreReason">
5195 <summary>The metadata key that describes the reason that a test is being ignored. (Tests may of course be ignored without a declared reason.) This field is constant and read-only.</summary>
5196 </member>
5197 <member name="F:Gallio.Model.MetadataKeys.Importance">
5198 <summary>The metadata key for the importance of a test component as the string representation of one of the <c>TestImportance</c> constants in MbUnit or its equivalent. This field is constant and read-only.</summary>
5199 </member>
5200 <member name="F:Gallio.Model.MetadataKeys.InformationalVersion">
5201 <summary>The metadata key for an informational version number associated with a test. This field is constant and read-only.</summary>
5202 </member>
5203 <member name="F:Gallio.Model.MetadataKeys.PendingReason">
5204 <summary>The metadata key that describes the reason that a test is pending. (Tests may of course be marked pending without a declared reason.) This field is constant and read-only.</summary>
5205 </member>
5206 <member name="F:Gallio.Model.MetadataKeys.Product">
5207 <summary>The metadata key for a product associated with a test. This field is constant and read-only.</summary>
5208 </member>
5209 <member name="F:Gallio.Model.MetadataKeys.TestKind">
5210 <summary>The metadata key used to describe the kind of a test as the string representation of one of the <see cref="T:Gallio.Model.TestKinds" /> constants. This field is constant and read-only.</summary>
5211 </member>
5212 <member name="F:Gallio.Model.MetadataKeys.TestsOn">
5213 <summary>The metadata key for the name of the type being tested. The associated value should be the full name of the type from <see cref="P:System.Type.FullName" /> or the assembly qualified name of the type from <see cref="P:System.Type.AssemblyQualifiedName" />. This field is constant and read-only.</summary>
5214 </member>
5215 <member name="F:Gallio.Model.MetadataKeys.Title">
5216 <summary>The metadata key for a title associated with a test. This field is constant and read-only.</summary>
5217 </member>
5218 <member name="F:Gallio.Model.MetadataKeys.Trademark">
5219 <summary>The metadata key for a trademark associated with a test. This field is constant and read-only.</summary>
5220 </member>
5221 <member name="F:Gallio.Model.MetadataKeys.Version">
5222 <summary>The metadata key for a version number associated with a test. This field is constant and read-only.</summary>
5223 </member>
5224 <member name="F:Gallio.Model.MetadataKeys.XmlDocumentation">
5225 <summary>The metadata key for the XML documentation of the test derived from XML code documentation comments. This field is constant and read-only.</summary>
5226 </member>
5227 <member name="T:Gallio.Model.MetadataMap">
5228 <summary>A metadata map is a multi-valued dictionary of metadata keys and values associated with a model element. Metadata is used to communicate declarative properties of the model in an extensible manner. This class cannot be inherited.</summary>
5229 </member>
5230 <member name="P:Gallio.Model.MetadataMap.Count">
5231 <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
5232 <value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
5233 </member>
5234 <member name="P:Gallio.Model.MetadataMap.IsReadOnly">
5235 <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
5236 <value>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</value>
5237 </member>
5238 <member name="P:Gallio.Model.MetadataMap.Keys">
5239 <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
5240 <value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
5241 </member>
5242 <member name="P:Gallio.Model.MetadataMap.Pairs">
5243 <summary>Gets the contents of the multi-map as an enumeration of pairs.</summary>
5244 </member>
5245 <member name="P:Gallio.Model.MetadataMap.Values">
5246 <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
5247 <value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
5248 </member>
5249 <member name="M:Gallio.Model.MetadataMap.AsReadOnly">
5250 <summary>Creates a read-only view of the metadata map.</summary>
5251 <returns>The read-only view</returns>
5252 </member>
5253 <member name="M:Gallio.Model.MetadataMap.Clear">
5254 <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
5255 </member>
5256 <member name="M:Gallio.Model.MetadataMap.Copy">
5257 <summary>Creates a copy of the metadata map.</summary>
5258 <returns>The copy</returns>
5259 </member>
5260 <member name="M:Gallio.Model.MetadataMap.GetEnumerator">
5261 <summary>Returns an enumerator that iterates through the collection.</summary>
5262 <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
5263 </member>
5264 <member name="M:Gallio.Model.MetadataMap.GetValue(System.String)">
5265 <summary>Gets the value associated with the metadata key. If there are multiple values, returns only the first one.</summary>
5266 <param name="key">The key</param>
5267 <returns>The value, or null if none</returns>
5268 </member>
5269 <member name="M:Gallio.Model.MetadataMap.SetValue(System.String,System.String)">
5270 <summary>Sets the value associated with the metadata key. Removes all values previously associated with that key.</summary>
5271 <param name="key">The key</param>
5272 <param name="value">The new value, or null to remove the value</param>
5273 </member>
5274 <member name="T:Gallio.Model.ModelException">
5275 <summary>The type of exception thrown when test model and test framework operations fail.</summary>
5276 </member>
5277 <member name="T:Gallio.Model.ModelUtils">
5278 <summary>Provides utility functions for manipulating the object model. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5279 </member>
5280 <member name="M:Gallio.Model.ModelUtils.PopulateMetadataFromAssembly(Gallio.Reflection.IAssemblyInfo,Gallio.Model.MetadataMap)">
5281 <summary>
5282 <para> Populates the provided metadata map with asembly-level metadata derived from custom attributes. </para>
5283 <para> Currently recognized attributes: <list type="bullet"><item><see cref="T:System.Reflection.AssemblyCompanyAttribute" /></item><item><see cref="T:System.Reflection.AssemblyConfigurationAttribute" /></item><item><see cref="T:System.Reflection.AssemblyCopyrightAttribute" /></item><item><see cref="T:System.Reflection.AssemblyDescriptionAttribute" /></item><item><see cref="T:System.Reflection.AssemblyFileVersionAttribute" /></item><item><see cref="T:System.Reflection.AssemblyInformationalVersionAttribute" /></item><item><see cref="T:System.Reflection.AssemblyProductAttribute" /></item><item><see cref="T:System.Reflection.AssemblyTitleAttribute" /></item><item><see cref="T:System.Reflection.AssemblyTrademarkAttribute" /></item><item><see cref="T:System.Reflection.AssemblyVersionAttribute" /></item></list></para>
5284 </summary>
5285 <param name="assembly">The assembly</param>
5286 <param name="metadataMap">The metadata map</param>
5287 </member>
5288 <member name="T:Gallio.Model.NullTestExplorer">
5289 <summary>A null test explorer. This class cannot be inherited.</summary>
5290 </member>
5291 <member name="T:Gallio.Model.RootTest">
5292 <summary>The root test in the test tree.</summary>
5293 </member>
5294 <member name="P:Gallio.Model.RootTest.TestControllerFactory">
5295 <summary>Gets a <see cref="T:Gallio.Model.Execution.ITestController" /><see cref="T:Gallio.Func`1" /> to run this tes and all of its children. Returns null if this test is merely a container for other tests or if it otherwise does not require or provide its own controller.</summary>
5296 <value>The test controller factory, or null if this test cannot produce a controller (and consequently is not a master test according to the definition above)</value>
5297 </member>
5298 <member name="T:Gallio.Model.TestComponentInfo">
5299 <summary>A read-only implementation of <see cref="T:Gallio.Model.ITestComponent" /> for reflection. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5300 </member>
5301 <member name="P:Gallio.Model.TestComponentInfo.CodeElement">
5302 <summary>Gets a reference to the point of definition of this test component in the code, or null if unknown.</summary>
5303 </member>
5304 <member name="P:Gallio.Model.TestComponentInfo.Id">
5305 <summary>Gets the stable unique identifier of the component.</summary>
5306 </member>
5307 <member name="P:Gallio.Model.TestComponentInfo.Metadata">
5308 <summary>Gets the metadata of the component.</summary>
5309 </member>
5310 <member name="P:Gallio.Model.TestComponentInfo.Name">
5311 <summary>Gets the name of the component.</summary>
5312 </member>
5313 <member name="T:Gallio.Model.TestDomainSetup">
5314 <summary>Specifies setup options for a test domain. A test domain represents an isolated host environment within which a subset of a test package will be loaded, explored and run.</summary>
5315 </member>
5316 <member name="P:Gallio.Model.TestDomainSetup.TestPackageConfig">
5317 <summary>Gets or sets the test package configuration to load in the test domain.</summary>
5318 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
5319 </member>
5320 <member name="T:Gallio.Model.TestExplorationOptions">
5321 <summary>Provides options that control how test exploration occurs.</summary>
5322 </member>
5323 <member name="M:Gallio.Model.TestExplorationOptions.Copy">
5324 <summary>Creates a copy of the options.</summary>
5325 <returns>The copy</returns>
5326 </member>
5327 <member name="T:Gallio.Model.TestInfo">
5328 <summary>A read-only implementation of <see cref="T:Gallio.Model.ITest" /> for reflection. This class cannot be inherited.</summary>
5329 </member>
5330 <member name="P:Gallio.Model.TestInfo.FullName">
5331 <summary>
5332 <para> Gets the full name of the test. The full name is derived by concatenating the <see cref="P:Gallio.Model.ITest.FullName" /> of the <see cref="P:Gallio.Model.ITest.Parent" /> followed by a slash ('/') followed by the <see cref="P:Gallio.Model.ITestComponent.Name" /> of this test. </para>
5333 <para> The full name of the root test is empty. </para>
5334 </summary>
5335 </member>
5336 <member name="P:Gallio.Model.TestInfo.IsTestCase">
5337 <summary>Gets whether this test represents an individual test case as opposed to a test container such as a fixture or suite. The value of this property can be used by the test harness to avoid processing containers that have no test cases. It can also be used by the reporting infrastructure to constrain output statistics to test cases only.</summary>
5338 </member>
5339 <member name="P:Gallio.Model.TestInfo.LocalId">
5340 <summary>
5341 <para> Gets a locally unique identifier for this test that satisfies the following conditions: </para>
5342 <list type="bullet">
5343 <item>The identifier is unique among all siblings of this test belonging to the same parent.</item>
5344 <item>The identifier is likely to be stable across multiple sessions including changes and recompilations of the test projects.</item>
5345 <item>The identifier is non-null.</item>
5346 </list>
5347 <para> The local identifier may be the same as the test's name. However since the name is intended for display to end-users, it may contain irrelevant details (such as version numbers) that would reduce its long-term stability. In that case, a different local identifier should be selected such as one based on the test's <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> and an ordering condition among siblings to guarantee uniqueness. </para>
5348 </summary>
5349 <value>The locally unique identifier</value>
5350 </member>
5351 <member name="T:Gallio.Model.TestInfoList">
5352 <summary>Wraps a list of <see cref="T:Gallio.Model.ITest" /> for reflection. This class cannot be inherited.</summary>
5353 </member>
5354 <member name="T:Gallio.Model.TestKinds">
5355 <summary>Specifies the kind of a test component. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5356 </member>
5357 <member name="F:Gallio.Model.TestKinds.Assembly">
5358 <summary>The test represents the tests contained in a single test assembly. This field is constant and read-only.</summary>
5359 </member>
5360 <member name="F:Gallio.Model.TestKinds.Custom">
5361 <summary>The test is of some other unspecified kind. This field is constant and read-only.</summary>
5362 </member>
5363 <member name="F:Gallio.Model.TestKinds.Error">
5364 <summary>The test is an error placeholder used in place of a test when an error occurs during test enumeration. This field is constant and read-only.</summary>
5365 </member>
5366 <member name="F:Gallio.Model.TestKinds.Fixture">
5367 <summary>The test represents a test fixture. This field is constant and read-only.</summary>
5368 </member>
5369 <member name="F:Gallio.Model.TestKinds.Framework">
5370 <summary>The test represents a grouping of all contributions offered by a given test framework. This field is constant and read-only.</summary>
5371 </member>
5372 <member name="F:Gallio.Model.TestKinds.Group">
5373 <summary>The test represents a grouping of tests for descriptive purposes. This field is constant and read-only.</summary>
5374 </member>
5375 <member name="F:Gallio.Model.TestKinds.Namespace">
5376 <summary>The test represents the tests contained in a single test namespace. This field is constant and read-only.</summary>
5377 </member>
5378 <member name="F:Gallio.Model.TestKinds.Root">
5379 <summary>The test represents the root of the test tree. This field is constant and read-only.</summary>
5380 </member>
5381 <member name="F:Gallio.Model.TestKinds.Suite">
5382 <summary>The test represents a test suite. This field is constant and read-only.</summary>
5383 </member>
5384 <member name="F:Gallio.Model.TestKinds.Test">
5385 <summary>The test represents a test case. This field is constant and read-only.</summary>
5386 </member>
5387 <member name="T:Gallio.Model.TestModel">
5388 <summary>The test model provides access to the contents of the test tree generated from a test package by the test enumeration process. This class cannot be inherited.</summary>
5389 </member>
5390 <member name="P:Gallio.Model.TestModel.AllTests">
5391 <summary>Recursively enumerates all tests including the root test.</summary>
5392 </member>
5393 <member name="P:Gallio.Model.TestModel.Annotations">
5394 <summary>
5395 <para> Gets the read-only list of annotations. </para>
5396 <para> An annotation is an informational, warning or error message associated with a code element in the test model. </para>
5397 <para> Test frameworks publish annotations on the test model that describe usage errors or warnings about problems that may prevent tests from running, such as using a custom attribute incorrectly. They may also emit informational annotations to draw the user's attention, such as by flagging ignored or pending tests. </para>
5398 <para> The presentation of annotations is undefined. A command-line test runner might simply log them whereas an IDE plugin could generate new task items to incorporate them into the UI. </para>
5399 </summary>
5400 </member>
5401 <member name="P:Gallio.Model.TestModel.RootTest">
5402 <summary>Gets the root test in the model.</summary>
5403 </member>
5404 <member name="P:Gallio.Model.TestModel.TestPackage">
5405 <summary>Gets the test package.</summary>
5406 </member>
5407 <member name="M:Gallio.Model.TestModel.AddAnnotation(Gallio.Model.Annotation)">
5408 <summary>Adds an annotation.</summary>
5409 <param name="annotation">The annotation to add</param>
5410 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="annotation" /> is null</exception>
5411 </member>
5412 <member name="T:Gallio.Model.TestPackage">
5413 <summary>A test package describes the resources that have been loaded in in preparation for enumerating and running the tests they contain. This class cannot be inherited.</summary>
5414 </member>
5415 <member name="P:Gallio.Model.TestPackage.Assemblies">
5416 <summary>Gets the assemblies that belong to the test package.</summary>
5417 </member>
5418 <member name="P:Gallio.Model.TestPackage.Config">
5419 <summary>Gets the test package configuration.</summary>
5420 </member>
5421 <member name="P:Gallio.Model.TestPackage.Loader">
5422 <summary>Gets the loader for the package.</summary>
5423 </member>
5424 <member name="P:Gallio.Model.TestPackage.ReflectionPolicy">
5425 <summary>Gets the reflection policy.</summary>
5426 </member>
5427 <member name="M:Gallio.Model.TestPackage.AddAssembly(Gallio.Reflection.IAssemblyInfo)">
5428 <summary>Adds an assembly to the test package.</summary>
5429 <param name="assembly">The assembly to add</param>
5430 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
5431 </member>
5432 <member name="T:Gallio.Model.TestPackageConfig">
5433 <summary>A test package configuration specifies the options used by a test runner to load tests into memory for execution. The package may contain multiple test assemblies that are to be loaded together for test execution. It can also be serialized as XML or using .Net remoting for persistence and remote operation. This class cannot be inherited.</summary>
5434 </member>
5435 <member name="P:Gallio.Model.TestPackageConfig.AssemblyFiles">
5436 <summary>Gets the list of relative or absolute paths of test assembly files.</summary>
5437 </member>
5438 <member name="P:Gallio.Model.TestPackageConfig.HintDirectories">
5439 <summary>Gets the list of hint directories used to resolve test assemblies and other files.</summary>
5440 </member>
5441 <member name="P:Gallio.Model.TestPackageConfig.HostSetup">
5442 <summary>Gets or sets the host setup parameters.</summary>
5443 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
5444 </member>
5445 <member name="M:Gallio.Model.TestPackageConfig.Canonicalize(System.String)">
5446 <summary>Makes all paths in this instance absolute.</summary>
5447 <param name="baseDirectory">The base directory for resolving relative paths, or null to use the current directory</param>
5448 </member>
5449 <member name="M:Gallio.Model.TestPackageConfig.Copy">
5450 <summary>Creates a copy of the test package.</summary>
5451 <returns>The copy</returns>
5452 </member>
5453 <member name="T:Gallio.Model.TestParameterInfo">
5454 <summary>A read-only implementation of <see cref="T:Gallio.Model.ITestParameter" /> for reflection. This class cannot be inherited.</summary>
5455 </member>
5456 <member name="T:Gallio.Model.TestParameterInfoList">
5457 <summary>Wraps a list of <see cref="T:Gallio.Model.ITestParameter" /> for reflection. This class cannot be inherited.</summary>
5458 </member>
5459 <member name="T:Gallio.Model.TestResult">
5460 <summary>A test result describes the final result of having executed a test. This class cannot be inherited.</summary>
5461 </member>
5462 <member name="P:Gallio.Model.TestResult.AssertCount">
5463 <summary>Gets or sets the number of assertions evaluated by the test.</summary>
5464 </member>
5465 <member name="P:Gallio.Model.TestResult.Duration">
5466 <summary>Gets or sets the test duration in seconds.</summary>
5467 </member>
5468 <member name="P:Gallio.Model.TestResult.Outcome">
5469 <summary>Gets or sets the test outcome.</summary>
5470 <value>Defaults to <see cref="P:Gallio.Model.TestOutcome.Inconclusive" />.</value>
5471 </member>
5472 <member name="T:Gallio.Model.TestStepInfo">
5473 <summary>A read-only implementation of <see cref="T:Gallio.Model.ITestStep" /> for reflection. This class cannot be inherited.</summary>
5474 </member>
5475 <member name="P:Gallio.Model.TestStepInfo.FullName">
5476 <summary>
5477 <para> Gets the full name of the step. </para>
5478 <para> The full name is derived by concatenating the <see cref="P:Gallio.Model.ITestStep.FullName" /> of the <see cref="P:Gallio.Model.ITestStep.Parent" /> followed by a slash ('/') followed by the <see cref="P:Gallio.Model.ITestComponent.Name" /> of this test step. </para>
5479 <para> The full name of the root test step is empty. </para>
5480 <para> Examples: <list type="bullet"><item><term>""</term><description>The root step</description></item><item><term>"SomeAssembly/SomeFixture/SomeTest"</term><description>The step corresponding to SomeTest</description></item><item><term>"SomeAssembly/SomeFixture/SomeTest/ChildStep"</term><description>A child step of SomeTest</description></item></list></para>
5481 </summary>
5482 </member>
5483 <member name="P:Gallio.Model.TestStepInfo.IsDynamic">
5484 <summary>
5485 <para> Returns true if the test step is dynamic. A dynamic test step is one whose execution is governed by parameters that are not known a priori. </para>
5486 <para> For example, a primary test step is generally not dynamic because its existence usually only depends on statically known information derived from the test model. However, a child test step created at runtime by a data binding process might be considered dynamic if the data items that were used may change between test runs even when the static structure of the test code remains the same. So a test step that uses random data items or that owes its existence to processes that are not entirely under the control of the test framework should be flagged as dynamic. </para>
5487 <para> It can be useful to distinguish between static and dynamic test steps when correlating results across test runs. Dynamic test steps are more likely to change in dramatic ways between test runs than static test steps. </para>
5488 </summary>
5489 </member>
5490 <member name="P:Gallio.Model.TestStepInfo.IsPrimary">
5491 <summary>
5492 <para> Returns true if the test step is the top node of a hierarchy of test steps that are all associated with the same test. In the case where a single test step is associated with a test, then it is the primary test step. There may be multiple primary test steps of the same test if they are not directly related by ancestry (ie. one does not contain the other). </para>
5493 <para> A non-primary test step is known as a derived test step. </para>
5494 </summary>
5495 </member>
5496 <member name="P:Gallio.Model.TestStepInfo.IsTestCase">
5497 <summary>Returns true if the test step represents a distinct test case. A test case is typically a leaf of the test step hierarchy.</summary>
5498 </member>
5499 <member name="T:Gallio.Model.TestOutcome">
5500 <summary>
5501 <para> Describes the outcome of a test. </para>
5502 <para> An outcome consists of two parts. First, a required <see cref="P:Gallio.Model.TestOutcome.Status" /> that describes whether test passed, failed or was inconclusive. Second, an optional <see cref="P:Gallio.Model.TestOutcome.Category" /> that enables different outcomes with the same status to be distinguished. The category also provides an opportunity to extend the definition of a test outcome to include custom semantic details. </para>
5503 </summary>
5504 </member>
5505 <member name="P:Gallio.Model.TestOutcome.Canceled">
5506 <summary>Gets a standard outcome for a test that has an inconclusive outcome because it was canceled.</summary>
5507 <value>The outcome</value>
5508 </member>
5509 <member name="P:Gallio.Model.TestOutcome.Category">
5510 <summary>
5511 <para> Gets the test outcome category, or null if none. Never an empty string. </para>
5512 <para> The category, when provided, provides additional information to describe what happened to result in this particular outcome. </para>
5513 <para> Examples: "ignored", "skipped", "pending", "canceled", "aborted", "timeout". </para>
5514 <para> Naming guidelines: <list type="bullet"><item>A category should be a single lower-case word.</item><item>It should be a word that can appear on its own or following a number. Consequently, nouns are poor choices because they may need to be pluralized.</item><item>It should not repeat the information already provided by the <see cref="P:Gallio.Model.TestOutcome.Status" />. Consequently, "passed", "failed" and "inconclusive" are poor choices.</item><item>It should be a standard category, if possible.</item><item>It should not be too granular. If too many categories are in common usage, test result summaries by category may become unwieldly.</item></list></para>
5515 </summary>
5516 </member>
5517 <member name="P:Gallio.Model.TestOutcome.DisplayName">
5518 <summary>
5519 <para> Gets the name of the outcome as it should be displayed. </para>
5520 <para> The display name is the outcome's <see cref="P:Gallio.Model.TestOutcome.Category" />, if available. Otherwise it is a lowercase rendition of the outcome's <see cref="P:Gallio.Model.TestOutcome.Status" />. </para>
5521 </summary>
5522 </member>
5523 <member name="P:Gallio.Model.TestOutcome.Error">
5524 <summary>Gets a standard outcome for a test that failed due to an error.</summary>
5525 <value>The outcome</value>
5526 </member>
5527 <member name="P:Gallio.Model.TestOutcome.Explicit">
5528 <summary>Gets a standard outcome for a test that did not run because it must be selected explicitly. The test may be particularly expensive or require manual supervision by an operator.</summary>
5529 <value>The outcome</value>
5530 </member>
5531 <member name="P:Gallio.Model.TestOutcome.Failed">
5532 <summary>Gets a standard outcome for a test that failed.</summary>
5533 <value>The outcome</value>
5534 </member>
5535 <member name="P:Gallio.Model.TestOutcome.Ignored">
5536 <summary>Gets a standard outcome for a test that did not run because the user is choosing to ignore it. Perhaps the test is broken or non-functional.</summary>
5537 <value>The outcome</value>
5538 </member>
5539 <member name="P:Gallio.Model.TestOutcome.Inconclusive">
5540 <summary>Gets a standard outcome for a test that was inconclusive.</summary>
5541 <value>The outcome</value>
5542 </member>
5543 <member name="P:Gallio.Model.TestOutcome.Passed">
5544 <summary>Gets a standard outcome for a test that passed.</summary>
5545 <value>The outcome</value>
5546 </member>
5547 <member name="P:Gallio.Model.TestOutcome.Pending">
5548 <summary>Gets a standard outcome for a test that did not run because it has unsatisfied prerequisites. The test may depend on functionality that has not yet been implemented or perhaps the test itself has yet to be implemented.</summary>
5549 <value>The outcome</value>
5550 </member>
5551 <member name="P:Gallio.Model.TestOutcome.Skipped">
5552 <summary>Gets a standard outcome for a test that did not run.</summary>
5553 <value>The outcome</value>
5554 </member>
5555 <member name="P:Gallio.Model.TestOutcome.Status">
5556 <summary>
5557 <para> Gets the test status. </para>
5558 <para> The test status describes whether a test passed, failed or produced an inconclusive result. This information may be reported to the user with icons and textual labels to explain the overall significance of the outcome. </para>
5559 </summary>
5560 </member>
5561 <member name="P:Gallio.Model.TestOutcome.Timeout">
5562 <summary>Gets a standard outcome for a test that failed because it ran out of time.</summary>
5563 <value>The outcome</value>
5564 </member>
5565 <member name="M:Gallio.Model.TestOutcome.CombineWith(Gallio.Model.TestOutcome)">
5566 <summary>If the other outcome is more severe than this one, returns it. Otherwise returns this outcome.</summary>
5567 <param name="other">The other outcome</param>
5568 <returns>The combined outcome</returns>
5569 </member>
5570 <member name="M:Gallio.Model.TestOutcome.Equals(Gallio.Model.TestOutcome)">
5571 <summary>Indicates whether this instance and a specified object are equal.</summary>
5572 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
5573 </member>
5574 <member name="M:Gallio.Model.TestOutcome.Equals(System.Object)">
5575 <summary>Indicates whether this instance and a specified object are equal.</summary>
5576 <param name="obj">Another object to compare to.</param>
5577 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
5578 </member>
5579 <member name="M:Gallio.Model.TestOutcome.Generalize">
5580 <summary>Produces an outcome with the same status but omitting the category information.</summary>
5581 <returns>The generalized outcome</returns>
5582 </member>
5583 <member name="M:Gallio.Model.TestOutcome.GetHashCode">
5584 <summary>Returns the hash code for this instance.</summary>
5585 <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
5586 </member>
5587 <member name="M:Gallio.Model.TestOutcome.ToString">
5588 <summary>Returns the <see cref="P:Gallio.Model.TestOutcome.DisplayName" /> of the outcome.</summary>
5589 <returns>The display name</returns>
5590 </member>
5591 <member name="M:Gallio.Model.TestOutcome.op_Equality(Gallio.Model.TestOutcome,Gallio.Model.TestOutcome)">
5592 <summary>Compares two outcomes for equality.</summary>
5593 <param name="a">The first outcome</param>
5594 <param name="b">The second outcome</param>
5595 <returns>True if the outcomes are equal</returns>
5596 </member>
5597 <member name="M:Gallio.Model.TestOutcome.op_Inequality(Gallio.Model.TestOutcome,Gallio.Model.TestOutcome)">
5598 <summary>Compares two outcomes for inequality.</summary>
5599 <param name="a">The first outcome</param>
5600 <param name="b">The second outcome</param>
5601 <returns>True if the outcomes are not equal</returns>
5602 </member>
5603 <member name="T:Gallio.Model.ITest">
5604 <summary>
5605 <para> A test object represents a parameterized test case or test container. The test parameters are used as placeholders for data-binding during test execution. A single test can produce multiple steps (<seealso cref="T:Gallio.Model.ITestStep" />) at runtime. </para>
5606 <para> A <see cref="T:Gallio.Model.ITest" /> can be thought of as a declarative artifact that describes about what a test "looks like" from the outside based on available reflective metadata. A <see cref="T:Gallio.Model.ITestStep" /> is then the runtime counterpart of a <see cref="T:Gallio.Model.ITest" nolink="true" /> that is created to describe different parameter bindigns or other characteristics of a test's structure that become manifest only at runtime. </para>
5607 <para> A test may depend on one or more other tests. When a test fails, the tests that depend on it are also automatically considered failures. Moreover, the test harness ensures that a test will only run once all of its dependencies have completed execution successfully. A run-time error will occur when the system detects the presence of circular test dependencies or attempts to execute a test concurrently with its dependencies. </para>
5608 <para> A test contain child tests. The children of a test are executed in dependency order within the scope of the parent test. Thus the parent test may setup/teardown the execution environment used to execute its children. Tests that belong to different subtrees are executed in relative isolation within the common environment established by their common parent. </para>
5609 <para> The object model distinguishes between tests that represent individual test cases and other test containers. Test containers are skipped if they do not contain any test cases or if none of their test cases have been selected for execution. </para>
5610 </summary>
5611 </member>
5612 <member name="P:Gallio.Model.ITest.Children">
5613 <summary>Gets the children of this test.</summary>
5614 </member>
5615 <member name="P:Gallio.Model.ITest.Dependencies">
5616 <summary>Gets the list of the dependencies of this test.</summary>
5617 </member>
5618 <member name="P:Gallio.Model.ITest.FullName">
5619 <summary>
5620 <para> Gets the full name of the test. The full name is derived by concatenating the <see cref="P:Gallio.Model.ITest.FullName" /> of the <see cref="P:Gallio.Model.ITest.Parent" /> followed by a slash ('/') followed by the <see cref="P:Gallio.Model.ITestComponent.Name" /> of this test. </para>
5621 <para> The full name of the root test is empty. </para>
5622 </summary>
5623 </member>
5624 <member name="P:Gallio.Model.ITest.IsTestCase">
5625 <summary>Gets whether this test represents an individual test case as opposed to a test container such as a fixture or suite. The value of this property can be used by the test harness to avoid processing containers that have no test cases. It can also be used by the reporting infrastructure to constrain output statistics to test cases only.</summary>
5626 </member>
5627 <member name="P:Gallio.Model.ITest.LocalId">
5628 <summary>
5629 <para> Gets a locally unique identifier for this test that satisfies the following conditions: </para>
5630 <list type="bullet">
5631 <item>The identifier is unique among all siblings of this test belonging to the same parent.</item>
5632 <item>The identifier is likely to be stable across multiple sessions including changes and recompilations of the test projects.</item>
5633 <item>The identifier is non-null.</item>
5634 </list>
5635 <para> The local identifier may be the same as the test's name. However since the name is intended for display to end-users, it may contain irrelevant details (such as version numbers) that would reduce its long-term stability. In that case, a different local identifier should be selected such as one based on the test's <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> and an ordering condition among siblings to guarantee uniqueness. </para>
5636 </summary>
5637 <value>The locally unique identifier</value>
5638 </member>
5639 <member name="P:Gallio.Model.ITest.Parameters">
5640 <summary>Gets the parameters of this test. Each parameter must have a unique name. The order in which the parameters appear is not significant.</summary>
5641 </member>
5642 <member name="P:Gallio.Model.ITest.Parent">
5643 <summary>Gets or sets the parent of this test, or null if this is the root test.</summary>
5644 </member>
5645 <member name="P:Gallio.Model.ITest.TestControllerFactory">
5646 <summary>Gets a <see cref="T:Gallio.Model.Execution.ITestController" /><see cref="T:Gallio.Func`1" /> to run this tes and all of its children. Returns null if this test is merely a container for other tests or if it otherwise does not require or provide its own controller.</summary>
5647 <value>The test controller factory, or null if this test cannot produce a controller (and consequently is not a master test according to the definition above)</value>
5648 </member>
5649 <member name="M:Gallio.Model.ITest.AddChild(Gallio.Model.ITest)">
5650 <summary>Adds a child test and sets its <see cref="P:Gallio.Model.ITest.Parent" /> property.</summary>
5651 <param name="test">The test to add as a child</param>
5652 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="test" /> is null</exception>
5653 <exception cref="T:System.InvalidOperationException">Thrown if <paramref name="test" /> is already the child of some other test</exception>
5654 </member>
5655 <member name="M:Gallio.Model.ITest.AddDependency(Gallio.Model.ITest)">
5656 <summary>Adds a test dependency.</summary>
5657 <param name="test">The test to add as a dependency</param>
5658 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="test" /> is null</exception>
5659 </member>
5660 <member name="M:Gallio.Model.ITest.AddParameter(Gallio.Model.ITestParameter)">
5661 <summary>Adds a test parameter and sets its <see cref="P:Gallio.Model.ITestParameter.Owner" /> property.</summary>
5662 <param name="parameter">The test parameter to add</param>
5663 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="parameter" /> is null</exception>
5664 <exception cref="T:System.InvalidOperationException">Thrown if <paramref name="parameter" /> is already owned by some other test</exception>
5665 </member>
5666 <member name="T:Gallio.Model.ITestComponent">
5667 <summary>Common interface for elements in the test object model. All components have a name for presentation, metadata for annotations, and a code reference to its point of definition.</summary>
5668 </member>
5669 <member name="P:Gallio.Model.ITestComponent.CodeElement">
5670 <summary>Gets a reference to the point of definition of this test component in the code, or null if unknown.</summary>
5671 </member>
5672 <member name="P:Gallio.Model.ITestComponent.Id">
5673 <summary>Gets the stable unique identifier of the component.</summary>
5674 </member>
5675 <member name="P:Gallio.Model.ITestComponent.Metadata">
5676 <summary>Gets the metadata of the component.</summary>
5677 </member>
5678 <member name="P:Gallio.Model.ITestComponent.Name">
5679 <summary>Gets the name of the component.</summary>
5680 </member>
5681 <member name="T:Gallio.Model.ITestExplorer">
5682 <summary>
5683 <para> A test explorer scans a volume of code using reflection to build a partial test tree. The tests constructed in this manner may not be complete or executable but they provide useful insight into the layout of the test suite that can subsequently be used to drive the test runner. </para>
5684 <para> As a test explorer explores test assemblies and types, it incrementally populates a <see cref="P:Gallio.Model.ITestExplorer.TestModel" /> with its discoveries. The <see cref="P:Gallio.Model.ITestExplorer.TestModel" nolink="true" /> is guaranteed to contain all of the tests explicitly explored, but it may also contain other tests that were discovered by the explorer along the way. For example, a valid implementation of <see cref="T:Gallio.Model.ITestExplorer" /> could implement <see cref="M:Gallio.Model.ITestExplorer.ExploreType(Gallio.Reflection.ITypeInfo,System.Action{Gallio.Model.ITest})" /> by exploring the entire assembly as performed by <see cref="M:Gallio.Model.ITestExplorer.ExploreAssembly(Gallio.Reflection.IAssemblyInfo,System.Action{Gallio.Model.ITest})" />. </para>
5685 </summary>
5686 </member>
5687 <member name="P:Gallio.Model.ITestExplorer.TestModel">
5688 <summary>Gets the test model that is incrementally populated by the test explorer as it explores tests.</summary>
5689 </member>
5690 <member name="M:Gallio.Model.ITestExplorer.ExploreAssembly(Gallio.Reflection.IAssemblyInfo,System.Action{Gallio.Model.ITest})">
5691 <summary>Explores the tests defined by an assembly and links them into the <see cref="P:Gallio.Model.ITestExplorer.TestModel" />.</summary>
5692 <param name="assembly">The assembly</param>
5693 <param name="consumer">An action to perform on each assembly-level test explored, or null if no action is required</param>
5694 </member>
5695 <member name="M:Gallio.Model.ITestExplorer.ExploreType(Gallio.Reflection.ITypeInfo,System.Action{Gallio.Model.ITest})">
5696 <summary>Explores the tests defined by a type and links them into the <see cref="P:Gallio.Model.ITestExplorer.TestModel" />.</summary>
5697 <param name="type">The type</param>
5698 <param name="consumer">An action to perform on each type-level test explored, or null if no action is required</param>
5699 </member>
5700 <member name="M:Gallio.Model.ITestExplorer.FinishModel">
5701 <summary>Performs any final actions after exploration has taken place to ensure that we have a complete and internally consistent model.</summary>
5702 </member>
5703 <member name="M:Gallio.Model.ITestExplorer.IsTest(Gallio.Reflection.ICodeElementInfo)">
5704 <summary>Returns true if the code element represents a test.</summary>
5705 <param name="element">The element</param>
5706 <returns>True if the element represents a test</returns>
5707 </member>
5708 <member name="T:Gallio.Model.ITestFramework">
5709 <summary>The test framework service provides support for enumerating and executing tests that belong to some test framework. A new third party test framework may be supported by defining and registering a suitable implementation of this interface.</summary>
5710 </member>
5711 <member name="P:Gallio.Model.ITestFramework.Name">
5712 <summary>Gets the name of the test framework.</summary>
5713 </member>
5714 <member name="M:Gallio.Model.ITestFramework.ConfigureTestDomain(Gallio.Model.TestDomainSetup)">
5715 <summary>Applies additional contributions to a test domain, if desired.</summary>
5716 <param name="testDomainSetup">The test domain setup to modify</param>
5717 </member>
5718 <member name="M:Gallio.Model.ITestFramework.CreateTestExplorer(Gallio.Model.TestModel)">
5719 <summary>Creates a test explorer for this test framework.</summary>
5720 <param name="testModel">The test model to populate incrementally as tests are discovered</param>
5721 <returns>The test explorer</returns>
5722 </member>
5723 <member name="T:Gallio.Model.ITestPackageExplorerFactory">
5724 <summary>Creates test explorers for packages.</summary>
5725 </member>
5726 <member name="M:Gallio.Model.ITestPackageExplorerFactory.CreateTestExplorer(Gallio.Model.TestPackageConfig,Gallio.Reflection.IReflectionPolicy)">
5727 <summary>Creates a test explorer with the specified reflection policy.</summary>
5728 <param name="testPackageConfig">The test package configuration</param>
5729 <param name="reflectionPolicy">The reflection policy</param>
5730 <returns>The test explorer</returns>
5731 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testPackageConfig" /> or <paramref name="reflectionPolicy" /> is null</exception>
5732 </member>
5733 <member name="T:Gallio.Model.ITestParameter">
5734 <summary>
5735 <para> A test parameter describes a formal parameter of a <see cref="T:Gallio.Model.ITest" /> to which a value may be bound and used during test execution. </para>
5736 <para> The <see cref="P:Gallio.Model.ITestComponent.Name" /> property of a test parameter should be unique among the set parameters belonging to its <see cref="P:Gallio.Model.ITestParameter.Owner" /> to ensure that it can be differentiated from others. However, this constraint is not enforced. </para>
5737 </summary>
5738 </member>
5739 <member name="P:Gallio.Model.ITestParameter.Owner">
5740 <summary>Gets or sets the test that owns this parameter, or null if this parameter does not yet have an owner.</summary>
5741 </member>
5742 <member name="T:Gallio.Model.ITestStep">
5743 <summary>
5744 <para> A test step is a delimited region of a test defined at run-time. Each test that is executed consists of at least one step: the "primary" step. During execution, each test may spawn additional nested steps that may run in parallel or in series with one another as required. </para>
5745 <para> A test step may be used to describe a particular instance of a data driven test. It can also be used to generate a completely dynamic hierarchy at runtime that mirrors and extends the static test hierarchy with new information derived from the actual execution of the test. </para>
5746 <para> Each step has its own execution log and test result (pass/fail/inconclusive). Therefore a multi-step test may possess multiple execution logs and test results. This is deliberate. Think of a <see cref="T:Gallio.Model.ITest" /> as being the declarative component of a test that specifies which test method to invoke and its arguments. An <see cref="T:Gallio.Model.ITestStep" /> is the runtime counterpart of the <see cref="T:Gallio.Model.ITest" nolink="true" /> that captures output and control flow information about part or all of the test. </para>
5747 <para> A test step also has metadata that can be update at run-time to carry additional declarative information about the step. </para>
5748 </summary>
5749 </member>
5750 <member name="P:Gallio.Model.ITestStep.FullName">
5751 <summary>
5752 <para> Gets the full name of the step. </para>
5753 <para> The full name is derived by concatenating the <see cref="P:Gallio.Model.ITestStep.FullName" /> of the <see cref="P:Gallio.Model.ITestStep.Parent" /> followed by a slash ('/') followed by the <see cref="P:Gallio.Model.ITestComponent.Name" /> of this test step. </para>
5754 <para> The full name of the root test step is empty. </para>
5755 <para> Examples: <list type="bullet"><item><term>""</term><description>The root step</description></item><item><term>"SomeAssembly/SomeFixture/SomeTest"</term><description>The step corresponding to SomeTest</description></item><item><term>"SomeAssembly/SomeFixture/SomeTest/ChildStep"</term><description>A child step of SomeTest</description></item></list></para>
5756 </summary>
5757 </member>
5758 <member name="P:Gallio.Model.ITestStep.IsDynamic">
5759 <summary>
5760 <para> Returns true if the test step is dynamic. A dynamic test step is one whose execution is governed by parameters that are not known a priori. </para>
5761 <para> For example, a primary test step is generally not dynamic because its existence usually only depends on statically known information derived from the test model. However, a child test step created at runtime by a data binding process might be considered dynamic if the data items that were used may change between test runs even when the static structure of the test code remains the same. So a test step that uses random data items or that owes its existence to processes that are not entirely under the control of the test framework should be flagged as dynamic. </para>
5762 <para> It can be useful to distinguish between static and dynamic test steps when correlating results across test runs. Dynamic test steps are more likely to change in dramatic ways between test runs than static test steps. </para>
5763 </summary>
5764 </member>
5765 <member name="P:Gallio.Model.ITestStep.IsPrimary">
5766 <summary>
5767 <para> Returns true if the test step is the top node of a hierarchy of test steps that are all associated with the same test. In the case where a single test step is associated with a test, then it is the primary test step. There may be multiple primary test steps of the same test if they are not directly related by ancestry (ie. one does not contain the other). </para>
5768 <para> A non-primary test step is known as a derived test step. </para>
5769 </summary>
5770 </member>
5771 <member name="P:Gallio.Model.ITestStep.IsTestCase">
5772 <summary>Returns true if the test step represents a distinct test case. A test case is typically a leaf of the test step hierarchy.</summary>
5773 </member>
5774 <member name="P:Gallio.Model.ITestStep.Parent">
5775 <summary>Gets the step that contains this one, or null if this instance represents the root step of the test step tree.</summary>
5776 </member>
5777 <member name="P:Gallio.Model.ITestStep.Test">
5778 <summary>Gets the test to which this step belongs.</summary>
5779 </member>
5780 <member name="T:Gallio.Model.AnnotationType">
5781 <summary>Specifies the type of an annotation.</summary>
5782 </member>
5783 <member name="F:Gallio.Model.AnnotationType.Info">
5784 <summary>An informational annotation.</summary>
5785 </member>
5786 <member name="F:Gallio.Model.AnnotationType.Warning">
5787 <summary>A warning annotation.</summary>
5788 </member>
5789 <member name="F:Gallio.Model.AnnotationType.Error">
5790 <summary>An error annotation.</summary>
5791 </member>
5792 <member name="T:Gallio.Model.TestStatus">
5793 <summary>
5794 <para> Describes whether a test passed, failed, was skipped or was inconclusive. </para>
5795 <para> The status codes are ranked in order of severity from least to greatest as follows: <see cref="F:Gallio.Model.TestStatus.Passed" />, <see cref="F:Gallio.Model.TestStatus.Skipped" />, <see cref="F:Gallio.Model.TestStatus.Inconclusive" />, <see cref="F:Gallio.Model.TestStatus.Failed" />. </para>
5796 </summary>
5797 </member>
5798 <member name="F:Gallio.Model.TestStatus.Passed">
5799 <summary>The test passed.</summary>
5800 </member>
5801 <member name="F:Gallio.Model.TestStatus.Skipped">
5802 <summary>The test did not run so nothing is known about its status.</summary>
5803 </member>
5804 <member name="F:Gallio.Model.TestStatus.Inconclusive">
5805 <summary>The test did not run or its result was inconclusive.</summary>
5806 </member>
5807 <member name="F:Gallio.Model.TestStatus.Failed">
5808 <summary>The test failed or encountered an error during execution.</summary>
5809 </member>
5810 <member name="T:Gallio.Model.Execution.BaseTestController">
5811 <summary>Base implementation of <see cref="T:Gallio.Model.Execution.ITestController" /> that does nothing. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5812 </member>
5813 <member name="M:Gallio.Model.Execution.BaseTestController.Dispose">
5814 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
5815 </member>
5816 <member name="M:Gallio.Model.Execution.BaseTestController.RunTests(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
5817 <summary>Runs the tests.</summary>
5818 <param name="rootTestCommand">The root test monitor</param>
5819 <param name="parentTestStep">The parent test step, or null if starting a root step</param>
5820 <param name="options">The test execution options</param>
5821 <param name="progressMonitor">The progress monitor</param>
5822 <returns>The combined outcome of the root test command</returns>
5823 </member>
5824 <member name="M:Gallio.Model.Execution.BaseTestController.RunTestsImpl(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
5825 <summary>Implementation of <see cref="M:Gallio.Model.Execution.BaseTestController.RunTests(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> called after argument validation has taken place.</summary>
5826 <param name="rootTestCommand">The root test command, not null</param>
5827 <param name="parentTestStep">The parent test step, or null if none</param>
5828 <param name="options">The test execution options, not null</param>
5829 <param name="progressMonitor">The progress monitor, not null</param>
5830 <returns>The combined outcome of the root test command</returns>
5831 </member>
5832 <member name="M:Gallio.Model.Execution.BaseTestController.SkipAll(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep)">
5833 <summary>Recursively generates single test steps for each <see cref="T:Gallio.Model.Execution.ITestCommand" /> and sets the final outcome to <see cref="P:Gallio.Model.TestOutcome.Skipped" />.</summary>
5834 <param name="rootTestCommand">The root test command</param>
5835 <param name="parentTestStep">The parent test step</param>
5836 </member>
5837 <member name="T:Gallio.Model.Execution.BaseTestLogWriter">
5838 <summary>
5839 <para> Base implementation of a log writer that assists in the implementation of log writers by serializing requests and performing basic argument and state validation. </para>
5840 <para> The validation includes: <list type="bullet"><item>Checking arguments for null</item><item>Ensuring that the writer has not been closed</item><item>Ensuring that no attachment with the same name exists when adding an attachment</item><item>Ensuring that there is an attachment with the specified name exists when embedding an attachment</item><item>Ensuring that the nesting level of stream sections is correct such that all <see cref="M:Gallio.Model.Execution.BaseTestLogWriter.EndSection(System.String)" /> calls are balanced by <see cref="M:Gallio.Model.Execution.BaseTestLogWriter.BeginSection(System.String,System.String)" /></item></list></para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
5841 </member>
5842 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.AttachBytes(System.String,System.String,System.Byte[])">
5843 <summary>Attaches an binary attachment to the execution log.</summary>
5844 <param name="attachmentName">The attachment name</param>
5845 <param name="contentType">The content type</param>
5846 <param name="bytes">The binary contents</param>
5847 </member>
5848 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.AttachBytesImpl(System.String,System.String,System.Byte[])">
5849 <summary>Attaches an binary attachment to the execution log.</summary>
5850 <param name="attachmentName">The attachment name, unique, not null</param>
5851 <param name="contentType">The content type, not null</param>
5852 <param name="bytes">The binary contents, not null</param>
5853 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
5854 </member>
5855 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.AttachText(System.String,System.String,System.String)">
5856 <summary>Attaches an text attachment to the execution log.</summary>
5857 <param name="attachmentName">The attachment name</param>
5858 <param name="contentType">The content type</param>
5859 <param name="text">The text contents</param>
5860 </member>
5861 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.AttachTextImpl(System.String,System.String,System.String)">
5862 <summary>Attaches an text attachment to the execution log.</summary>
5863 <param name="attachmentName">The attachment name, unique, not null</param>
5864 <param name="contentType">The content type, not null</param>
5865 <param name="text">The text contents, not null</param>
5866 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
5867 </member>
5868 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.BeginSection(System.String,System.String)">
5869 <summary>Begins a section in a particular stream of the execution log.</summary>
5870 <param name="streamName">The log stream name</param>
5871 <param name="sectionName">The name of the section</param>
5872 </member>
5873 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.BeginSectionImpl(System.String,System.String)">
5874 <summary>Begins a section in a particular stream of the execution log.</summary>
5875 <param name="streamName">The log stream name, not null</param>
5876 <param name="sectionName">The name of the section, not null</param>
5877 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
5878 </member>
5879 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.Close">
5880 <summary>Closes the log writer.</summary>
5881 </member>
5882 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.CloseImpl">
5883 <summary>Closes the log writer.</summary>
5884 </member>
5885 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.Embed(System.String,System.String)">
5886 <summary>Embeds an attachment into a particular stream of the execution log.</summary>
5887 <param name="streamName">The log stream name</param>
5888 <param name="attachmentName">The attachment name</param>
5889 </member>
5890 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.EmbedImpl(System.String,System.String)">
5891 <summary>Embeds an attachment into a particular stream of the execution log.</summary>
5892 <param name="streamName">The log stream name, known to exist, not null</param>
5893 <param name="attachmentName">The attachment name, not null</param>
5894 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
5895 </member>
5896 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.EndSection(System.String)">
5897 <summary>Ends a section in a particular stream of the execution log.</summary>
5898 <param name="streamName">The log stream name</param>
5899 </member>
5900 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.EndSectionImpl(System.String)">
5901 <summary>Ends a section in a particular stream of the execution log.</summary>
5902 <param name="streamName">The log stream name, not null</param>
5903 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
5904 </member>
5905 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.Write(System.String,System.String)">
5906 <summary>Writes text to a particular stream of the execution log.</summary>
5907 <param name="streamName">The log stream name</param>
5908 <param name="text">The text to write</param>
5909 </member>
5910 <member name="M:Gallio.Model.Execution.BaseTestLogWriter.WriteImpl(System.String,System.String)">
5911 <summary>Writes text to a particular stream of the execution log.</summary>
5912 <param name="streamName">The log stream name, not null</param>
5913 <param name="text">The text to write, not null</param>
5914 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
5915 </member>
5916 <member name="T:Gallio.Model.Execution.DefaultTestContextTracker">
5917 <summary>The default context tracker tracks the current context by way of the thread's <see cref="T:System.Threading.ExecutionContext" /> and <see cref="T:System.Runtime.Remoting.Messaging.CallContext" />. The .Net framework ensures that this context information flows across threads during asynchronous callbacks, timer events and thread pool work item execution.</summary>
5918 </member>
5919 <member name="P:Gallio.Model.Execution.DefaultTestContextTracker.CurrentContext">
5920 <summary>
5921 <para> Gets the context of the current thread, or null if there is no current context. </para>
5922 <para> A thread's current context is determined in the following manner: <list type="bullet"><item>If the thread's context stack is not empty then the top-most item of the stack is used. <see cref="M:Gallio.Model.Execution.ITestContextTracker.EnterContext(Gallio.Model.Execution.ITestContext)" /> pushed a new item on this stack.</item><item>Otherwise, if the thread has an default context, then it is used. <see cref="M:Gallio.Model.Execution.ITestContextTracker.SetThreadDefaultContext(System.Threading.Thread,Gallio.Model.Execution.ITestContext)" /> sets the default context for a thread.</item><item>Otherwise, the <see cref="P:Gallio.Model.Execution.ITestContextTracker.GlobalContext" /> is used.</item></list></para>
5923 <para> Context information may flow across threads by inheritance such that a child thread acquires the context of its parent. However, each thread has its own context stack distinct from that of any other. </para>
5924 </summary>
5925 </member>
5926 <member name="P:Gallio.Model.Execution.DefaultTestContextTracker.GlobalContext">
5927 <summary>Gets or the global context of the environment, or null if there is no such context.</summary>
5928 </member>
5929 <member name="M:Gallio.Model.Execution.DefaultTestContextTracker.EnterContext(Gallio.Model.Execution.ITestContext)">
5930 <summary>Enters a context.</summary>
5931 <param name="context">The context to enter, or null to enter a scope without a context</param>
5932 <returns>A cookie that can be used to restore the current thread's context to its previous value when disposed</returns>
5933 </member>
5934 <member name="M:Gallio.Model.Execution.DefaultTestContextTracker.GetThreadDefaultContext(System.Threading.Thread)">
5935 <summary>Gets the default context for the specified thread.</summary>
5936 <param name="thread">The thread</param>
5937 <returns>The default context of the thread</returns>
5938 </member>
5939 <member name="M:Gallio.Model.Execution.DefaultTestContextTracker.SetThreadDefaultContext(System.Threading.Thread,Gallio.Model.Execution.ITestContext)">
5940 <summary>Sets the default context for the specified thread.</summary>
5941 <param name="thread">The thread</param>
5942 <param name="context">The context to associate with the thread, or null to reset the thread's default context to inherit the <see cref="P:Gallio.Model.Execution.ITestContextTracker.GlobalContext" /> once again</param>
5943 </member>
5944 <member name="T:Gallio.Model.Execution.LogStreamNames">
5945 <summary>Common execution log stream names. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
5946 </member>
5947 <member name="F:Gallio.Model.Execution.LogStreamNames.ConsoleError">
5948 <summary>The name of the built-in log stream where the <see cref="P:System.Console.Error" /> stream from the test is recorded. This field is constant and read-only.</summary>
5949 </member>
5950 <member name="F:Gallio.Model.Execution.LogStreamNames.ConsoleInput">
5951 <summary>The name of the built-in log stream where the <see cref="P:System.Console.In" /> stream for the test is recorded. This field is constant and read-only.</summary>
5952 </member>
5953 <member name="F:Gallio.Model.Execution.LogStreamNames.ConsoleOutput">
5954 <summary>The name of the built-in log stream where the <see cref="P:System.Console.Out" /> stream from the test is recorded. This field is constant and read-only.</summary>
5955 </member>
5956 <member name="F:Gallio.Model.Execution.LogStreamNames.DebugTrace">
5957 <summary>The name of the built-in log stream log stream where diagnostic <see cref="T:System.Diagnostics.Debug" /> and <see cref="T:System.Diagnostics.Trace" /> information is recorded. This field is constant and read-only.</summary>
5958 </member>
5959 <member name="F:Gallio.Model.Execution.LogStreamNames.Default">
5960 <summary>The name of the built-in log stream where additional log output is recorded. In new test frameworks, this stream should be used instead of the console output and error streams for logging test output. This field is constant and read-only.</summary>
5961 </member>
5962 <member name="F:Gallio.Model.Execution.LogStreamNames.Failures">
5963 <summary>The name of the built-in log stream where assertion failures, exceptions and other failure data are recorded. This field is constant and read-only.</summary>
5964 </member>
5965 <member name="F:Gallio.Model.Execution.LogStreamNames.Warnings">
5966 <summary>The name of the built-in log stream where warnings are recorded. This field is constant and read-only.</summary>
5967 </member>
5968 <member name="T:Gallio.Model.Execution.ManagedTestCommand">
5969 <summary>A <see cref="T:Gallio.Model.Execution.ITestCommand" /> implementation based on a <see cref="T:Gallio.Model.Execution.ITestContextManager" />.</summary>
5970 </member>
5971 <member name="P:Gallio.Model.Execution.ManagedTestCommand.Children">
5972 <summary>
5973 <para> Gets the list of child commands to run within the scope of this command. </para>
5974 <para> Each child command represents a test that is a child of the test managed by this command. </para>
5975 <para> The children are listed in an order that is consistent with their dependencies. See class commends for details. </para>
5976 </summary>
5977 </member>
5978 <member name="P:Gallio.Model.Execution.ManagedTestCommand.Dependencies">
5979 <summary>
5980 <para> Gets the list of other commands that this command depends upon. </para>
5981 <para> The dependent commands are guaranteed to have appeared before this command in a pre-order traversal of the command tree. A test command cannot depend on one of its direct ancestors. </para>
5982 </summary>
5983 </member>
5984 <member name="P:Gallio.Model.Execution.ManagedTestCommand.IsExplicit">
5985 <summary>Returns true if the test was explicitly selected by a filter.</summary>
5986 </member>
5987 <member name="P:Gallio.Model.Execution.ManagedTestCommand.PreOrderTraversal">
5988 <summary>Enumerates this command and all of its descendants in pre-order tree traversal.</summary>
5989 </member>
5990 <member name="P:Gallio.Model.Execution.ManagedTestCommand.RootStepFailureCount">
5991 <summary>Gets the number of times that a root step of this test has failed.</summary>
5992 </member>
5993 <member name="P:Gallio.Model.Execution.ManagedTestCommand.Test">
5994 <summary>Gets the test that is to be executed.</summary>
5995 </member>
5996 <member name="P:Gallio.Model.Execution.ManagedTestCommand.TestCount">
5997 <summary>Gets the total number of tests in the command subtree, including itself.</summary>
5998 </member>
5999 <member name="M:Gallio.Model.Execution.ManagedTestCommand.AddChild(Gallio.Model.Execution.ManagedTestCommand)">
6000 <summary>Adds a child test command.</summary>
6001 <param name="child">The child to add</param>
6002 </member>
6003 <member name="M:Gallio.Model.Execution.ManagedTestCommand.AddDependency(Gallio.Model.Execution.ManagedTestCommand)">
6004 <summary>Adds a test command dependency.</summary>
6005 <param name="dependency">The dependency to add</param>
6006 </member>
6007 <member name="M:Gallio.Model.Execution.ManagedTestCommand.AreDependenciesSatisfied">
6008 <summary>Returns true if all of the dependencies of this test command have been satisfied.</summary>
6009 <returns>True if the dependencies of this test command have been satisfied</returns>
6010 </member>
6011 <member name="M:Gallio.Model.Execution.ManagedTestCommand.ChildrenToArray">
6012 <summary>Gets the list of children as an array.</summary>
6013 <returns>The array of children</returns>
6014 </member>
6015 <member name="M:Gallio.Model.Execution.ManagedTestCommand.ClearChildren">
6016 <summary>Clears the children of the command.</summary>
6017 </member>
6018 <member name="M:Gallio.Model.Execution.ManagedTestCommand.GetAllCommands">
6019 <summary>Gets a list consisting of this command and all of its descendants as enumerated by pre-order tree traversal.</summary>
6020 <returns>The list of all command</returns>
6021 </member>
6022 <member name="M:Gallio.Model.Execution.ManagedTestCommand.StartPrimaryChildStep(Gallio.Model.ITestStep)">
6023 <summary>
6024 <para> Starts the primary step of the test associated with this command as a child of the specified test step and returns its test context. </para>
6025 <para> This method is equivalent to calling <see cref="M:Gallio.Model.Execution.ITestCommand.StartStep(Gallio.Model.ITestStep)" /> using a default implementation of <see cref="T:Gallio.Model.ITestStep" /> that is initialized using <paramref name="parentTestStep" />. </para>
6026 </summary>
6027 <param name="parentTestStep">The parent test step, or null if none</param>
6028 <returns>The test context for the new primary test step</returns>
6029 </member>
6030 <member name="M:Gallio.Model.Execution.ManagedTestCommand.StartStep(Gallio.Model.ITestStep)">
6031 <summary>Starts a new step of the test using the specified test step object.</summary>
6032 <param name="testStep">The test step to start</param>
6033 <returns>The test context for the test step</returns>
6034 </member>
6035 <member name="T:Gallio.Model.Execution.ObservableTestContextManager">
6036 <summary>An observable test context manager creates and tracks test contexts that are associated with a <see cref="T:Gallio.Model.Execution.ITestListener" /> for reporting test events back to the test runner.</summary>
6037 </member>
6038 <member name="P:Gallio.Model.Execution.ObservableTestContextManager.ContextTracker">
6039 <summary>Gets the test context tracker.</summary>
6040 </member>
6041 <member name="P:Gallio.Model.Execution.ObservableTestContextManager.Listener">
6042 <summary>Gets the test listener to which test events are dispatched.</summary>
6043 </member>
6044 <member name="M:Gallio.Model.Execution.ObservableTestContextManager.StartStep(Gallio.Model.ITestStep)">
6045 <summary>Starts a test step and returns its associated test context.</summary>
6046 <param name="testStep">The test step</param>
6047 <returns>The test context associated with the test step</returns>
6048 </member>
6049 <member name="T:Gallio.Model.Execution.ObservableTestLogWriter">
6050 <summary>A log writer that sends messages to a <see cref="T:Gallio.Model.Execution.ITestListener" />.</summary>
6051 </member>
6052 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.AttachBytesImpl(System.String,System.String,System.Byte[])">
6053 <summary>Attaches an binary attachment to the execution log.</summary>
6054 <param name="attachmentName">The attachment name, unique, not null</param>
6055 <param name="contentType">The content type, not null</param>
6056 <param name="bytes">The binary contents, not null</param>
6057 </member>
6058 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.AttachTextImpl(System.String,System.String,System.String)">
6059 <summary>Attaches an text attachment to the execution log.</summary>
6060 <param name="attachmentName">The attachment name, unique, not null</param>
6061 <param name="contentType">The content type, not null</param>
6062 <param name="text">The text contents, not null</param>
6063 </member>
6064 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.BeginSectionImpl(System.String,System.String)">
6065 <summary>Begins a section in a particular stream of the execution log.</summary>
6066 <param name="streamName">The log stream name, not null</param>
6067 <param name="sectionName">The name of the section, not null</param>
6068 </member>
6069 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.CloseImpl">
6070 <summary>Closes the log writer.</summary>
6071 </member>
6072 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.EmbedImpl(System.String,System.String)">
6073 <summary>Embeds an attachment into a particular stream of the execution log.</summary>
6074 <param name="streamName">The log stream name, known to exist, not null</param>
6075 <param name="attachmentName">The attachment name, not null</param>
6076 </member>
6077 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.EndSectionImpl(System.String)">
6078 <summary>Ends a section in a particular stream of the execution log.</summary>
6079 <param name="streamName">The log stream name, not null</param>
6080 </member>
6081 <member name="M:Gallio.Model.Execution.ObservableTestLogWriter.WriteImpl(System.String,System.String)">
6082 <summary>Writes text to a particular stream of the execution log.</summary>
6083 <param name="streamName">The log stream name, not null</param>
6084 <param name="text">The text to write, not null</param>
6085 </member>
6086 <member name="T:Gallio.Model.Execution.RecursiveTestController">
6087 <summary>A test controller that recursively enters the context of each non master-test found. When a master test is found, instantiates the <see cref="T:Gallio.Model.Execution.ITestController" /> for it and hands control over to it for the subtree of tests rooted at the master test.</summary>
6088 </member>
6089 <member name="M:Gallio.Model.Execution.RecursiveTestController.RunTestsImpl(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
6090 <summary>Implementation of <see cref="M:Gallio.Model.Execution.BaseTestController.RunTests(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> called after argument validation has taken place.</summary>
6091 <param name="rootTestCommand">The root test command, not null</param>
6092 <param name="parentTestStep">The parent test step, or null if none</param>
6093 <param name="options">The test execution options, not null</param>
6094 <param name="progressMonitor">The progress monitor, not null</param>
6095 <returns>The combined outcome of the root test command</returns>
6096 </member>
6097 <member name="T:Gallio.Model.Execution.RemoteTestListener">
6098 <summary>Wraps a test listener so that it can be accessed remotely.</summary>
6099 </member>
6100 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepFinished(System.String,Gallio.Model.TestResult)">
6101 <summary>Notifies the listener that a test step has finished execution.</summary>
6102 <param name="stepId">The id of the test step, not null</param>
6103 <param name="result">The test result, not null</param>
6104 </member>
6105 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLifecyclePhaseChanged(System.String,System.String)">
6106 <summary>Notifies the listener that a test step has changed lifecycle phase.</summary>
6107 <param name="stepId">The id of the test step, not null</param>
6108 <param name="lifecyclePhase">The lifecycle phase name, not null</param>
6109 </member>
6110 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLogBinaryAttachmentAdded(System.String,System.String,System.String,System.Byte[])">
6111 <summary>Notifies the listener that a binary attachment has been added to a test step log.</summary>
6112 <param name="stepId">The id of the test step, not null</param>
6113 <param name="attachmentName">The attachment name, not null</param>
6114 <param name="contentType">The content type, not null</param>
6115 <param name="bytes">The binary contents, not null</param>
6116 </member>
6117 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLogStreamAttachmentEmbedded(System.String,System.String,System.String)">
6118 <summary>Notifies the listener that an attachment has been embedded into a test step log stream.</summary>
6119 <param name="stepId">The id of the test step, not null</param>
6120 <param name="streamName">The stream name, not null</param>
6121 <param name="attachmentName">The attachment name, not null</param>
6122 </member>
6123 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLogStreamSectionFinished(System.String,System.String)">
6124 <summary>Notifies the listener that a section has finished within a test step log stream.</summary>
6125 <param name="stepId">The id of the test step, not null</param>
6126 <param name="streamName">The stream name, not null</param>
6127 </member>
6128 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLogStreamSectionStarted(System.String,System.String,System.String)">
6129 <summary>Notifies the listener that a section has been started within a test step log stream.</summary>
6130 <param name="stepId">The id of the test step, not null</param>
6131 <param name="streamName">The stream name, not null</param>
6132 <param name="sectionName">The section name, not null</param>
6133 </member>
6134 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLogStreamTextWritten(System.String,System.String,System.String)">
6135 <summary>Notifies the listener that text has been written to a test step log stream.</summary>
6136 <param name="stepId">The id of the test step, not null</param>
6137 <param name="streamName">The stream name, not null</param>
6138 <param name="text">The text, not null</param>
6139 </member>
6140 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepLogTextAttachmentAdded(System.String,System.String,System.String,System.String)">
6141 <summary>Notifies the listener that a text attachment has been added to a test step log.</summary>
6142 <param name="stepId">The id of the test step, not null</param>
6143 <param name="attachmentName">The attachment name, not null</param>
6144 <param name="contentType">The content type, not null</param>
6145 <param name="text">The text contents, not null</param>
6146 </member>
6147 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepMetadataAdded(System.String,System.String,System.String)">
6148 <summary>Notifies the listener that a test step has dynamically added metadata to itself.</summary>
6149 <param name="stepId">The id of the test step, not null</param>
6150 <param name="metadataKey">The metadata key, not null</param>
6151 <param name="metadataValue">The metadata value, not null</param>
6152 </member>
6153 <member name="M:Gallio.Model.Execution.RemoteTestListener.NotifyTestStepStarted(Gallio.Model.Serialization.TestStepData)">
6154 <summary>Notifies the listener that a test step has started execution.</summary>
6155 <param name="step">Information about the test step that is about to start, not null</param>
6156 </member>
6157 <member name="T:Gallio.Model.Execution.StepEventArgs">
6158 <summary>Common event arguments superclass for events pertaining to a particular test step.</summary>
6159 </member>
6160 <member name="P:Gallio.Model.Execution.StepEventArgs.StepId">
6161 <summary>Gets the id of the step this event is about.</summary>
6162 </member>
6163 <member name="T:Gallio.Model.Execution.StubTestContext">
6164 <summary>A stub implementation of <see cref="T:Gallio.Model.Execution.ITestContext" /> using a <see cref="T:Gallio.Model.Execution.StubTestLogWriter" />. Does not fully support nested test steps or other dynamic features.</summary>
6165 </member>
6166 <member name="P:Gallio.Model.Execution.StubTestContext.AssertCount">
6167 <summary>Gets the current assertion count.</summary>
6168 </member>
6169 <member name="P:Gallio.Model.Execution.StubTestContext.Data">
6170 <summary>
6171 <para> Gets the user data collection associated with the context. It may be used to associate arbitrary key/value pairs with the context. </para>
6172 <para> When a new child context is created, it inherits a copy of its parent's data. </para>
6173 </summary>
6174 </member>
6175 <member name="P:Gallio.Model.Execution.StubTestContext.IsFinished">
6176 <summary>Returns true if the step associated with the context has finished execution and completed all <see cref="E:Gallio.Model.Execution.ITestContext.Finishing" /> actions.</summary>
6177 </member>
6178 <member name="P:Gallio.Model.Execution.StubTestContext.LifecyclePhase">
6179 <summary>Gets or sets the lifecycle phase the context is in.</summary>
6180 </member>
6181 <member name="P:Gallio.Model.Execution.StubTestContext.LogWriter">
6182 <summary>
6183 <para> Gets the log writer for the test executing in this context. </para>
6184 <para> Each test step gets its own log writer that is distinct from those of other steps. So the log writer returned by this property is particular to the step represented by this test context. </para>
6185 </summary>
6186 </member>
6187 <member name="P:Gallio.Model.Execution.StubTestContext.Outcome">
6188 <summary>
6189 <para> Gets the step's outcome or its interim outcome if the test is still running. </para>
6190 <para> The value of this property is initially <see cref="P:Gallio.Model.TestOutcome.Passed" /> but may change over the course of execution to reflect the anticipated outcome of the test. When the test finishes, its outcome is frozen. </para>
6191 </summary>
6192 </member>
6193 <member name="P:Gallio.Model.Execution.StubTestContext.Parent">
6194 <summary>Gets the parent context or null if this context has no parent.</summary>
6195 </member>
6196 <member name="P:Gallio.Model.Execution.StubTestContext.TestStep">
6197 <summary>Gets the test step associated with the context.</summary>
6198 </member>
6199 <member name="M:Gallio.Model.Execution.StubTestContext.AddAssertCount(System.Int32)">
6200 <summary>Adds the specified amount to the assert count atomically.</summary>
6201 <param name="value">The amount to add to the assert count</param>
6202 </member>
6203 <member name="M:Gallio.Model.Execution.StubTestContext.AddMetadata(System.String,System.String)">
6204 <summary>Adds metadata to the step that is running in the context.</summary>
6205 <param name="metadataKey">The metadata key</param>
6206 <param name="metadataValue">The metadata value</param>
6207 </member>
6208 <member name="M:Gallio.Model.Execution.StubTestContext.Dispose">
6209 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
6210 </member>
6211 <member name="M:Gallio.Model.Execution.StubTestContext.FinishStep(Gallio.Model.TestOutcome,System.Nullable{System.TimeSpan})">
6212 <summary>Finishes a step and submits its final result.</summary>
6213 <param name="outcome">The final test outcome</param>
6214 <param name="actualDuration">The actual duration of the step, if null the step monitor will record the duration as the total amount of time since the step monitor was started</param>
6215 </member>
6216 <member name="M:Gallio.Model.Execution.StubTestContext.SetInterimOutcome(Gallio.Model.TestOutcome)">
6217 <summary>Sets the step's interim <see cref="P:Gallio.Model.Execution.ITestContext.Outcome" />. The interim outcome is used to communicate the anticipated outcome of the step to later phases of execution.</summary>
6218 </member>
6219 <member name="M:Gallio.Model.Execution.StubTestContext.StartChildStep(Gallio.Model.ITestStep)">
6220 <summary>Starts a child step of the test and returns its context.</summary>
6221 <param name="childStep">The step to start</param>
6222 <returns>The context of the child step</returns>
6223 </member>
6224 <member name="M:Gallio.Model.Execution.StubTestContext.StartChildStep(System.String,Gallio.Reflection.ICodeElementInfo)">
6225 <summary>
6226 <para> Starts a child step of a test and returns its context. </para>
6227 <para> This method is equivalent to calling <see cref="M:Gallio.Model.Execution.ITestContext.StartChildStep(Gallio.Model.ITestStep)" /> using a default implementation of <see cref="T:Gallio.Model.ITestStep" /> that is initialized with <paramref name="name" /> and <paramref name="codeElement" />. </para>
6228 </summary>
6229 <param name="name">The name of the step</param>
6230 <param name="codeElement">The code element, or null if none</param>
6231 <returns>The context of the child step</returns>
6232 </member>
6233 <member name="E:Gallio.Model.Execution.StubTestContext.Finishing">
6234 <summary>
6235 <para> The <see cref="E:Gallio.Model.Execution.ITestContext.Finishing" /> event is raised when the test step is finishing to perform resource reclamation or other updates. </para>
6236 <para> Clients may attach handlers to this event to perform cleanup activities and other tasks as needed. If a new event handler is added and the step has already finished, the handler is immediately invoked. </para>
6237 </summary>
6238 </member>
6239 <member name="T:Gallio.Model.Execution.StubTestContextTracker">
6240 <summary>
6241 <para> The stub context tracker is a dummy implementation of <see cref="T:Gallio.Model.Execution.ITestContextTracker" /> that is used in situations where the runtime environment has not been initialized. </para>
6242 <para> A typical use of this stub is to support the use of certain framework methods from clients that are not being executed inside of the Gallio test harness such as when test code is run by third party tools. </para>This class cannot be inherited.</summary>
6243 </member>
6244 <member name="T:Gallio.Model.Execution.StubTestLogWriter">
6245 <summary>A stub implementation of <see cref="T:Gallio.Model.Execution.ITestLogWriter" /> that logs output to <see cref="P:System.Console.Out" />.</summary>
6246 </member>
6247 <member name="M:Gallio.Model.Execution.StubTestLogWriter.AttachBytesImpl(System.String,System.String,System.Byte[])">
6248 <summary>Attaches an binary attachment to the execution log.</summary>
6249 <param name="attachmentName">The attachment name, unique, not null</param>
6250 <param name="contentType">The content type, not null</param>
6251 <param name="bytes">The binary contents, not null</param>
6252 </member>
6253 <member name="M:Gallio.Model.Execution.StubTestLogWriter.AttachTextImpl(System.String,System.String,System.String)">
6254 <summary>Attaches an text attachment to the execution log.</summary>
6255 <param name="attachmentName">The attachment name, unique, not null</param>
6256 <param name="contentType">The content type, not null</param>
6257 <param name="text">The text contents, not null</param>
6258 </member>
6259 <member name="M:Gallio.Model.Execution.StubTestLogWriter.BeginSectionImpl(System.String,System.String)">
6260 <summary>Begins a section in a particular stream of the execution log.</summary>
6261 <param name="streamName">The log stream name, not null</param>
6262 <param name="sectionName">The name of the section, not null</param>
6263 </member>
6264 <member name="M:Gallio.Model.Execution.StubTestLogWriter.CloseImpl">
6265 <summary>Closes the log writer.</summary>
6266 </member>
6267 <member name="M:Gallio.Model.Execution.StubTestLogWriter.EmbedImpl(System.String,System.String)">
6268 <summary>Embeds an attachment into a particular stream of the execution log.</summary>
6269 <param name="streamName">The log stream name, known to exist, not null</param>
6270 <param name="attachmentName">The attachment name, not null</param>
6271 </member>
6272 <member name="M:Gallio.Model.Execution.StubTestLogWriter.EndSectionImpl(System.String)">
6273 <summary>Ends a section in a particular stream of the execution log.</summary>
6274 <param name="streamName">The log stream name, not null</param>
6275 </member>
6276 <member name="M:Gallio.Model.Execution.StubTestLogWriter.WriteImpl(System.String,System.String)">
6277 <summary>Writes text to a particular stream of the execution log.</summary>
6278 <param name="streamName">The log stream name, not null</param>
6279 <param name="text">The text to write, not null</param>
6280 </member>
6281 <member name="T:Gallio.Model.Execution.TestCommandFactory">
6282 <summary>Creates test commands. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6283 </member>
6284 <member name="M:Gallio.Model.Execution.TestCommandFactory.BuildCommands(Gallio.Model.TestModel,Gallio.Model.Filters.Filter{Gallio.Model.ITest},Gallio.Model.Execution.ITestContextManager)">
6285 <summary>Recursively builds a tree of test commands.</summary>
6286 <param name="testModel">The test model</param>
6287 <param name="filter">The filter for the test model</param>
6288 <param name="contextManager">The test context manager</param>
6289 <returns>The root test command or null if none of the tests in the subtree including <paramref name="testModel" /> matched the filter</returns>
6290 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testModel" />, <paramref name="filter" /> or <paramref name="contextManager" /> is null</exception>
6291 <exception cref="T:Gallio.Model.ModelException">Thrown if an invalid test dependency is found</exception>
6292 </member>
6293 <member name="T:Gallio.Model.Execution.TestContextTrackerAccessor">
6294 <summary>Static service locator class for <see cref="T:Gallio.Model.Execution.ITestContextTracker" />. Handles the case where no <see cref="T:Gallio.Model.Execution.ITestContextTracker" nolink="true" /> is registered with the <see cref="T:Gallio.Runtime.RuntimeAccessor" /> by returning a <see cref="T:Gallio.Model.Execution.StubTestContextTracker" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6295 </member>
6296 <member name="M:Gallio.Model.Execution.TestContextTrackerAccessor.GetInstance">
6297 <summary>Gets the context tracker instance.</summary>
6298 </member>
6299 <member name="T:Gallio.Model.Execution.TestExecutionOptions">
6300 <summary>Provides options that control how test execution occurs.</summary>
6301 </member>
6302 <member name="P:Gallio.Model.Execution.TestExecutionOptions.Filter">
6303 <summary>Gets or sets the filter.</summary>
6304 <value>Defaults to an instance of <see cref="T:Gallio.Model.Filters.AnyFilter`1" />.</value>
6305 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6306 </member>
6307 <member name="P:Gallio.Model.Execution.TestExecutionOptions.SkipDynamicTests">
6308 <summary>
6309 <para> Gets or sets whether to skip running tests that use dynamic data items. </para>
6310 <para> This flag can be useful in combination with <see cref="P:Gallio.Model.Execution.TestExecutionOptions.SkipTestExecution" /> to enumerate non-dynamic tests only. </para>
6311 </summary>
6312 <value>Defaults to <c>false</c></value>
6313 </member>
6314 <member name="P:Gallio.Model.Execution.TestExecutionOptions.SkipTestExecution">
6315 <summary>
6316 <para> Gets or sets whether to skip the execution of tests. </para>
6317 <para> The test runner will go through most of the motions of running tests but will skip the actual execution phase. This option can be used to enumerate data-driven test steps without running them. It can also be used to verify that the execution environment is sane without doing most of the work of running the tests. </para>
6318 </summary>
6319 <value>Defaults to <c>false</c></value>
6320 </member>
6321 <member name="M:Gallio.Model.Execution.TestExecutionOptions.Copy">
6322 <summary>Creates a copy of the options.</summary>
6323 <returns>The copy</returns>
6324 </member>
6325 <member name="T:Gallio.Model.Execution.TestLogWriterUtils">
6326 <summary>Utilities for <see cref="T:Gallio.Model.Execution.ITestLogWriter" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6327 </member>
6328 <member name="M:Gallio.Model.Execution.TestLogWriterUtils.WriteException(Gallio.Model.Execution.ITestLogWriter,System.String,System.Exception,System.String)">
6329 <summary>Writes an exception to the log within its own section with the specified name.</summary>
6330 <param name="writer">The log writer</param>
6331 <param name="streamName">The stream name</param>
6332 <param name="exception">The exception to write</param>
6333 <param name="sectionName">The section name</param>
6334 </member>
6335 <member name="T:Gallio.Model.Execution.ITestCommand">
6336 <summary>A test command requests the execution of a tree of <see cref="T:Gallio.Model.ITest" />s. The test command hierarchy mirrors a filtered subset of the test hierarchy.</summary>
6337 </member>
6338 <member name="P:Gallio.Model.Execution.ITestCommand.Children">
6339 <summary>
6340 <para> Gets the list of child commands to run within the scope of this command. </para>
6341 <para> Each child command represents a test that is a child of the test managed by this command. </para>
6342 <para> The children are listed in an order that is consistent with their dependencies. See class commends for details. </para>
6343 </summary>
6344 </member>
6345 <member name="P:Gallio.Model.Execution.ITestCommand.Dependencies">
6346 <summary>
6347 <para> Gets the list of other commands that this command depends upon. </para>
6348 <para> The dependent commands are guaranteed to have appeared before this command in a pre-order traversal of the command tree. A test command cannot depend on one of its direct ancestors. </para>
6349 </summary>
6350 </member>
6351 <member name="P:Gallio.Model.Execution.ITestCommand.IsExplicit">
6352 <summary>Returns true if the test was explicitly selected by a filter.</summary>
6353 </member>
6354 <member name="P:Gallio.Model.Execution.ITestCommand.PreOrderTraversal">
6355 <summary>Enumerates this command and all of its descendants in pre-order tree traversal.</summary>
6356 </member>
6357 <member name="P:Gallio.Model.Execution.ITestCommand.RootStepFailureCount">
6358 <summary>Gets the number of times that a root step of this test has failed.</summary>
6359 </member>
6360 <member name="P:Gallio.Model.Execution.ITestCommand.Test">
6361 <summary>Gets the test that is to be executed.</summary>
6362 </member>
6363 <member name="P:Gallio.Model.Execution.ITestCommand.TestCount">
6364 <summary>Gets the total number of tests in the command subtree, including itself.</summary>
6365 </member>
6366 <member name="M:Gallio.Model.Execution.ITestCommand.AreDependenciesSatisfied">
6367 <summary>Returns true if all of the dependencies of this test command have been satisfied.</summary>
6368 <returns>True if the dependencies of this test command have been satisfied</returns>
6369 </member>
6370 <member name="M:Gallio.Model.Execution.ITestCommand.GetAllCommands">
6371 <summary>Gets a list consisting of this command and all of its descendants as enumerated by pre-order tree traversal.</summary>
6372 <returns>The list of all command</returns>
6373 </member>
6374 <member name="M:Gallio.Model.Execution.ITestCommand.StartPrimaryChildStep(Gallio.Model.ITestStep)">
6375 <summary>
6376 <para> Starts the primary step of the test associated with this command as a child of the specified test step and returns its test context. </para>
6377 <para> This method is equivalent to calling <see cref="M:Gallio.Model.Execution.ITestCommand.StartStep(Gallio.Model.ITestStep)" /> using a default implementation of <see cref="T:Gallio.Model.ITestStep" /> that is initialized using <paramref name="parentTestStep" />. </para>
6378 </summary>
6379 <param name="parentTestStep">The parent test step, or null if none</param>
6380 <returns>The test context for the new primary test step</returns>
6381 </member>
6382 <member name="M:Gallio.Model.Execution.ITestCommand.StartStep(Gallio.Model.ITestStep)">
6383 <summary>Starts a new step of the test using the specified test step object.</summary>
6384 <param name="testStep">The test step to start</param>
6385 <returns>The test context for the test step</returns>
6386 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testStep" /> is null</exception>
6387 <exception cref="T:System.ArgumentException">Thrown if <paramref name="testStep" /> does not belong to the test associated with this test command</exception>
6388 </member>
6389 <member name="T:Gallio.Model.Execution.ITestContext">
6390 <summary>
6391 <para> The context provides information about the environment in which a test is executing. A new context is created each time a test or test step begins execution. </para>
6392 <para> Contexts are arranged in a hierarchy that corresponds to the order in which the contexts were entered. Thus the context for a test likely has as its parent the context for its containing test fixture. </para>
6393 <para> Arbitrary user data can be associated with a context. Furthermore, client code may attach <see cref="E:Gallio.Model.Execution.ITestContext.Finishing" /> event handlers to perform resource reclamation or other updates when the test step is finished. </para>
6394 <para> When the context is disposed, its associated test step is automatically marked as being finished unless <see cref="M:Gallio.Model.Execution.ITestContext.FinishStep(Gallio.Model.TestOutcome,System.Nullable{System.TimeSpan})" /> was previously called. When this occurs the test step is finished with an outcome of <see cref="P:Gallio.Model.TestOutcome.Error" />. </para>
6395 </summary>
6396 </member>
6397 <member name="P:Gallio.Model.Execution.ITestContext.AssertCount">
6398 <summary>Gets the current assertion count.</summary>
6399 </member>
6400 <member name="P:Gallio.Model.Execution.ITestContext.Data">
6401 <summary>
6402 <para> Gets the user data collection associated with the context. It may be used to associate arbitrary key/value pairs with the context. </para>
6403 <para> When a new child context is created, it inherits a copy of its parent's data. </para>
6404 </summary>
6405 </member>
6406 <member name="P:Gallio.Model.Execution.ITestContext.IsFinished">
6407 <summary>Returns true if the step associated with the context has finished execution and completed all <see cref="E:Gallio.Model.Execution.ITestContext.Finishing" /> actions.</summary>
6408 </member>
6409 <member name="P:Gallio.Model.Execution.ITestContext.LifecyclePhase">
6410 <summary>Gets or sets the lifecycle phase the context is in.</summary>
6411 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6412 <exception cref="T:System.InvalidOperationException">Thrown if attempting to set the phase while the test is not running</exception>
6413 </member>
6414 <member name="P:Gallio.Model.Execution.ITestContext.LogWriter">
6415 <summary>
6416 <para> Gets the log writer for the test executing in this context. </para>
6417 <para> Each test step gets its own log writer that is distinct from those of other steps. So the log writer returned by this property is particular to the step represented by this test context. </para>
6418 </summary>
6419 </member>
6420 <member name="P:Gallio.Model.Execution.ITestContext.Outcome">
6421 <summary>
6422 <para> Gets the step's outcome or its interim outcome if the test is still running. </para>
6423 <para> The value of this property is initially <see cref="P:Gallio.Model.TestOutcome.Passed" /> but may change over the course of execution to reflect the anticipated outcome of the test. When the test finishes, its outcome is frozen. </para>
6424 </summary>
6425 </member>
6426 <member name="P:Gallio.Model.Execution.ITestContext.Parent">
6427 <summary>Gets the parent context or null if this context has no parent.</summary>
6428 </member>
6429 <member name="P:Gallio.Model.Execution.ITestContext.TestStep">
6430 <summary>Gets the test step associated with the context.</summary>
6431 </member>
6432 <member name="M:Gallio.Model.Execution.ITestContext.AddAssertCount(System.Int32)">
6433 <summary>Adds the specified amount to the assert count atomically.</summary>
6434 <param name="value">The amount to add to the assert count</param>
6435 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
6436 </member>
6437 <member name="M:Gallio.Model.Execution.ITestContext.AddMetadata(System.String,System.String)">
6438 <summary>Adds metadata to the step that is running in the context.</summary>
6439 <param name="metadataKey">The metadata key</param>
6440 <param name="metadataValue">The metadata value</param>
6441 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="metadataKey" /> or <paramref name="metadataValue" /> is null</exception>
6442 <exception cref="T:System.InvalidOperationException">Thrown if the test is not running</exception>
6443 </member>
6444 <member name="M:Gallio.Model.Execution.ITestContext.FinishStep(Gallio.Model.TestOutcome,System.Nullable{System.TimeSpan})">
6445 <summary>Finishes a step and submits its final result.</summary>
6446 <param name="outcome">The final test outcome</param>
6447 <param name="actualDuration">The actual duration of the step, if null the step monitor will record the duration as the total amount of time since the step monitor was started</param>
6448 </member>
6449 <member name="M:Gallio.Model.Execution.ITestContext.SetInterimOutcome(Gallio.Model.TestOutcome)">
6450 <summary>Sets the step's interim <see cref="P:Gallio.Model.Execution.ITestContext.Outcome" />. The interim outcome is used to communicate the anticipated outcome of the step to later phases of execution.</summary>
6451 <exception cref="T:System.InvalidOperationException">Thrown if attempting to set the outcome while the test is not running</exception>
6452 </member>
6453 <member name="M:Gallio.Model.Execution.ITestContext.StartChildStep(Gallio.Model.ITestStep)">
6454 <summary>Starts a child step of the test and returns its context.</summary>
6455 <param name="childStep">The step to start</param>
6456 <returns>The context of the child step</returns>
6457 <exception cref="T:System.InvalidOperationException">Thrown if the step has finished</exception>
6458 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="childStep" /> is null</exception>
6459 <exception cref="T:System.ArgumentException">Thrown if <paramref name="childStep" /> is not a child of the this step</exception>
6460 </member>
6461 <member name="M:Gallio.Model.Execution.ITestContext.StartChildStep(System.String,Gallio.Reflection.ICodeElementInfo)">
6462 <summary>
6463 <para> Starts a child step of a test and returns its context. </para>
6464 <para> This method is equivalent to calling <see cref="M:Gallio.Model.Execution.ITestContext.StartChildStep(Gallio.Model.ITestStep)" /> using a default implementation of <see cref="T:Gallio.Model.ITestStep" /> that is initialized with <paramref name="name" /> and <paramref name="codeElement" />. </para>
6465 </summary>
6466 <param name="name">The name of the step</param>
6467 <param name="codeElement">The code element, or null if none</param>
6468 <returns>The context of the child step</returns>
6469 <exception cref="T:System.InvalidOperationException">Thrown if the step has finished</exception>
6470 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> is null</exception>
6471 </member>
6472 <member name="E:Gallio.Model.Execution.ITestContext.Finishing">
6473 <summary>
6474 <para> The <see cref="E:Gallio.Model.Execution.ITestContext.Finishing" /> event is raised when the test step is finishing to perform resource reclamation or other updates. </para>
6475 <para> Clients may attach handlers to this event to perform cleanup activities and other tasks as needed. If a new event handler is added and the step has already finished, the handler is immediately invoked. </para>
6476 </summary>
6477 </member>
6478 <member name="T:Gallio.Model.Execution.ITestContextManager">
6479 <summary>A test context manager functions as a factory for <see cref="T:Gallio.Model.Execution.ITestContext" /> objects and tracks them with an <see cref="T:Gallio.Model.Execution.ITestContextTracker" />.</summary>
6480 </member>
6481 <member name="P:Gallio.Model.Execution.ITestContextManager.ContextTracker">
6482 <summary>Gets the test context tracker.</summary>
6483 </member>
6484 <member name="M:Gallio.Model.Execution.ITestContextManager.StartStep(Gallio.Model.ITestStep)">
6485 <summary>Starts a test step and returns its associated test context.</summary>
6486 <param name="testStep">The test step</param>
6487 <returns>The test context associated with the test step</returns>
6488 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testStep" /> is null</exception>
6489 </member>
6490 <member name="T:Gallio.Model.Execution.ITestContextTracker">
6491 <summary>The context tracker tracks the <see cref="T:Gallio.Model.Execution.ITestContext" /> associated with threads.</summary>
6492 </member>
6493 <member name="P:Gallio.Model.Execution.ITestContextTracker.CurrentContext">
6494 <summary>
6495 <para> Gets the context of the current thread, or null if there is no current context. </para>
6496 <para> A thread's current context is determined in the following manner: <list type="bullet"><item>If the thread's context stack is not empty then the top-most item of the stack is used. <see cref="M:Gallio.Model.Execution.ITestContextTracker.EnterContext(Gallio.Model.Execution.ITestContext)" /> pushed a new item on this stack.</item><item>Otherwise, if the thread has an default context, then it is used. <see cref="M:Gallio.Model.Execution.ITestContextTracker.SetThreadDefaultContext(System.Threading.Thread,Gallio.Model.Execution.ITestContext)" /> sets the default context for a thread.</item><item>Otherwise, the <see cref="P:Gallio.Model.Execution.ITestContextTracker.GlobalContext" /> is used.</item></list></para>
6497 <para> Context information may flow across threads by inheritance such that a child thread acquires the context of its parent. However, each thread has its own context stack distinct from that of any other. </para>
6498 </summary>
6499 </member>
6500 <member name="P:Gallio.Model.Execution.ITestContextTracker.GlobalContext">
6501 <summary>Gets or the global context of the environment, or null if there is no such context.</summary>
6502 </member>
6503 <member name="M:Gallio.Model.Execution.ITestContextTracker.EnterContext(Gallio.Model.Execution.ITestContext)">
6504 <summary>Enters a context.</summary>
6505 <param name="context">The context to enter, or null to enter a scope without a context</param>
6506 <returns>A cookie that can be used to restore the current thread's context to its previous value when disposed</returns>
6507 </member>
6508 <member name="M:Gallio.Model.Execution.ITestContextTracker.GetThreadDefaultContext(System.Threading.Thread)">
6509 <summary>Gets the default context for the specified thread.</summary>
6510 <param name="thread">The thread</param>
6511 <returns>The default context of the thread</returns>
6512 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="thread" /> is null</exception>
6513 </member>
6514 <member name="M:Gallio.Model.Execution.ITestContextTracker.SetThreadDefaultContext(System.Threading.Thread,Gallio.Model.Execution.ITestContext)">
6515 <summary>Sets the default context for the specified thread.</summary>
6516 <param name="thread">The thread</param>
6517 <param name="context">The context to associate with the thread, or null to reset the thread's default context to inherit the <see cref="P:Gallio.Model.Execution.ITestContextTracker.GlobalContext" /> once again</param>
6518 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="thread" /> is null</exception>
6519 </member>
6520 <member name="T:Gallio.Model.Execution.ITestController">
6521 <summary>A test controller runs a batch of tests.</summary>
6522 </member>
6523 <member name="M:Gallio.Model.Execution.ITestController.RunTests(Gallio.Model.Execution.ITestCommand,Gallio.Model.ITestStep,Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
6524 <summary>Runs the tests.</summary>
6525 <param name="rootTestCommand">The root test monitor</param>
6526 <param name="parentTestStep">The parent test step, or null if starting a root step</param>
6527 <param name="options">The test execution options</param>
6528 <param name="progressMonitor">The progress monitor</param>
6529 <returns>The combined outcome of the root test command</returns>
6530 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rootTestCommand" /><paramref name="progressMonitor" />, or <paramref name="options" /> is null</exception>
6531 </member>
6532 <member name="T:Gallio.Model.Execution.ITestListener">
6533 <summary>An test listener observes the progress of test execution as a series of events.</summary>
6534 </member>
6535 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepFinished(System.String,Gallio.Model.TestResult)">
6536 <summary>Notifies the listener that a test step has finished execution.</summary>
6537 <param name="stepId">The id of the test step, not null</param>
6538 <param name="result">The test result, not null</param>
6539 </member>
6540 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLifecyclePhaseChanged(System.String,System.String)">
6541 <summary>Notifies the listener that a test step has changed lifecycle phase.</summary>
6542 <param name="stepId">The id of the test step, not null</param>
6543 <param name="lifecyclePhase">The lifecycle phase name, not null</param>
6544 </member>
6545 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLogBinaryAttachmentAdded(System.String,System.String,System.String,System.Byte[])">
6546 <summary>Notifies the listener that a binary attachment has been added to a test step log.</summary>
6547 <param name="stepId">The id of the test step, not null</param>
6548 <param name="attachmentName">The attachment name, not null</param>
6549 <param name="contentType">The content type, not null</param>
6550 <param name="bytes">The binary contents, not null</param>
6551 </member>
6552 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLogStreamAttachmentEmbedded(System.String,System.String,System.String)">
6553 <summary>Notifies the listener that an attachment has been embedded into a test step log stream.</summary>
6554 <param name="stepId">The id of the test step, not null</param>
6555 <param name="streamName">The stream name, not null</param>
6556 <param name="attachmentName">The attachment name, not null</param>
6557 </member>
6558 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLogStreamSectionFinished(System.String,System.String)">
6559 <summary>Notifies the listener that a section has finished within a test step log stream.</summary>
6560 <param name="stepId">The id of the test step, not null</param>
6561 <param name="streamName">The stream name, not null</param>
6562 </member>
6563 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLogStreamSectionStarted(System.String,System.String,System.String)">
6564 <summary>Notifies the listener that a section has been started within a test step log stream.</summary>
6565 <param name="stepId">The id of the test step, not null</param>
6566 <param name="streamName">The stream name, not null</param>
6567 <param name="sectionName">The section name, not null</param>
6568 </member>
6569 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLogStreamTextWritten(System.String,System.String,System.String)">
6570 <summary>Notifies the listener that text has been written to a test step log stream.</summary>
6571 <param name="stepId">The id of the test step, not null</param>
6572 <param name="streamName">The stream name, not null</param>
6573 <param name="text">The text, not null</param>
6574 </member>
6575 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepLogTextAttachmentAdded(System.String,System.String,System.String,System.String)">
6576 <summary>Notifies the listener that a text attachment has been added to a test step log.</summary>
6577 <param name="stepId">The id of the test step, not null</param>
6578 <param name="attachmentName">The attachment name, not null</param>
6579 <param name="contentType">The content type, not null</param>
6580 <param name="text">The text contents, not null</param>
6581 </member>
6582 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepMetadataAdded(System.String,System.String,System.String)">
6583 <summary>Notifies the listener that a test step has dynamically added metadata to itself.</summary>
6584 <param name="stepId">The id of the test step, not null</param>
6585 <param name="metadataKey">The metadata key, not null</param>
6586 <param name="metadataValue">The metadata value, not null</param>
6587 </member>
6588 <member name="M:Gallio.Model.Execution.ITestListener.NotifyTestStepStarted(Gallio.Model.Serialization.TestStepData)">
6589 <summary>Notifies the listener that a test step has started execution.</summary>
6590 <param name="step">Information about the test step that is about to start, not null</param>
6591 </member>
6592 <member name="T:Gallio.Model.Execution.ITestLogWriter">
6593 <summary>Writes messages to a test's execution log.</summary>
6594 </member>
6595 <member name="M:Gallio.Model.Execution.ITestLogWriter.AttachBytes(System.String,System.String,System.Byte[])">
6596 <summary>Attaches an binary attachment to the execution log.</summary>
6597 <param name="attachmentName">The attachment name</param>
6598 <param name="contentType">The content type</param>
6599 <param name="bytes">The binary contents</param>
6600 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachmentName" />, <paramref name="contentType" /> or <paramref name="bytes" /> is null</exception>
6601 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
6602 <exception cref="T:System.InvalidOperationException">Thrown if the log writer has been closed</exception>
6603 </member>
6604 <member name="M:Gallio.Model.Execution.ITestLogWriter.AttachText(System.String,System.String,System.String)">
6605 <summary>Attaches an text attachment to the execution log.</summary>
6606 <param name="attachmentName">The attachment name</param>
6607 <param name="contentType">The content type</param>
6608 <param name="text">The text contents</param>
6609 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="attachmentName" />, <paramref name="contentType" /> or <paramref name="text" /> is null</exception>
6610 <exception cref="T:System.InvalidOperationException">Thrown if there is already an attachment with the same name</exception>
6611 <exception cref="T:System.InvalidOperationException">Thrown if the log writer has been closed</exception>
6612 </member>
6613 <member name="M:Gallio.Model.Execution.ITestLogWriter.BeginSection(System.String,System.String)">
6614 <summary>Begins a section in a particular stream of the execution log.</summary>
6615 <param name="streamName">The log stream name</param>
6616 <param name="sectionName">The name of the section</param>
6617 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="streamName" /> or <paramref name="sectionName" /> is null</exception>
6618 <exception cref="T:System.InvalidOperationException">Thrown if the log writer has been closed</exception>
6619 </member>
6620 <member name="M:Gallio.Model.Execution.ITestLogWriter.Close">
6621 <summary>Closes the log writer.</summary>
6622 </member>
6623 <member name="M:Gallio.Model.Execution.ITestLogWriter.Embed(System.String,System.String)">
6624 <summary>Embeds an attachment into a particular stream of the execution log.</summary>
6625 <param name="streamName">The log stream name</param>
6626 <param name="attachmentName">The attachment name</param>
6627 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="streamName" /> or <paramref name="attachmentName" /> is null</exception>
6628 <exception cref="T:System.InvalidOperationException">Thrown if there is no attachment with the specified name</exception>
6629 <exception cref="T:System.InvalidOperationException">Thrown if the log writer has been closed</exception>
6630 </member>
6631 <member name="M:Gallio.Model.Execution.ITestLogWriter.EndSection(System.String)">
6632 <summary>Ends a section in a particular stream of the execution log.</summary>
6633 <param name="streamName">The log stream name</param>
6634 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="streamName" /> is null</exception>
6635 <exception cref="T:System.InvalidOperationException">Thrown if there is no current section in the stream</exception>
6636 <exception cref="T:System.InvalidOperationException">Thrown if the log writer has been closed</exception>
6637 </member>
6638 <member name="M:Gallio.Model.Execution.ITestLogWriter.Write(System.String,System.String)">
6639 <summary>Writes text to a particular stream of the execution log.</summary>
6640 <param name="streamName">The log stream name</param>
6641 <param name="text">The text to write</param>
6642 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="streamName" /> or <paramref name="text" /> is null</exception>
6643 <exception cref="T:System.InvalidOperationException">Thrown if the log writer has been closed</exception>
6644 </member>
6645 <member name="T:Gallio.Model.Filters.AndFilter`1">
6646 <summary>A filter combinator that matches a value when all of its constituent filters match the value.</summary>
6647 </member>
6648 <member name="P:Gallio.Model.Filters.AndFilter`1.Filters">
6649 <summary>Gets the filters that must jointly be matched. If the array is empty, the filter matches everything.</summary>
6650 </member>
6651 <member name="T:Gallio.Model.Filters.AnyFilter`1">
6652 <summary>A filter that matches anything and always returns true.</summary>
6653 </member>
6654 <member name="T:Gallio.Model.Filters.AssemblyFilter`1">
6655 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> matches the specified assembly name filter.</summary>
6656 </member>
6657 <member name="T:Gallio.Model.Filters.EqualityFilter`1">
6658 <summary>An equality filter compares values for strict equality. This class cannot be inherited.</summary>
6659 </member>
6660 <member name="P:Gallio.Model.Filters.EqualityFilter`1.Comparand">
6661 <summary>Gets the value to compare for equality.</summary>
6662 </member>
6663 <member name="T:Gallio.Model.Filters.Filter`1">
6664 <summary>A filter is a serializable predicate. The framework uses filters to select among tests discovered through the process of test enumeration. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6665 </member>
6666 <member name="M:Gallio.Model.Filters.Filter`1.Accept(Gallio.Model.Filters.IFilterVisitor)">
6667 <summary>Accepts a visitor and performs double-dispatch.</summary>
6668 <param name="visitor">The visitor, never null</param>
6669 </member>
6670 <member name="M:Gallio.Model.Filters.Filter`1.IsMatch(`0)">
6671 <summary>Determines whether the filter matches the value.</summary>
6672 <param name="value">The value to consider, never null</param>
6673 <returns>True if the filter matches the value</returns>
6674 </member>
6675 <member name="M:Gallio.Model.Filters.Filter`1.ToFilterExpr">
6676 <summary>Formats the filter to a string suitable for parsing by <see cref="T:Gallio.Model.Filters.FilterParser`1" />.</summary>
6677 <returns>The formatted filter expression</returns>
6678 </member>
6679 <member name="T:Gallio.Model.Filters.FilterFormatter">
6680 <summary>Formats filters in such manner that they can be reparsed using the <see cref="T:Gallio.Model.Filters.FilterParser`1" />.</summary>
6681 </member>
6682 <member name="M:Gallio.Model.Filters.FilterFormatter.ToString">
6683 <summary>Gets the formatted filter contents.</summary>
6684 <returns>The formatted filter</returns>
6685 </member>
6686 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitAndFilter``1(Gallio.Model.Filters.AndFilter{``0})">
6687 <summary>Visits a <see cref="T:Gallio.Model.Filters.AndFilter`1" />.</summary>
6688 <param name="filter">The filter</param>
6689 </member>
6690 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitAnyFilter``1(Gallio.Model.Filters.AnyFilter{``0})">
6691 <summary>Visits a <see cref="T:Gallio.Model.Filters.AnyFilter`1" />.</summary>
6692 <param name="filter">The filter</param>
6693 </member>
6694 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitEqualityFilter``1(Gallio.Model.Filters.EqualityFilter{``0})">
6695 <summary>Visits a <see cref="T:Gallio.Model.Filters.EqualityFilter`1" />.</summary>
6696 <param name="filter">The filter</param>
6697 </member>
6698 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitNoneFilter``1(Gallio.Model.Filters.NoneFilter{``0})">
6699 <summary>Visits a <see cref="T:Gallio.Model.Filters.NoneFilter`1" />.</summary>
6700 <param name="filter">The filter</param>
6701 </member>
6702 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitNotFilter``1(Gallio.Model.Filters.NotFilter{``0})">
6703 <summary>Visits a <see cref="T:Gallio.Model.Filters.NotFilter`1" />.</summary>
6704 <param name="filter">The filter</param>
6705 </member>
6706 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitOrFilter``1(Gallio.Model.Filters.OrFilter{``0})">
6707 <summary>Visits a <see cref="T:Gallio.Model.Filters.OrFilter`1" />.</summary>
6708 <param name="filter">The filter</param>
6709 </member>
6710 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitPropertyFilter``1(Gallio.Model.Filters.PropertyFilter{``0})">
6711 <summary>Visits a <see cref="T:Gallio.Model.Filters.PropertyFilter`1" />.</summary>
6712 <param name="filter">The filter</param>
6713 </member>
6714 <member name="M:Gallio.Model.Filters.FilterFormatter.VisitRegexFilter(Gallio.Model.Filters.RegexFilter)">
6715 <summary>Visits a <see cref="T:Gallio.Model.Filters.RegexFilter" />.</summary>
6716 <param name="filter">The filter</param>
6717 </member>
6718 <member name="T:Gallio.Model.Filters.FilterParseException">
6719 <summary>The type of exception thrown when a filter cannot be parsed.</summary>
6720 </member>
6721 <member name="T:Gallio.Model.Filters.FilterParser`1">
6722 <summary>A filter parser constructs filters from its textual representation as a filter expression.</summary>
6723 </member>
6724 <member name="M:Gallio.Model.Filters.FilterParser`1.Parse(System.String)">
6725 <summary>Creates a filter from its textual representation as a filter expression.</summary>
6726 <param name="filterExpr">The filter expression</param>
6727 <returns>The parsed filter</returns>
6728 </member>
6729 <member name="T:Gallio.Model.Filters.FilterUtils">
6730 <summary>Provides utilities for manipulating filters. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6731 </member>
6732 <member name="M:Gallio.Model.Filters.FilterUtils.ParseTestFilter(System.String)">
6733 <summary>Parses a test filter.</summary>
6734 <param name="filterExpr">The filter expression</param>
6735 <returns>The parsed filter</returns>
6736 </member>
6737 <member name="T:Gallio.Model.Filters.IdFilter`1">
6738 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.Id" /> matches the specified id filter.</summary>
6739 </member>
6740 <member name="T:Gallio.Model.Filters.MemberFilter`1">
6741 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> matches the specified member name filter. This filter should normally be used together with a <see cref="T:System.Reflection.TypeFilter" /> to ensure the accuracy of the member match.</summary>
6742 </member>
6743 <member name="T:Gallio.Model.Filters.MetadataFilter`1">
6744 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.Metadata" /> has a key with a value that matches the value filter.</summary>
6745 </member>
6746 <member name="T:Gallio.Model.Filters.ModelComponentFilterFactory`1">
6747 <summary>Builds filters for <see cref="T:Gallio.Model.ITestComponent" /> objects.</summary>
6748 <typeparam name="T">The <see cref="T:Gallio.Model.ITestComponent" /> subtype</typeparam>
6749 </member>
6750 <member name="M:Gallio.Model.Filters.ModelComponentFilterFactory`1.CreateFilter(System.String,Gallio.Model.Filters.Filter{System.String})">
6751 <summary>Creates a filter from a specification</summary>
6752 <param name="key">The filter key that identifies the kind of filter to create</param>
6753 <param name="valueFilter">The filter to use as a rule for matching values</param>
6754 <returns>The filter</returns>
6755 </member>
6756 <member name="T:Gallio.Model.Filters.NameFilter`1">
6757 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.Name" /> matches the specified name filter.</summary>
6758 </member>
6759 <member name="T:Gallio.Model.Filters.NamespaceFilter`1">
6760 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> matches the specified namespace name.</summary>
6761 </member>
6762 <member name="T:Gallio.Model.Filters.NoneFilter`1">
6763 <summary>A filter that matches nothing and always returns false.</summary>
6764 </member>
6765 <member name="T:Gallio.Model.Filters.NotFilter`1">
6766 <summary>A filter combinator that is the negation of another filter.</summary>
6767 </member>
6768 <member name="P:Gallio.Model.Filters.NotFilter`1.Filter">
6769 <summary>Gets the filter to be negated.</summary>
6770 </member>
6771 <member name="T:Gallio.Model.Filters.OrFilter`1">
6772 <summary>A filter combinator that matches a value when at least one of its constituent filters matches the value.</summary>
6773 </member>
6774 <member name="P:Gallio.Model.Filters.OrFilter`1.Filters">
6775 <summary>Gets the filters from which at least one match must be found. If the array is empty, the filter matches everything.</summary>
6776 </member>
6777 <member name="T:Gallio.Model.Filters.PropertyFilter`1">
6778 <summary>Abstract base class for filters that encapsulate a rule for selecting some property of an object to be compared against a string value filter. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6779 </member>
6780 <member name="P:Gallio.Model.Filters.PropertyFilter`1.Key">
6781 <summary>Gets the key that represents the filtered property.</summary>
6782 </member>
6783 <member name="P:Gallio.Model.Filters.PropertyFilter`1.ValueFilter">
6784 <summary>Gets the string value filter.</summary>
6785 </member>
6786 <member name="T:Gallio.Model.Filters.RegexFilter">
6787 <summary>A regex filter matches strings against a given <see cref="P:Gallio.Model.Filters.RegexFilter.Regex" />. Null string values are converted to empty strings for regex evaluation purposes. This class cannot be inherited.</summary>
6788 </member>
6789 <member name="P:Gallio.Model.Filters.RegexFilter.Regex">
6790 <summary>Gets the regular expression for matching strings.</summary>
6791 </member>
6792 <member name="T:Gallio.Model.Filters.TypeFilter`1">
6793 <summary>A filter that matches objects whose <see cref="P:Gallio.Model.ITestComponent.CodeElement" /> matches the specified type name.</summary>
6794 </member>
6795 <member name="T:Gallio.Model.Filters.IFilterFactory`1">
6796 <summary>Creates filters of a given type based on a specification that consists of a filter key and a rule for matching values.</summary>
6797 <typeparam name="T">The filter type</typeparam>
6798 </member>
6799 <member name="M:Gallio.Model.Filters.IFilterFactory`1.CreateFilter(System.String,Gallio.Model.Filters.Filter{System.String})">
6800 <summary>Creates a filter from a specification</summary>
6801 <param name="key">The filter key that identifies the kind of filter to create</param>
6802 <param name="valueFilter">The filter to use as a rule for matching values</param>
6803 <returns>The filter</returns>
6804 </member>
6805 <member name="T:Gallio.Model.Filters.IFilterVisitor">
6806 <summary>Visits the structure of filters.</summary>
6807 </member>
6808 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitAndFilter``1(Gallio.Model.Filters.AndFilter{``0})">
6809 <summary>Visits a <see cref="T:Gallio.Model.Filters.AndFilter`1" />.</summary>
6810 <param name="filter">The filter</param>
6811 </member>
6812 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitAnyFilter``1(Gallio.Model.Filters.AnyFilter{``0})">
6813 <summary>Visits a <see cref="T:Gallio.Model.Filters.AnyFilter`1" />.</summary>
6814 <param name="filter">The filter</param>
6815 </member>
6816 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitEqualityFilter``1(Gallio.Model.Filters.EqualityFilter{``0})">
6817 <summary>Visits a <see cref="T:Gallio.Model.Filters.EqualityFilter`1" />.</summary>
6818 <param name="filter">The filter</param>
6819 </member>
6820 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitNoneFilter``1(Gallio.Model.Filters.NoneFilter{``0})">
6821 <summary>Visits a <see cref="T:Gallio.Model.Filters.NoneFilter`1" />.</summary>
6822 <param name="filter">The filter</param>
6823 </member>
6824 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitNotFilter``1(Gallio.Model.Filters.NotFilter{``0})">
6825 <summary>Visits a <see cref="T:Gallio.Model.Filters.NotFilter`1" />.</summary>
6826 <param name="filter">The filter</param>
6827 </member>
6828 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitOrFilter``1(Gallio.Model.Filters.OrFilter{``0})">
6829 <summary>Visits a <see cref="T:Gallio.Model.Filters.OrFilter`1" />.</summary>
6830 <param name="filter">The filter</param>
6831 </member>
6832 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitPropertyFilter``1(Gallio.Model.Filters.PropertyFilter{``0})">
6833 <summary>Visits a <see cref="T:Gallio.Model.Filters.PropertyFilter`1" />.</summary>
6834 <param name="filter">The filter</param>
6835 </member>
6836 <member name="M:Gallio.Model.Filters.IFilterVisitor.VisitRegexFilter(Gallio.Model.Filters.RegexFilter)">
6837 <summary>Visits a <see cref="T:Gallio.Model.Filters.RegexFilter" />.</summary>
6838 <param name="filter">The filter</param>
6839 </member>
6840 <member name="T:Gallio.Model.Serialization.AnnotationData">
6841 <summary>Describes an annotation in a portable manner for serialization.</summary>
6842 </member>
6843 <member name="P:Gallio.Model.Serialization.AnnotationData.CodeLocation">
6844 <summary>Gets or sets the code location associated with the annotation.</summary>
6845 </member>
6846 <member name="P:Gallio.Model.Serialization.AnnotationData.CodeReference">
6847 <summary>Gets or sets the code reference associated with the annotation.</summary>
6848 </member>
6849 <member name="P:Gallio.Model.Serialization.AnnotationData.Details">
6850 <summary>Gets or sets additional details such as exception text, or null if none.</summary>
6851 </member>
6852 <member name="P:Gallio.Model.Serialization.AnnotationData.Message">
6853 <summary>Gets or sets the annotation message.</summary>
6854 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6855 </member>
6856 <member name="P:Gallio.Model.Serialization.AnnotationData.Type">
6857 <summary>Gets or sets the annotation type.</summary>
6858 </member>
6859 <member name="M:Gallio.Model.Serialization.AnnotationData.Log(Gallio.Runtime.Logging.ILogger,System.Boolean)">
6860 <summary>Writes the annotation to a logger for presentation.</summary>
6861 <param name="logger">The logger</param>
6862 <param name="includePrefix">If true, includes an identifying prefix to describe the annotation type, otherwise we assume that the logger will do its own thing based on the log severity</param>
6863 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="logger" /> is null</exception>
6864 </member>
6865 <member name="T:Gallio.Model.Serialization.TestComponentData">
6866 <summary>Describes a test model component in a portable manner for serialization. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
6867 </member>
6868 <member name="P:Gallio.Model.Serialization.TestComponentData.CodeLocation">
6869 <summary>Gets or sets the code location or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if not available.</summary>
6870 </member>
6871 <member name="P:Gallio.Model.Serialization.TestComponentData.CodeReference">
6872 <summary>Gets or sets the code reference or <see cref="F:Gallio.Reflection.CodeReference.Unknown" /> if not available.</summary>
6873 </member>
6874 <member name="P:Gallio.Model.Serialization.TestComponentData.Id">
6875 <summary>Gets or sets the test component id. (non-null)</summary>
6876 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6877 </member>
6878 <member name="P:Gallio.Model.Serialization.TestComponentData.Metadata">
6879 <summary>Gets or sets the metadata map. (non-null)</summary>
6880 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6881 </member>
6882 <member name="P:Gallio.Model.Serialization.TestComponentData.Name">
6883 <summary>Gets or sets the test component name. (non-null)</summary>
6884 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6885 </member>
6886 <member name="T:Gallio.Model.Serialization.TestData">
6887 <summary>Describes a test in a portable manner for serialization. This class cannot be inherited.</summary>
6888 </member>
6889 <member name="P:Gallio.Model.Serialization.TestData.Children">
6890 <summary>Gets the mutable list of children.</summary>
6891 </member>
6892 <member name="P:Gallio.Model.Serialization.TestData.FullName">
6893 <summary>Gets or sets the full name of the test.</summary>
6894 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6895 </member>
6896 <member name="P:Gallio.Model.Serialization.TestData.IsTestCase">
6897 <summary>Gets or sets whether this node is a test case.</summary>
6898 </member>
6899 <member name="P:Gallio.Model.Serialization.TestData.Parameters">
6900 <summary>Gets the mutable list of parameters.</summary>
6901 </member>
6902 <member name="T:Gallio.Model.Serialization.TestModelData">
6903 <summary>The test model captures the root of the test data tree along with an index by id. This class cannot be inherited.</summary>
6904 </member>
6905 <member name="P:Gallio.Model.Serialization.TestModelData.AllTests">
6906 <summary>Recursively enumerates all tests including the root test.</summary>
6907 </member>
6908 <member name="P:Gallio.Model.Serialization.TestModelData.Annotations">
6909 <summary>Gets the mutable list of annotations.</summary>
6910 </member>
6911 <member name="P:Gallio.Model.Serialization.TestModelData.RootTest">
6912 <summary>Gets or sets the root test in the model.</summary>
6913 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6914 </member>
6915 <member name="M:Gallio.Model.Serialization.TestModelData.GetErrorAnnotationCount">
6916 <summary>Gets the number of error annotations on the model.</summary>
6917 <returns>The numer of error annotations present</returns>
6918 </member>
6919 <member name="M:Gallio.Model.Serialization.TestModelData.GetTestById(System.String)">
6920 <summary>Gets a test by its id.</summary>
6921 <param name="testId">The test id</param>
6922 <returns>The test, or null if not found</returns>
6923 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testId" /> is null</exception>
6924 </member>
6925 <member name="M:Gallio.Model.Serialization.TestModelData.MergeFrom(Gallio.Model.Serialization.TestModelData)">
6926 <summary>Merges the contents of another test model with this one.</summary>
6927 <param name="source">The source test model</param>
6928 </member>
6929 <member name="M:Gallio.Model.Serialization.TestModelData.ResetIndex">
6930 <summary>Resets the test index by id in case the test model has been modified.</summary>
6931 </member>
6932 <member name="T:Gallio.Model.Serialization.TestPackageData">
6933 <summary>Describes a test package in a portable manner for serialization. This class cannot be inherited.</summary>
6934 </member>
6935 <member name="P:Gallio.Model.Serialization.TestPackageData.Config">
6936 <summary>Gets or sets the test package configuration.</summary>
6937 </member>
6938 <member name="T:Gallio.Model.Serialization.TestParameterData">
6939 <summary>Describes a test parameter in a portable manner for serialization. This class cannot be inherited.</summary>
6940 </member>
6941 <member name="T:Gallio.Model.Serialization.TestStepData">
6942 <summary>Describes a test step in a portable manner for serialization. This class cannot be inherited.</summary>
6943 </member>
6944 <member name="P:Gallio.Model.Serialization.TestStepData.FullName">
6945 <summary>Gets or sets the full name of the step.</summary>
6946 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6947 </member>
6948 <member name="P:Gallio.Model.Serialization.TestStepData.IsDynamic">
6949 <summary>Gets or sets whether the test step is dynamic.</summary>
6950 </member>
6951 <member name="P:Gallio.Model.Serialization.TestStepData.IsPrimary">
6952 <summary>Gets or sets whether the test step is primary.</summary>
6953 </member>
6954 <member name="P:Gallio.Model.Serialization.TestStepData.IsTestCase">
6955 <summary>Gets or sets whether the test step represents a test case.</summary>
6956 </member>
6957 <member name="P:Gallio.Model.Serialization.TestStepData.ParentId">
6958 <summary>Gets or sets the id of the parent step.</summary>
6959 </member>
6960 <member name="P:Gallio.Model.Serialization.TestStepData.TestId">
6961 <summary>Gets or sets the id of the test to which the step belongs.</summary>
6962 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
6963 </member>
6964 <member name="T:Gallio.Reflection.AssemblyUtils">
6965 <summary>Provides helpers for working with assemblies. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6966 </member>
6967 <member name="M:Gallio.Reflection.AssemblyUtils.GetAssemblyLocalPath(System.Reflection.Assembly)">
6968 <summary>Gets the local path of the assembly prior to shadow copying. Returns null if the original location of the assembly is not local.</summary>
6969 <param name="assembly">The assembly</param>
6970 <returns>The original non-shadow copied local path of the assembly, or null if none</returns>
6971 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
6972 </member>
6973 <member name="M:Gallio.Reflection.AssemblyUtils.GetAssemblyLocation(System.Reflection.Assembly)">
6974 <summary>Gets the location of the assembly, or null if it is dynamic.</summary>
6975 <param name="assembly">The assembly</param>
6976 <returns>The assembly location as returned by <see cref="P:System.Reflection.Assembly.Location" /> or null if the assembly is dynamic and does not have a location</returns>
6977 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
6978 </member>
6979 <member name="M:Gallio.Reflection.AssemblyUtils.GetFriendlyAssemblyCodeBase(System.Reflection.Assembly)">
6980 <summary>If the assembly codebase is a local file, returns it as a local path. Otherwise, returns the assembly codebase Uri.</summary>
6981 <param name="assembly">The assembly</param>
6982 <returns>The assembly's path</returns>
6983 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
6984 </member>
6985 <member name="M:Gallio.Reflection.AssemblyUtils.GetFriendlyAssemblyLocation(System.Reflection.Assembly)">
6986 <summary>Gets the original local path of the assembly prior to shadow copying, if it is local. Otherwise, returns the shadow-copied assembly location.</summary>
6987 <param name="assembly">The assembly</param>
6988 <returns>The local path of the assembly, preferably its original non-shadow copied location, or null if the assembly is dynamic and does not have a location</returns>
6989 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
6990 </member>
6991 <member name="T:Gallio.Reflection.AttributeUtils">
6992 <summary>Manipulates attributes described by their metadata. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
6993 </member>
6994 <member name="M:Gallio.Reflection.AttributeUtils.GetAttribute``1(Gallio.Reflection.ICodeElementInfo,System.Boolean)">
6995 <summary>Gets the attribute of the specified type, or null if none.</summary>
6996 <typeparam name="T">The attribute type</typeparam>
6997 <param name="element">The code element</param>
6998 <param name="inherit">If true, includes inherited attributes</param>
6999 <returns>The attribute, or null if none</returns>
7000 <exception cref="T:System.InvalidOperationException">Thrown if the code element has multiple attributes of the specified type</exception>
7001 </member>
7002 <member name="M:Gallio.Reflection.AttributeUtils.GetAttribute(Gallio.Reflection.ICodeElementInfo,System.Type,System.Boolean)">
7003 <summary>Gets the attribute of the specified type, or null if none.</summary>
7004 <param name="element">The code element</param>
7005 <param name="attributeType">The attribute type</param>
7006 <param name="inherit">If true, includes inherited attributes</param>
7007 <returns>The attribute, or null if none</returns>
7008 <exception cref="T:System.InvalidOperationException">Thrown if the code element has multiple attributes of the specified type</exception>
7009 </member>
7010 <member name="M:Gallio.Reflection.AttributeUtils.GetAttributes``1(Gallio.Reflection.ICodeElementInfo,System.Boolean)">
7011 <summary>Gets the attributes of the specified type.</summary>
7012 <typeparam name="T">The attribute type</typeparam>
7013 <param name="element">The code element</param>
7014 <param name="inherit">If true, includes inherited attributes</param>
7015 <returns>The attributes</returns>
7016 </member>
7017 <member name="M:Gallio.Reflection.AttributeUtils.GetAttributes(Gallio.Reflection.ICodeElementInfo,System.Type,System.Boolean)">
7018 <summary>Gets the attributes of the specified type.</summary>
7019 <param name="element">The code element</param>
7020 <param name="attributeType">The attribute type</param>
7021 <param name="inherit">If true, includes inherited attributes</param>
7022 <returns>The attributes</returns>
7023 </member>
7024 <member name="M:Gallio.Reflection.AttributeUtils.HasAttribute``1(Gallio.Reflection.ICodeElementInfo,System.Boolean)">
7025 <summary>Returns true if the code element has an attribute of the specified type.</summary>
7026 <typeparam name="T">The attribute type</typeparam>
7027 <param name="element">The code element</param>
7028 <param name="inherit">If true, includes inherited attributes</param>
7029 <returns>True if the code element has at least one attribute of the specified type</returns>
7030 </member>
7031 <member name="M:Gallio.Reflection.AttributeUtils.HasAttribute(Gallio.Reflection.ICodeElementInfo,System.Type,System.Boolean)">
7032 <summary>Returns true if the code element has an attribute of the specified type.</summary>
7033 <param name="element">The code element</param>
7034 <param name="attributeType">The attribute type</param>
7035 <param name="inherit">If true, includes inherited attributes</param>
7036 <returns>True if the code element has at least one attribute of the specified type</returns>
7037 </member>
7038 <member name="M:Gallio.Reflection.AttributeUtils.ResolveAttributes(System.Collections.Generic.IEnumerable{Gallio.Reflection.IAttributeInfo})">
7039 <summary>Resolves all the attributes.</summary>
7040 <param name="attributes">The attribute descriptions</param>
7041 <returns>The resolved attribute instances</returns>
7042 </member>
7043 <member name="T:Gallio.Reflection.CodeElementResolveException">
7044 <summary>The type of exception thrown when a <see cref="T:Gallio.Reflection.ICodeElementInfo" /> could not be resolved.</summary>
7045 </member>
7046 <member name="T:Gallio.Reflection.CodeElementSorter">
7047 <summary>Sorts code elements in various ways. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
7048 </member>
7049 <member name="M:Gallio.Reflection.CodeElementSorter.SortMembersByDeclaringType``1(System.Collections.Generic.IEnumerable{``0})">
7050 <summary>Sorts members such that those declared by supertypes appear before those declared by subtypes.</summary>
7051 <typeparam name="T">The type of member</typeparam>
7052 <param name="members">The members to sort</param>
7053 <returns>The sorted members</returns>
7054 </member>
7055 <member name="T:Gallio.Reflection.DeclaringTypeComparer`1">
7056 <summary>Sorts an members that all belong to the same type such that the members declared by supertypes appear before those declared by subtypes. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
7057 </member>
7058 <member name="F:Gallio.Reflection.DeclaringTypeComparer`1.Instance">
7059 <summary>Gets the singleton instance of the comparer. This field is read-only.</summary>
7060 </member>
7061 <member name="M:Gallio.Reflection.DeclaringTypeComparer`1.Compare(`0,`0)">
7062 <summary>Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
7063 <param name="x">The first object to compare.</param>
7064 <param name="y">The second object to compare.</param>
7065 <returns>Value Condition Less than zerox is less than y.Zerox equals y.Greater than zerox is greater than y.</returns>
7066 </member>
7067 <member name="T:Gallio.Reflection.ReflectionOnlyAssemblyLoader">
7068 <summary>
7069 <para> This assembly loader loads assemblies externally for reflection only. </para>
7070 <para> This implementation ensures that the assembly files do not remain locked on disk and are not cached in memory outside of the scope of the loader. Consequently the Garbage Collector will automatically reclaim the loader and its contents when they become unreferenced. </para>
7071 <para> In contrast, that of the standard .Net reflection-only load context (<seealso cref="M:System.Reflection.Assembly.ReflectionOnlyLoad(System.String)" />) does not allow assemblies to be reclaimed until the <see cref="T:System.AppDomain" /> is unloaded. </para>
7072 <para> The loader considers all assemblies in the specified search path as well as any that can be located using the current AppDomain's assembly resolvers. </para>
7073 </summary>
7074 </member>
7075 <member name="P:Gallio.Reflection.ReflectionOnlyAssemblyLoader.ReflectionPolicy">
7076 <summary>Gets the reflection policy used to load and access the assemblies.</summary>
7077 </member>
7078 <member name="M:Gallio.Reflection.ReflectionOnlyAssemblyLoader.AddHintDirectory(System.String)">
7079 <summary>Adds a hint directory to search for loading assemblies.</summary>
7080 <param name="path">The search directory to add</param>
7081 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="path" /> is null</exception>
7082 </member>
7083 <member name="T:Gallio.Reflection.ReflectionUtils">
7084 <summary>Provides functions for working with reflection. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
7085 </member>
7086 <member name="M:Gallio.Reflection.ReflectionUtils.CanGetAndSetNonStatic(Gallio.Reflection.IPropertyInfo)">
7087 <summary>Determines if the property has public, non-static and non-abstract getter and setter functions.</summary>
7088 <param name="property">The property</param>
7089 <returns>True if the property can be get and set</returns>
7090 </member>
7091 <member name="M:Gallio.Reflection.ReflectionUtils.CanInstantiate(Gallio.Reflection.ITypeInfo)">
7092 <summary>Determines if the type can be instantiated using a public constructor.</summary>
7093 <param name="type">The type</param>
7094 <returns>True if the type can be instantiated</returns>
7095 </member>
7096 <member name="M:Gallio.Reflection.ReflectionUtils.CanInvokeNonStatic(Gallio.Reflection.IMethodInfo)">
7097 <summary>Determines if the method is public, non-static and is non-abstract so it can be invoked.</summary>
7098 <param name="method">The method</param>
7099 <returns>True if the method can be invoked</returns>
7100 </member>
7101 <member name="M:Gallio.Reflection.ReflectionUtils.FindAssemblyReference(Gallio.Reflection.IAssemblyInfo,System.String)">
7102 <summary>Finds the assembly name of the directly referenced assembly with the specified display name.</summary>
7103 <param name="assembly">The assembly to search</param>
7104 <param name="displayName">The display name of the referenced assembly to find</param>
7105 <returns>The referenced assembly name or null if none</returns>
7106 </member>
7107 <member name="M:Gallio.Reflection.ReflectionUtils.GetAssembly(Gallio.Reflection.ICodeElementInfo)">
7108 <summary>Gets the assembly that declares the code element, or the code element itself if it is an <see cref="T:Gallio.Reflection.IAssemblyInfo" />.</summary>
7109 <param name="codeElement">The code element, possibly null</param>
7110 <returns>The assembly, or null if not found</returns>
7111 </member>
7112 <member name="M:Gallio.Reflection.ReflectionUtils.GetDefaultValue(System.Type)">
7113 <summary>Gets the default value for a type.</summary>
7114 <param name="type">The type</param>
7115 <returns>The default value for the type, such as <c>0</c> if the type represents an integer, or <c>null</c> if the type is a reference type or if <paramref name="type" /> was null</returns>
7116 </member>
7117 <member name="M:Gallio.Reflection.ReflectionUtils.GetDefaultValue(System.TypeCode)">
7118 <summary>Gets the default value of a type with a given type code.</summary>
7119 <param name="typeCode">The type code</param>
7120 <returns>The default value of the type associated with the specified type code</returns>
7121 </member>
7122 <member name="M:Gallio.Reflection.ReflectionUtils.GetMember(Gallio.Reflection.ICodeElementInfo)">
7123 <summary>Gets the non-type member that declares the code element, or the code element itself if it is an <see cref="T:Gallio.Reflection.IMemberInfo" /> other than a <see cref="T:Gallio.Reflection.ITypeInfo" />.</summary>
7124 <param name="codeElement">The code element, possibly null</param>
7125 <returns>The member, or null if not found</returns>
7126 </member>
7127 <member name="M:Gallio.Reflection.ReflectionUtils.GetNamespace(Gallio.Reflection.ICodeElementInfo)">
7128 <summary>Gets the namespace that declares the code element, or the code element itself if it is an <see cref="T:Gallio.Reflection.INamespaceInfo" />.</summary>
7129 <param name="codeElement">The code element, possibly null</param>
7130 <returns>The namespace, or null if not found</returns>
7131 </member>
7132 <member name="M:Gallio.Reflection.ReflectionUtils.GetParameter(Gallio.Reflection.ICodeElementInfo)">
7133 <summary>Gets the parameter that declares the code element, or the code element itself if it is an <see cref="T:Gallio.Reflection.IParameterInfo" />.</summary>
7134 <param name="codeElement">The code element, possibly null</param>
7135 <returns>The parameter, or null if not found</returns>
7136 </member>
7137 <member name="M:Gallio.Reflection.ReflectionUtils.GetType(Gallio.Reflection.ICodeElementInfo)">
7138 <summary>Gets the type that declares the code element, or the code element itself if it is an <see cref="T:Gallio.Reflection.ITypeInfo" />.</summary>
7139 <param name="codeElement">The code element, possibly null</param>
7140 <returns>The type, or null if not found</returns>
7141 </member>
7142 <member name="M:Gallio.Reflection.ReflectionUtils.IsDerivedFrom(Gallio.Reflection.ITypeInfo,System.String)">
7143 <summary>Returns true if a type is derived from another type with the specified qualified name.</summary>
7144 <param name="type">The type to check</param>
7145 <param name="qualifiedTypeName">The qualified type name</param>
7146 <returns>True if <paramref name="type" /> is derived from <paramref name="qualifiedTypeName" /></returns>
7147 </member>
7148 <member name="T:Gallio.Reflection.Reflector">
7149 <summary>Wraps reflection types using the reflection adapter interfaces. Also resolves code references. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
7150 </member>
7151 <member name="P:Gallio.Reflection.Reflector.NativeReflectionPolicy">
7152 <summary>Gets the singleton instance of the native <see cref="T:Gallio.Reflection.IReflectionPolicy" /> based on .Net reflection.</summary>
7153 </member>
7154 <member name="M:Gallio.Reflection.Reflector.GetCallingFunction">
7155 <summary>Creates a code element from the caller of the executing function.</summary>
7156 <returns>The code reference</returns>
7157 </member>
7158 <member name="M:Gallio.Reflection.Reflector.GetExecutingFunction">
7159 <summary>Creates a code element from the executing function.</summary>
7160 <returns>The code reference</returns>
7161 </member>
7162 <member name="M:Gallio.Reflection.Reflector.GetFunctionFromStackFrame(System.Int32)">
7163 <summary>Creates a code element representing a function from a particular frame on the current stack.</summary>
7164 <param name="framesToSkip">The number of frames to skip. If this number is 0, the code reference will refer to the direct caller of this method; if it is 1, it will refer to the caller's caller, and so on.</param>
7165 <returns>The code reference</returns>
7166 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="framesToSkip" /> is less than zero</exception>
7167 </member>
7168 <member name="M:Gallio.Reflection.Reflector.IsUnresolved(System.Reflection.MemberInfo)">
7169 <summary>Returns true if the target represents an unresolved member with limited support for reflection.</summary>
7170 <param name="target">The member, or null if none</param>
7171 <returns>True if the target is unresolved</returns>
7172 </member>
7173 <member name="M:Gallio.Reflection.Reflector.IsUnresolved(System.Reflection.ParameterInfo)">
7174 <summary>Returns true if the target represents an unresolved parameter with limited support for reflection.</summary>
7175 <param name="target">The parameter, or null if none</param>
7176 <returns>True if the target is unresolved</returns>
7177 </member>
7178 <member name="M:Gallio.Reflection.Reflector.Resolve(Gallio.Reflection.CodeReference,System.Boolean)">
7179 <summary>Resolves the specified <see cref="T:Gallio.Reflection.CodeReference" />.</summary>
7180 <param name="reference">The code reference</param>
7181 <param name="throwOnError">If true, throws an exception on error</param>
7182 <returns>The associated code element, or null if the code reference is of kind <see cref="F:Gallio.Reflection.CodeReferenceKind.Unknown" /></returns>
7183 <exception cref="T:System.InvalidOperationException">Thrown if <paramref name="throwOnError" /> is true and <paramref name="reference" /> cannot be resolved</exception>
7184 </member>
7185 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.Assembly)">
7186 <summary>Obtains a reflection wrapper for an assembly.</summary>
7187 <param name="target">The assembly, or null if none</param>
7188 <returns>The reflection wrapper, or null if none</returns>
7189 </member>
7190 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Type)">
7191 <summary>Obtains a reflection wrapper for a type.</summary>
7192 <param name="target">The type, or null if none</param>
7193 <returns>The reflection wrapper, or null if none</returns>
7194 </member>
7195 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.MemberInfo)">
7196 <summary>Obtains a reflection wrapper for a member.</summary>
7197 <param name="target">The member, or null if none</param>
7198 <returns>The reflection wrapper, or null if none</returns>
7199 </member>
7200 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.MethodBase)">
7201 <summary>Obtains a reflection wrapper for a function.</summary>
7202 <param name="target">The function, or null if none</param>
7203 <returns>The reflection wrapper, or null if none</returns>
7204 </member>
7205 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.ConstructorInfo)">
7206 <summary>Obtains a reflection wrapper for a constructor.</summary>
7207 <param name="target">The constructor, or null if none</param>
7208 <returns>The reflection wrapper, or null if none</returns>
7209 </member>
7210 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.MethodInfo)">
7211 <summary>Obtains a reflection wrapper for a method.</summary>
7212 <param name="target">The method, or null if none</param>
7213 <returns>The reflection wrapper, or null if none</returns>
7214 </member>
7215 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.PropertyInfo)">
7216 <summary>Obtains a reflection wrapper for a property.</summary>
7217 <param name="target">The property, or null if none</param>
7218 <returns>The reflection wrapper, or null if none</returns>
7219 </member>
7220 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.FieldInfo)">
7221 <summary>Obtains a reflection wrapper for a field.</summary>
7222 <param name="target">The field, or null if none</param>
7223 <returns>The reflection wrapper, or null if none</returns>
7224 </member>
7225 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.EventInfo)">
7226 <summary>Obtains a reflection wrapper for an event.</summary>
7227 <param name="target">The event, or null if none</param>
7228 <returns>The reflection wrapper, or null if none</returns>
7229 </member>
7230 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Reflection.ParameterInfo)">
7231 <summary>Obtains a reflection wrapper for a parameter.</summary>
7232 <param name="target">The parameter, or null if none</param>
7233 <returns>The reflection wrapper, or null if none</returns>
7234 </member>
7235 <member name="M:Gallio.Reflection.Reflector.Wrap(System.Attribute)">
7236 <summary>Obtains a reflection wrapper for an attribute instance.</summary>
7237 <param name="target">The attribute, or null if none</param>
7238 <returns>The reflection wrapper, or null if none</returns>
7239 </member>
7240 <member name="M:Gallio.Reflection.Reflector.WrapNamespace(System.String)">
7241 <summary>Obtains a reflection wrapper for a namespace.</summary>
7242 <param name="name">The namespace name, or null if none</param>
7243 <returns>The reflection wrapper, or null if none</returns>
7244 </member>
7245 <member name="T:Gallio.Reflection.CodeLocation">
7246 <summary>Specifies the location of a code element as a position within a file.</summary>
7247 </member>
7248 <member name="F:Gallio.Reflection.CodeLocation.Unknown">
7249 <summary>Gets an empty code location with a null path and no line or column number information. This field is read-only.</summary>
7250 </member>
7251 <member name="P:Gallio.Reflection.CodeLocation.Column">
7252 <summary>Gets the column number, or 0 if unknown.</summary>
7253 </member>
7254 <member name="P:Gallio.Reflection.CodeLocation.Line">
7255 <summary>Gets the line number, or 0 if unknown.</summary>
7256 </member>
7257 <member name="P:Gallio.Reflection.CodeLocation.Path">
7258 <summary>Gets the path or Uri of a resource that contains the code element, such as a source file or assembly, or null if unknown.</summary>
7259 </member>
7260 <member name="M:Gallio.Reflection.CodeLocation.Equals(System.Object)">
7261 <summary>Indicates whether this instance and a specified object are equal.</summary>
7262 <param name="obj">Another object to compare to.</param>
7263 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
7264 </member>
7265 <member name="M:Gallio.Reflection.CodeLocation.Equals(Gallio.Reflection.CodeLocation)">
7266 <summary>Indicates whether this instance and a specified object are equal.</summary>
7267 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
7268 </member>
7269 <member name="M:Gallio.Reflection.CodeLocation.GetHashCode">
7270 <summary>Returns the hash code for this instance.</summary>
7271 <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
7272 </member>
7273 <member name="M:Gallio.Reflection.CodeLocation.ToString">
7274 <summary>Converts the location to a string of the form "path(line,column)", "path(line)" or "path" depending on which components are available.</summary>
7275 <returns>The code location as a string or "(unknown)" if unknown</returns>
7276 </member>
7277 <member name="M:Gallio.Reflection.CodeLocation.op_Equality(Gallio.Reflection.CodeLocation,Gallio.Reflection.CodeLocation)">
7278 <summary>Compares two code locations for equality.</summary>
7279 <param name="a">The first code location</param>
7280 <param name="b">The second code location</param>
7281 <returns>True if the code locations are equal</returns>
7282 </member>
7283 <member name="M:Gallio.Reflection.CodeLocation.op_Inequality(Gallio.Reflection.CodeLocation,Gallio.Reflection.CodeLocation)">
7284 <summary>Compares two code locations for inequality.</summary>
7285 <param name="a">The first code location</param>
7286 <param name="b">The second code location</param>
7287 <returns>True if the code references are not equal</returns>
7288 </member>
7289 <member name="T:Gallio.Reflection.CodeReference">
7290 <summary>A code reference is a pointer into the structure of a .Net program for use in describing the location of a certain code construct to the user. It is typically used to identify the point of definition of a test component.</summary>
7291 </member>
7292 <member name="F:Gallio.Reflection.CodeReference.Unknown">
7293 <summary>Gets an empty code reference used to indicate that the actual reference is unknown. This field is read-only.</summary>
7294 </member>
7295 <member name="P:Gallio.Reflection.CodeReference.AssemblyName">
7296 <summary>Gets the assembly name, or null if none.</summary>
7297 </member>
7298 <member name="P:Gallio.Reflection.CodeReference.Kind">
7299 <summary>Gets the kind of code element specified by the code reference.</summary>
7300 </member>
7301 <member name="P:Gallio.Reflection.CodeReference.MemberName">
7302 <summary>Gets the member name, or null if none.</summary>
7303 </member>
7304 <member name="P:Gallio.Reflection.CodeReference.NamespaceName">
7305 <summary>Gets the namespace name, or null if none.</summary>
7306 </member>
7307 <member name="P:Gallio.Reflection.CodeReference.ParameterName">
7308 <summary>Gets the parameter name, or null if none.</summary>
7309 </member>
7310 <member name="P:Gallio.Reflection.CodeReference.TypeName">
7311 <summary>Gets the fully-qualified type name, or null if none.</summary>
7312 </member>
7313 <member name="M:Gallio.Reflection.CodeReference.CreateFromAssembly(System.Reflection.Assembly)">
7314 <summary>Creates a code reference from an assembly.</summary>
7315 <param name="assembly">The assembly</param>
7316 <returns>The code reference</returns>
7317 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
7318 </member>
7319 <member name="M:Gallio.Reflection.CodeReference.CreateFromMember(System.Reflection.MemberInfo)">
7320 <summary>Creates a code reference from a member.</summary>
7321 <param name="member">The member</param>
7322 <returns>The code reference</returns>
7323 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="member" /> is null</exception>
7324 </member>
7325 <member name="M:Gallio.Reflection.CodeReference.CreateFromNamespace(System.String)">
7326 <summary>Creates a code reference from an namespace name.</summary>
7327 <param name="namespaceName">The namespace name</param>
7328 <returns>The code reference</returns>
7329 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="namespaceName" /> is null</exception>
7330 </member>
7331 <member name="M:Gallio.Reflection.CodeReference.CreateFromParameter(System.Reflection.ParameterInfo)">
7332 <summary>Creates a code reference from a method parameter.</summary>
7333 <param name="parameter">The parameter</param>
7334 <returns>The code reference</returns>
7335 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="parameter" /> is null</exception>
7336 </member>
7337 <member name="M:Gallio.Reflection.CodeReference.CreateFromType(System.Type)">
7338 <summary>Creates a code reference from a type.</summary>
7339 <param name="type">The type</param>
7340 <returns>The code reference</returns>
7341 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="type" /> is null</exception>
7342 </member>
7343 <member name="M:Gallio.Reflection.CodeReference.Equals(System.Object)">
7344 <summary>Indicates whether this instance and a specified object are equal.</summary>
7345 <param name="obj">Another object to compare to.</param>
7346 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
7347 </member>
7348 <member name="M:Gallio.Reflection.CodeReference.Equals(Gallio.Reflection.CodeReference)">
7349 <summary>Indicates whether this instance and a specified object are equal.</summary>
7350 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
7351 </member>
7352 <member name="M:Gallio.Reflection.CodeReference.GetHashCode">
7353 <summary>Returns the hash code for this instance.</summary>
7354 <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
7355 </member>
7356 <member name="M:Gallio.Reflection.CodeReference.ToString">
7357 <summary>Produces a human-readable description of the code reference.</summary>
7358 <returns>A description of the code reference</returns>
7359 </member>
7360 <member name="M:Gallio.Reflection.CodeReference.op_Equality(Gallio.Reflection.CodeReference,Gallio.Reflection.CodeReference)">
7361 <summary>Compares two code references for equality.</summary>
7362 <param name="a">The first code reference</param>
7363 <param name="b">The second code reference</param>
7364 <returns>True if the code references are equal</returns>
7365 </member>
7366 <member name="M:Gallio.Reflection.CodeReference.op_Inequality(Gallio.Reflection.CodeReference,Gallio.Reflection.CodeReference)">
7367 <summary>Compares two code references for inequality.</summary>
7368 <param name="a">The first code reference</param>
7369 <param name="b">The second code reference</param>
7370 <returns>True if the code references are not equal</returns>
7371 </member>
7372 <member name="T:Gallio.Reflection.ConstantValue">
7373 <summary>Specifies a typed constant value.</summary>
7374 </member>
7375 <member name="P:Gallio.Reflection.ConstantValue.IsArray">
7376 <summary>Returns true if the value is an array.</summary>
7377 </member>
7378 <member name="P:Gallio.Reflection.ConstantValue.IsEnum">
7379 <summary>Returns true if the value is an enum.</summary>
7380 </member>
7381 <member name="P:Gallio.Reflection.ConstantValue.IsNative">
7382 <summary>Returns true if the contents of <see cref="P:Gallio.Reflection.ConstantValue.Value" /> can be interpreted as a native value or false if <see cref="M:Gallio.Reflection.ConstantValue.Resolve(System.Boolean)" /> must be used to resolve the constant to a native value.</summary>
7383 </member>
7384 <member name="P:Gallio.Reflection.ConstantValue.IsType">
7385 <summary>Returns true if the value is a type.</summary>
7386 </member>
7387 <member name="P:Gallio.Reflection.ConstantValue.Type">
7388 <summary>
7389 <para> Gets the type of the constant. </para>
7390 <para> The type may be an array type, an enum type, a primitive type, or the <see cref="T:System.Type" /> type. </para>
7391 </summary>
7392 </member>
7393 <member name="P:Gallio.Reflection.ConstantValue.Value">
7394 <summary>
7395 <para> Gets the value of the constant. </para>
7396 <para> If <see cref="P:Gallio.Reflection.ConstantValue.IsNative" /> is true, then this property contains the native value. Otherwise it is represented differently depending upon its type. <list type="bullet"><item>If the constant is a primitive value, then the value will be a primitive value such as an integer, string, float or null.</item><item>If the constant is an enum, then the value will be a primitive value of the underlying type of the enum.</item><item>If the constant is an array, then the value will be an array of <see cref="T:Gallio.Reflection.ConstantValue" /> objects representing the elements of the array.</item><item>If the constant is a type, then the value will be a <see cref="T:Gallio.Reflection.ITypeInfo" />.</item></list></para>
7397 </summary>
7398 </member>
7399 <member name="M:Gallio.Reflection.ConstantValue.FromNative(System.Object)">
7400 <summary>Creates a constant value that wraps an existing native value.</summary>
7401 <param name="value">The native value</param>
7402 <returns>The constant</returns>
7403 </member>
7404 <member name="M:Gallio.Reflection.ConstantValue.Resolve(System.Boolean)">
7405 <summary>Resolves the constant to a native value by replacing type references with actual <see cref="T:System.Type" /> values, arrays of constants with <see cref="T:System.Array" /> values of the appropriate type, and enums with <see cref="T:System.Enum" /> values.</summary>
7406 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise the result may include unresolved types, enums or arrays</param>
7407 <returns>The native constant value</returns>
7408 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7409 </member>
7410 <member name="T:Gallio.Reflection.IAssemblyInfo">
7411 <summary>
7412 <para> A <see cref="T:System.Reflection.Assembly" /> reflection wrapper. </para>
7413 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7414 </summary>
7415 </member>
7416 <member name="P:Gallio.Reflection.IAssemblyInfo.FullName">
7417 <summary>Gets the full name of the assembly.</summary>
7418 </member>
7419 <member name="P:Gallio.Reflection.IAssemblyInfo.Path">
7420 <summary>Gets the codebase of the assembly as a local path if possible or as a Uri otherwise.</summary>
7421 </member>
7422 <member name="M:Gallio.Reflection.IAssemblyInfo.GetExportedTypes">
7423 <summary>Gets the public types exported by the assembly.</summary>
7424 <returns>The exported types</returns>
7425 </member>
7426 <member name="M:Gallio.Reflection.IAssemblyInfo.GetName">
7427 <summary>Gets the <see cref="T:System.Reflection.AssemblyName" /> of the assembly.</summary>
7428 <returns>The assembly name</returns>
7429 </member>
7430 <member name="M:Gallio.Reflection.IAssemblyInfo.GetReferencedAssemblies">
7431 <summary>Gets the names of the assemblies referenced by this assembly.</summary>
7432 <returns>The names of the references assemblies</returns>
7433 </member>
7434 <member name="M:Gallio.Reflection.IAssemblyInfo.GetType(System.String)">
7435 <summary>Gets a public type by name, or null if not found.</summary>
7436 <param name="typeName">The type name</param>
7437 <returns>The type</returns>
7438 </member>
7439 <member name="M:Gallio.Reflection.IAssemblyInfo.GetTypes">
7440 <summary>Gets all of the types in an assembly.</summary>
7441 <returns>The types</returns>
7442 </member>
7443 <member name="M:Gallio.Reflection.IAssemblyInfo.Resolve(System.Boolean)">
7444 <summary>Resolves the wrapper to its native reflection target.</summary>
7445 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns null</param>
7446 <returns>The native reflection target</returns>
7447 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7448 </member>
7449 <member name="T:Gallio.Reflection.IAttributeInfo">
7450 <summary>Provides information about the contents of a custom attribute.</summary>
7451 </member>
7452 <member name="P:Gallio.Reflection.IAttributeInfo.Constructor">
7453 <summary>Gets the constructor used to create the attribute.</summary>
7454 <exception cref="T:System.NotSupportedException">Thrown if not supported</exception>
7455 </member>
7456 <member name="P:Gallio.Reflection.IAttributeInfo.InitializedArgumentValues">
7457 <summary>Gets the initialized attribute constructor argument values.</summary>
7458 <exception cref="T:System.NotSupportedException">Thrown if not supported</exception>
7459 </member>
7460 <member name="P:Gallio.Reflection.IAttributeInfo.InitializedFieldValues">
7461 <summary>Gets the initialized attribute field values.</summary>
7462 </member>
7463 <member name="P:Gallio.Reflection.IAttributeInfo.InitializedPropertyValues">
7464 <summary>Gets the initialized attribute property values.</summary>
7465 </member>
7466 <member name="P:Gallio.Reflection.IAttributeInfo.Type">
7467 <summary>Gets the attribute type.</summary>
7468 </member>
7469 <member name="M:Gallio.Reflection.IAttributeInfo.GetFieldValue(System.String)">
7470 <summary>Gets an attribute field value.</summary>
7471 <param name="name">The field name</param>
7472 <returns>The value, or a default value of the field's type if the field with the specified name was not initialized by the attribute declaration</returns>
7473 <exception cref="T:System.ArgumentException">Thrown if there is no writable instance field with the specified name</exception>
7474 </member>
7475 <member name="M:Gallio.Reflection.IAttributeInfo.GetPropertyValue(System.String)">
7476 <summary>Gets an attribute property value.</summary>
7477 <param name="name">The property name</param>
7478 <returns>The value, or a default value of the propery's type if the property with the specified name was not initialized by the attribute declaration</returns>
7479 <exception cref="T:System.ArgumentException">Thrown if there is no writable instance property with the specified name</exception>
7480 </member>
7481 <member name="M:Gallio.Reflection.IAttributeInfo.Resolve(System.Boolean)">
7482 <summary>Gets the attribute as an object.</summary>
7483 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise the result may include unresolved types, enums or arrays</param>
7484 <returns>The attribute</returns>
7485 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the attribute could not be resolved</exception>
7486 </member>
7487 <member name="T:Gallio.Reflection.ICodeElementInfo">
7488 <summary>
7489 <para> Represents a structural element of some code base. </para>
7490 <para> This interface is the base of a hierarchy of abstract reflection objects. Different implementations of these objects may be used to perform reflection over different sources. </para>
7491 </summary>
7492 </member>
7493 <member name="P:Gallio.Reflection.ICodeElementInfo.CodeReference">
7494 <summary>Gets a <see cref="P:Gallio.Reflection.ICodeElementInfo.CodeReference" /> for this code element.</summary>
7495 <value>The code reference</value>
7496 </member>
7497 <member name="P:Gallio.Reflection.ICodeElementInfo.Kind">
7498 <summary>Gets the kind of code element represented by this instance.</summary>
7499 </member>
7500 <member name="P:Gallio.Reflection.ICodeElementInfo.Name">
7501 <summary>Gets the name of the code element.</summary>
7502 </member>
7503 <member name="M:Gallio.Reflection.ICodeElementInfo.GetAttributeInfos(Gallio.Reflection.ITypeInfo,System.Boolean)">
7504 <summary>Gets information about the code element's custom attributes of the specified type.</summary>
7505 <param name="attributeType">The attribute type, or null to return attributes of all types</param>
7506 <param name="inherit">If true, includes inherited attributes from base types (but not from interfaces, just like <see cref="T:System.Reflection.ICustomAttributeProvider" /> does)</param>
7507 <returns>The code element's attributes</returns>
7508 </member>
7509 <member name="M:Gallio.Reflection.ICodeElementInfo.GetAttributes(Gallio.Reflection.ITypeInfo,System.Boolean)">
7510 <summary>Gets the code element's custom attributes of the specified type.</summary>
7511 <param name="attributeType">The attribute type</param>
7512 <param name="inherit">If true, includes inherited attributes from base types (but not from interfaces, just like <see cref="T:System.Reflection.ICustomAttributeProvider" /> does)</param>
7513 <returns>The attributes</returns>
7514 </member>
7515 <member name="M:Gallio.Reflection.ICodeElementInfo.GetCodeLocation">
7516 <summary>Gets the location of a resource that contains the declaration of this code element, or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if not available. The location may refer to the code element's source code or to the location of its compiled assembly.</summary>
7517 <returns>The code location</returns>
7518 </member>
7519 <member name="M:Gallio.Reflection.ICodeElementInfo.GetXmlDocumentation">
7520 <summary>Gets the XML documentation associated with the code element.</summary>
7521 <returns>The XML documentation or null if none available</returns>
7522 </member>
7523 <member name="M:Gallio.Reflection.ICodeElementInfo.HasAttribute(Gallio.Reflection.ITypeInfo,System.Boolean)">
7524 <summary>Returns true if the code element has a custom attribute of the specified type.</summary>
7525 <param name="attributeType">The attribute type, or null to search for attributes of all types</param>
7526 <param name="inherit">If true, includes inherited attributes from base types (but not from interfaces, just like <see cref="T:System.Reflection.ICustomAttributeProvider" /> does)</param>
7527 <returns>True if the code element has at least one attribute of the specified type</returns>
7528 </member>
7529 <member name="T:Gallio.Reflection.IConstructorInfo">
7530 <summary>
7531 <para> A <see cref="T:System.Reflection.ConstructorInfo" /> reflection wrapper. </para>
7532 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7533 </summary>
7534 </member>
7535 <member name="M:Gallio.Reflection.IConstructorInfo.Resolve(System.Boolean)">
7536 <summary>Resolves the wrapper to its native reflection target.</summary>
7537 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7538 <returns>The native reflection target</returns>
7539 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7540 </member>
7541 <member name="T:Gallio.Reflection.IEventInfo">
7542 <summary>
7543 <para> A <see cref="T:System.Reflection.EventInfo" /> reflection wrapper. </para>
7544 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7545 </summary>
7546 </member>
7547 <member name="P:Gallio.Reflection.IEventInfo.AddMethod">
7548 <summary>Gets the add method of the event, or null if none.</summary>
7549 <value>The add method, or null if none</value>
7550 </member>
7551 <member name="P:Gallio.Reflection.IEventInfo.EventAttributes">
7552 <summary>Gets the event attributes.</summary>
7553 </member>
7554 <member name="P:Gallio.Reflection.IEventInfo.EventHandlerType">
7555 <summary>Gets the event handler type.</summary>
7556 </member>
7557 <member name="P:Gallio.Reflection.IEventInfo.RaiseMethod">
7558 <summary>Gets the raise method of the event, or null if none.</summary>
7559 <value>The raise method, or null if none</value>
7560 </member>
7561 <member name="P:Gallio.Reflection.IEventInfo.RemoveMethod">
7562 <summary>Gets the remove method of the event, or null if none.</summary>
7563 <value>The remove method, or null if none</value>
7564 </member>
7565 <member name="M:Gallio.Reflection.IEventInfo.Resolve(System.Boolean)">
7566 <summary>Resolves the wrapper to its native reflection target.</summary>
7567 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7568 <returns>The native reflection target</returns>
7569 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7570 </member>
7571 <member name="T:Gallio.Reflection.IFieldInfo">
7572 <summary>
7573 <para> A <see cref="T:System.Reflection.FieldInfo" /> reflection wrapper. </para>
7574 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7575 </summary>
7576 </member>
7577 <member name="P:Gallio.Reflection.IFieldInfo.FieldAttributes">
7578 <summary>Gets the field attributes.</summary>
7579 </member>
7580 <member name="P:Gallio.Reflection.IFieldInfo.IsAssembly">
7581 <summary>Gets a value indicating whether this field has Assembly level visibility.</summary>
7582 </member>
7583 <member name="P:Gallio.Reflection.IFieldInfo.IsFamily">
7584 <summary>Gets a value indicating whether this field has Family level visibility.</summary>
7585 </member>
7586 <member name="P:Gallio.Reflection.IFieldInfo.IsFamilyAndAssembly">
7587 <summary>Gets a value indicating whether this field has FamilyAndAssembly level visibility.</summary>
7588 </member>
7589 <member name="P:Gallio.Reflection.IFieldInfo.IsFamilyOrAssembly">
7590 <summary>Gets a value indicating whether this field has FamilyOrAssembly level visibility.</summary>
7591 </member>
7592 <member name="P:Gallio.Reflection.IFieldInfo.IsInitOnly">
7593 <summary>Returns true if the field is read-only and can only be set from the constructor.</summary>
7594 </member>
7595 <member name="P:Gallio.Reflection.IFieldInfo.IsLiteral">
7596 <summary>Returns true if the field is a literal set at compile time.</summary>
7597 </member>
7598 <member name="P:Gallio.Reflection.IFieldInfo.IsPrivate">
7599 <summary>Gets a value indicating whether the field is private.</summary>
7600 </member>
7601 <member name="P:Gallio.Reflection.IFieldInfo.IsPublic">
7602 <summary>Gets a value indicating whether the field is public.</summary>
7603 </member>
7604 <member name="P:Gallio.Reflection.IFieldInfo.IsStatic">
7605 <summary>Returns true if the field is static.</summary>
7606 </member>
7607 <member name="M:Gallio.Reflection.IFieldInfo.Resolve(System.Boolean)">
7608 <summary>Resolves the wrapper to its native reflection target.</summary>
7609 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7610 <returns>The native reflection target</returns>
7611 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7612 </member>
7613 <member name="T:Gallio.Reflection.IFunctionInfo">
7614 <summary>
7615 <para> A <see cref="T:System.Reflection.MethodBase" /> reflection wrapper. </para>
7616 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7617 </summary>
7618 </member>
7619 <member name="P:Gallio.Reflection.IFunctionInfo.CallingConvention">
7620 <summary>Gets the calling conventions for this method.</summary>
7621 </member>
7622 <member name="P:Gallio.Reflection.IFunctionInfo.IsAbstract">
7623 <summary>Returns true if the method is abstract.</summary>
7624 </member>
7625 <member name="P:Gallio.Reflection.IFunctionInfo.IsAssembly">
7626 <summary>Gets a value indicating whether this method can be called by other classes in the same assembly.</summary>
7627 </member>
7628 <member name="P:Gallio.Reflection.IFunctionInfo.IsFamily">
7629 <summary>Gets a value indicating whether access to this method is restricted to members of the class and members of its derived classes.</summary>
7630 </member>
7631 <member name="P:Gallio.Reflection.IFunctionInfo.IsFamilyAndAssembly">
7632 <summary>Gets a value indicating whether this method can be called by derived classes if they are in the same assembly.</summary>
7633 </member>
7634 <member name="P:Gallio.Reflection.IFunctionInfo.IsFamilyOrAssembly">
7635 <summary>Gets a value indicating whether this method can be called by derived classes, wherever they are, and by all classes in the same assembly.</summary>
7636 </member>
7637 <member name="P:Gallio.Reflection.IFunctionInfo.IsFinal">
7638 <summary>Returns true if the method is final.</summary>
7639 </member>
7640 <member name="P:Gallio.Reflection.IFunctionInfo.IsHideBySig">
7641 <summary>Gets a value indicating whether only a member of the same kind with exactly the same signature is hidden in the derived class.</summary>
7642 </member>
7643 <member name="P:Gallio.Reflection.IFunctionInfo.IsPrivate">
7644 <summary>Gets a value indicating whether this member is private.</summary>
7645 </member>
7646 <member name="P:Gallio.Reflection.IFunctionInfo.IsPublic">
7647 <summary>Gets a value indicating whether this is a public method.</summary>
7648 </member>
7649 <member name="P:Gallio.Reflection.IFunctionInfo.IsStatic">
7650 <summary>Returns true if the method is static.</summary>
7651 </member>
7652 <member name="P:Gallio.Reflection.IFunctionInfo.IsVirtual">
7653 <summary>Gets a value indicating whether the method is virtual.</summary>
7654 </member>
7655 <member name="P:Gallio.Reflection.IFunctionInfo.MethodAttributes">
7656 <summary>Gets the method attributes.</summary>
7657 </member>
7658 <member name="P:Gallio.Reflection.IFunctionInfo.Parameters">
7659 <summary>Gets the parameters of the function.</summary>
7660 <value>The parameters</value>
7661 </member>
7662 <member name="M:Gallio.Reflection.IFunctionInfo.Resolve(System.Boolean)">
7663 <summary>Resolves the wrapper to its native reflection target.</summary>
7664 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7665 <returns>The native reflection target</returns>
7666 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7667 </member>
7668 <member name="T:Gallio.Reflection.IGenericParameterInfo">
7669 <summary>
7670 <para> A <see cref="T:System.Type" /> reflection wrapper for generic parameters. The parameter is presented as if it were a slot the accepted a value of type <see cref="T:System.Type" nolink="true" />. </para>
7671 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7672 </summary>
7673 </member>
7674 <member name="P:Gallio.Reflection.IGenericParameterInfo.Constraints">
7675 <summary>Gets the constraints of the generic parameter.</summary>
7676 </member>
7677 <member name="P:Gallio.Reflection.IGenericParameterInfo.DeclaringMethod">
7678 <summary>Gets the declaring generic method of a generic method parameter or null for a generic type parameter.</summary>
7679 </member>
7680 <member name="P:Gallio.Reflection.IGenericParameterInfo.GenericParameterAttributes">
7681 <summary>Gets the generic parameter attributes.</summary>
7682 </member>
7683 <member name="T:Gallio.Reflection.IMemberInfo">
7684 <summary>
7685 <para> A <see cref="T:System.Reflection.MemberInfo" /> reflection wrapper. </para>
7686 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7687 </summary>
7688 </member>
7689 <member name="P:Gallio.Reflection.IMemberInfo.DeclaringType">
7690 <summary>
7691 <para> Gets the declaring type of the member. </para>
7692 <para> If the member not a type or is a nested type, returns its containing type. If it is a generic parameter, returns the type to which it (or its declaring method) belongs. Otherwise returns null. </para>
7693 </summary>
7694 </member>
7695 <member name="P:Gallio.Reflection.IMemberInfo.ReflectedType">
7696 <summary>
7697 <para> Gets the reflected type of the member. The reflected type is the type that was used to locate the member. If the member was inherited from a base class, its declaring type will be the base class but its reflected type will be the inherited class from which the member was accessed. </para>
7698 <para> If the member not a type or is a nested type, returns its reflected containing type. If it is a generic parameter, returns the declaring type to which it (or its declaring method) belongs. Otherwise returns null. </para>
7699 </summary>
7700 </member>
7701 <member name="M:Gallio.Reflection.IMemberInfo.Resolve(System.Boolean)">
7702 <summary>Gets the member to its underlying native reflection type.</summary>
7703 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7704 <returns>The underlying native reflection type</returns>
7705 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7706 </member>
7707 <member name="T:Gallio.Reflection.IMethodInfo">
7708 <summary>
7709 <para> A <see cref="T:System.Reflection.MethodInfo" /> reflection wrapper. </para>
7710 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7711 </summary>
7712 </member>
7713 <member name="P:Gallio.Reflection.IMethodInfo.ContainsGenericParameters">
7714 <summary>Returns true if the method contains unbound generic parameters. If so, the <see cref="P:Gallio.Reflection.IMethodInfo.GenericArguments" /> list will contain one or more <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects.</summary>
7715 </member>
7716 <member name="P:Gallio.Reflection.IMethodInfo.GenericArguments">
7717 <summary>Gets the generic arguments of the method. The list may contain <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects when no type has yet been bound to a certain generic parameter slots.</summary>
7718 <value>The generic arguments</value>
7719 </member>
7720 <member name="P:Gallio.Reflection.IMethodInfo.GenericMethodDefinition">
7721 <summary>Gets the generic method definition of this method, or null if the method is not generic.</summary>
7722 </member>
7723 <member name="P:Gallio.Reflection.IMethodInfo.IsGenericMethod">
7724 <summary>Returns true if the method is a generic method. If so, the <see cref="P:Gallio.Reflection.IMethodInfo.GenericArguments" /> list will be non-empty.</summary>
7725 </member>
7726 <member name="P:Gallio.Reflection.IMethodInfo.IsGenericMethodDefinition">
7727 <summary>Returns true if the method is a generic method definition.</summary>
7728 </member>
7729 <member name="P:Gallio.Reflection.IMethodInfo.ReturnParameter">
7730 <summary>Gets the method return parameter object that contains information about the return value and its attributes.</summary>
7731 </member>
7732 <member name="P:Gallio.Reflection.IMethodInfo.ReturnType">
7733 <summary>Gets the method return type.</summary>
7734 </member>
7735 <member name="M:Gallio.Reflection.IMethodInfo.MakeGenericMethod(System.Collections.Generic.IList{Gallio.Reflection.ITypeInfo})">
7736 <summary>Makes a generic method instantiation.</summary>
7737 <param name="genericArguments">The generic arguments</param>
7738 <returns>The generic method instantiation</returns>
7739 </member>
7740 <member name="M:Gallio.Reflection.IMethodInfo.Resolve(System.Boolean)">
7741 <summary>Resolves the wrapper to its native reflection target.</summary>
7742 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7743 <returns>The native reflection target</returns>
7744 <exception cref="T:System.NotSupportedException">Thrown if the target cannot be resolved</exception>
7745 </member>
7746 <member name="T:Gallio.Reflection.INamespaceInfo">
7747 <summary>
7748 <para> A namespace reflection wrapper identified by its name. </para>
7749 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7750 </summary>
7751 </member>
7752 <member name="T:Gallio.Reflection.IParameterInfo">
7753 <summary>
7754 <para> A <see cref="T:System.Reflection.ParameterInfo" /> reflection wrapper. </para>
7755 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7756 </summary>
7757 </member>
7758 <member name="P:Gallio.Reflection.IParameterInfo.IsIn">
7759 <summary>Gets a value indicating whether this is an input parameter.</summary>
7760 </member>
7761 <member name="P:Gallio.Reflection.IParameterInfo.IsOptional">
7762 <summary>Gets a value indicating whether this parameter is optional.</summary>
7763 </member>
7764 <member name="P:Gallio.Reflection.IParameterInfo.IsOut">
7765 <summary>Gets a value indicating whether this is an output parameter.</summary>
7766 </member>
7767 <member name="P:Gallio.Reflection.IParameterInfo.Member">
7768 <summary>Gets the member to which the parameter belongs.</summary>
7769 </member>
7770 <member name="P:Gallio.Reflection.IParameterInfo.ParameterAttributes">
7771 <summary>Gets the parameter attributes.</summary>
7772 </member>
7773 <member name="M:Gallio.Reflection.IParameterInfo.Resolve(System.Boolean)">
7774 <summary>Resolves the wrapper to its native reflection target.</summary>
7775 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7776 <returns>The native reflection target</returns>
7777 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7778 </member>
7779 <member name="T:Gallio.Reflection.IPropertyInfo">
7780 <summary>
7781 <para> A <see cref="T:System.Reflection.PropertyInfo" /> reflection wrapper. </para>
7782 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7783 </summary>
7784 </member>
7785 <member name="P:Gallio.Reflection.IPropertyInfo.CanRead">
7786 <summary>Returns true if the property can be read.</summary>
7787 </member>
7788 <member name="P:Gallio.Reflection.IPropertyInfo.CanWrite">
7789 <summary>Returns true if the property can be written.</summary>
7790 </member>
7791 <member name="P:Gallio.Reflection.IPropertyInfo.GetMethod">
7792 <summary>Gets the get method of the property, or null if none.</summary>
7793 <value>The get method, or null if none</value>
7794 </member>
7795 <member name="P:Gallio.Reflection.IPropertyInfo.IndexParameters">
7796 <summary>Gets the list of index parameters for an indexer property, or an empty array if none.</summary>
7797 </member>
7798 <member name="P:Gallio.Reflection.IPropertyInfo.PropertyAttributes">
7799 <summary>Gets the property attributes.</summary>
7800 </member>
7801 <member name="P:Gallio.Reflection.IPropertyInfo.SetMethod">
7802 <summary>Gets the set method of the property, or null if none.</summary>
7803 <value>The set method, or null if none</value>
7804 </member>
7805 <member name="M:Gallio.Reflection.IPropertyInfo.Resolve(System.Boolean)">
7806 <summary>Resolves the wrapper to its native reflection target.</summary>
7807 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
7808 <returns>The native reflection target</returns>
7809 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
7810 </member>
7811 <member name="T:Gallio.Reflection.IReflectionPolicy">
7812 <summary>A reflection policy provides access to top-level reflection resources such as assemblies.</summary>
7813 </member>
7814 <member name="M:Gallio.Reflection.IReflectionPolicy.LoadAssembly(System.Reflection.AssemblyName)">
7815 <summary>Loads an assembly by name.</summary>
7816 <param name="assemblyName">The full or partial assembly name of the assembly to load</param>
7817 <returns>The loaded assembly</returns>
7818 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyName" /> is null</exception>
7819 <exception cref="T:System.Exception">Thrown if the assembly could not be loaded for any reason</exception>
7820 </member>
7821 <member name="M:Gallio.Reflection.IReflectionPolicy.LoadAssemblyFrom(System.String)">
7822 <summary>Loads an assembly from a file.</summary>
7823 <param name="assemblyFile">The assembly file path</param>
7824 <returns>The loaded assembly</returns>
7825 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyFile" /> is null</exception>
7826 <exception cref="T:System.Exception">Thrown if the assembly could not be loaded for any reason</exception>
7827 </member>
7828 <member name="T:Gallio.Reflection.ISlotInfo">
7829 <summary>A slot represents a field, property or parameter. It is used to simplify the handling of data binding since all three of these types are similar in that they can hold values of some type.</summary>
7830 </member>
7831 <member name="P:Gallio.Reflection.ISlotInfo.Position">
7832 <summary>Gets the positional index of a method parameter slot, -1 if the slot is a method return parameter, or 0 if the slot is of some other kind.</summary>
7833 </member>
7834 <member name="P:Gallio.Reflection.ISlotInfo.ValueType">
7835 <summary>Gets the type of value held in the slot.</summary>
7836 </member>
7837 <member name="T:Gallio.Reflection.ITypeInfo">
7838 <summary>
7839 <para> A <see cref="T:System.Type" /> reflection wrapper. </para>
7840 <para> This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation. </para>
7841 </summary>
7842 </member>
7843 <member name="P:Gallio.Reflection.ITypeInfo.ArrayRank">
7844 <summary>Gets the rank of the array type.</summary>
7845 <exception cref="T:System.InvalidOperationException">Thrown if the type is not an array type</exception>
7846 </member>
7847 <member name="P:Gallio.Reflection.ITypeInfo.Assembly">
7848 <summary>Gets the assembly in which the type is declared.</summary>
7849 </member>
7850 <member name="P:Gallio.Reflection.ITypeInfo.AssemblyQualifiedName">
7851 <summary>Gets the assembly-qualified name of the type, or null if the type is a generic parameter.</summary>
7852 </member>
7853 <member name="P:Gallio.Reflection.ITypeInfo.BaseType">
7854 <summary>Gets the base type of the type, or null if none.</summary>
7855 </member>
7856 <member name="P:Gallio.Reflection.ITypeInfo.ContainsGenericParameters">
7857 <summary>Returns true if the type contains unbound generic parameters. If so, the <see cref="P:Gallio.Reflection.ITypeInfo.GenericArguments" /> list will contain one or more <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects.</summary>
7858 </member>
7859 <member name="P:Gallio.Reflection.ITypeInfo.ElementType">
7860 <summary>Gets the element type of an array, pointer or byref type, or null if none.</summary>
7861 </member>
7862 <member name="P:Gallio.Reflection.ITypeInfo.FullName">
7863 <summary>Gets the full name of the type, or null if the type is a generic parameter.</summary>
7864 </member>
7865 <member name="P:Gallio.Reflection.ITypeInfo.GenericArguments">
7866 <summary>Gets the generic arguments of the type. The list may contain <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects when no type has yet been bound to a certain generic parameter slots.</summary>
7867 <value>The generic arguments, or an empty list if there are none</value>
7868 </member>
7869 <member name="P:Gallio.Reflection.ITypeInfo.GenericTypeDefinition">
7870 <summary>Gets the generic type definition of this type, or null if the type is not generic.</summary>
7871 </member>
7872 <member name="P:Gallio.Reflection.ITypeInfo.Interfaces">
7873 <summary>Gets all of the type's interfaces.</summary>
7874 <value>The type's interfaces</value>
7875 </member>
7876 <member name="P:Gallio.Reflection.ITypeInfo.IsAbstract">
7877 <summary>Returns true if the type is abstract and must be overridden.</summary>
7878 </member>
7879 <member name="P:Gallio.Reflection.ITypeInfo.IsArray">
7880 <summary>Returns true if the type represents an array.</summary>
7881 </member>
7882 <member name="P:Gallio.Reflection.ITypeInfo.IsByRef">
7883 <summary>Returns true if the type represents a type that is passed by reference.</summary>
7884 </member>
7885 <member name="P:Gallio.Reflection.ITypeInfo.IsClass">
7886 <summary>Returns true if the type is a class.</summary>
7887 </member>
7888 <member name="P:Gallio.Reflection.ITypeInfo.IsEnum">
7889 <summary>Returns true if the type represents an enumeration.</summary>
7890 </member>
7891 <member name="P:Gallio.Reflection.ITypeInfo.IsGenericParameter">
7892 <summary>Returns true if the type represents a generic type parameter.</summary>
7893 </member>
7894 <member name="P:Gallio.Reflection.ITypeInfo.IsGenericType">
7895 <summary>Returns true if the type is a generic type. If so, the <see cref="P:Gallio.Reflection.ITypeInfo.GenericArguments" /> list will be non-empty.</summary>
7896 </member>
7897 <member name="P:Gallio.Reflection.ITypeInfo.IsGenericTypeDefinition">
7898 <summary>Returns true if the type is a generic type definition.</summary>
7899 </member>
7900 <member name="P:Gallio.Reflection.ITypeInfo.IsInterface">
7901 <summary>Returns true if the type is an interface.</summary>
7902 </member>
7903 <member name="P:Gallio.Reflection.ITypeInfo.IsNested">
7904 <summary>Returns true if the type is nested.</summary>
7905 </member>
7906 <member name="P:Gallio.Reflection.ITypeInfo.IsNestedAssembly">
7907 <summary>Returns true if the type is nested and is visible only within its own assembly.</summary>
7908 </member>
7909 <member name="P:Gallio.Reflection.ITypeInfo.IsNestedFamily">
7910 <summary>Returns true if the type is nested and visible only within its own family.</summary>
7911 </member>
7912 <member name="P:Gallio.Reflection.ITypeInfo.IsNestedFamilyAndAssembly">
7913 <summary>Returns true if the type is nested and visible only to classes that belong to both its own family and its own assembly.</summary>
7914 </member>
7915 <member name="P:Gallio.Reflection.ITypeInfo.IsNestedFamilyOrAssembly">
7916 <summary>Returns true if the type is nested and visible only to classes that belong to either its own family or to its own assembly.</summary>
7917 </member>
7918 <member name="P:Gallio.Reflection.ITypeInfo.IsNestedPrivate">
7919 <summary>Returns true if the type is nested and declared private.</summary>
7920 </member>
7921 <member name="P:Gallio.Reflection.ITypeInfo.IsNestedPublic">
7922 <summary>Returns true if the type is nested and declared public.</summary>
7923 </member>
7924 <member name="P:Gallio.Reflection.ITypeInfo.IsNotPublic">
7925 <summary>Returns true if the type is not declared public.</summary>
7926 </member>
7927 <member name="P:Gallio.Reflection.ITypeInfo.IsPointer">
7928 <summary>Returns true if the type represents a pointer.</summary>
7929 </member>
7930 <member name="P:Gallio.Reflection.ITypeInfo.IsPublic">
7931 <summary>Returns true if the type is declared public.</summary>
7932 </member>
7933 <member name="P:Gallio.Reflection.ITypeInfo.IsSealed">
7934 <summary>Returns true if the type is sealed.</summary>
7935 </member>
7936 <member name="P:Gallio.Reflection.ITypeInfo.IsValueType">
7937 <summary>Returns true if the type is a value type.</summary>
7938 </member>
7939 <member name="P:Gallio.Reflection.ITypeInfo.Namespace">
7940 <summary>Gets the namespace in which the type is declared.</summary>
7941 </member>
7942 <member name="P:Gallio.Reflection.ITypeInfo.NamespaceName">
7943 <summary>Gets the name of the namespace in which the type is declared.</summary>
7944 </member>
7945 <member name="P:Gallio.Reflection.ITypeInfo.TypeAttributes">
7946 <summary>Gets the type attributes.</summary>
7947 </member>
7948 <member name="P:Gallio.Reflection.ITypeInfo.TypeCode">
7949 <summary>Gets the type's <see cref="P:Gallio.Reflection.ITypeInfo.TypeCode" />.</summary>
7950 </member>
7951 <member name="M:Gallio.Reflection.ITypeInfo.GetConstructors(System.Reflection.BindingFlags)">
7952 <summary>Gets all constructors of the type that satisfy the binding flags.</summary>
7953 <param name="bindingFlags">The binding flags</param>
7954 <returns>The constructors</returns>
7955 </member>
7956 <member name="M:Gallio.Reflection.ITypeInfo.GetEvent(System.String,System.Reflection.BindingFlags)">
7957 <summary>Gets a event by name, or null if not found.</summary>
7958 <param name="eventName">The event name</param>
7959 <param name="bindingFlags">The binding flags</param>
7960 <returns>The event</returns>
7961 </member>
7962 <member name="M:Gallio.Reflection.ITypeInfo.GetEvents(System.Reflection.BindingFlags)">
7963 <summary>Gets all events of the type that satisfy the binding flags.</summary>
7964 <param name="bindingFlags">The binding flags</param>
7965 <returns>The events</returns>
7966 </member>
7967 <member name="M:Gallio.Reflection.ITypeInfo.GetField(System.String,System.Reflection.BindingFlags)">
7968 <summary>Gets a field by name, or null if not found.</summary>
7969 <param name="fieldName">The field name</param>
7970 <param name="bindingFlags">The binding flags</param>
7971 <returns>The property</returns>
7972 </member>
7973 <member name="M:Gallio.Reflection.ITypeInfo.GetFields(System.Reflection.BindingFlags)">
7974 <summary>Gets all fields of the type that satisfy the binding flags.</summary>
7975 <param name="bindingFlags">The binding flags</param>
7976 <returns>The fields</returns>
7977 </member>
7978 <member name="M:Gallio.Reflection.ITypeInfo.GetMethod(System.String,System.Reflection.BindingFlags)">
7979 <summary>Gets a method by name, or null if not found.</summary>
7980 <param name="methodName">The method name</param>
7981 <param name="bindingFlags">The binding flags</param>
7982 <returns>The method</returns>
7983 </member>
7984 <member name="M:Gallio.Reflection.ITypeInfo.GetMethods(System.Reflection.BindingFlags)">
7985 <summary>Gets all methods of the type that satisfy the binding flags.</summary>
7986 <param name="bindingFlags">The binding flags</param>
7987 <returns>The methods</returns>
7988 </member>
7989 <member name="M:Gallio.Reflection.ITypeInfo.GetNestedType(System.String,System.Reflection.BindingFlags)">
7990 <summary>Gets a nested type by name, or null if not found.</summary>
7991 <param name="nestedTypeName">The nested type name</param>
7992 <param name="bindingFlags">The binding flags</param>
7993 <returns>The nested type</returns>
7994 </member>
7995 <member name="M:Gallio.Reflection.ITypeInfo.GetNestedTypes(System.Reflection.BindingFlags)">
7996 <summary>Gets all nested types of the type that satisfy the binding flags.</summary>
7997 <param name="bindingFlags">The binding flags</param>
7998 <returns>The nested types</returns>
7999 </member>
8000 <member name="M:Gallio.Reflection.ITypeInfo.GetProperties(System.Reflection.BindingFlags)">
8001 <summary>Gets all properties of the type that satisfy the binding flags.</summary>
8002 <param name="bindingFlags">The binding flags</param>
8003 <returns>The properties</returns>
8004 </member>
8005 <member name="M:Gallio.Reflection.ITypeInfo.GetProperty(System.String,System.Reflection.BindingFlags)">
8006 <summary>Gets a property by name, or null if not found.</summary>
8007 <param name="propertyName">The property name</param>
8008 <param name="bindingFlags">The binding flags</param>
8009 <returns>The property</returns>
8010 </member>
8011 <member name="M:Gallio.Reflection.ITypeInfo.IsAssignableFrom(Gallio.Reflection.ITypeInfo)">
8012 <summary>Returns true if variables of this type can be assigned with values of the specified type.</summary>
8013 <param name="type">The other type</param>
8014 <returns>True if this type is assignable from the other type</returns>
8015 </member>
8016 <member name="M:Gallio.Reflection.ITypeInfo.IsSubclassOf(Gallio.Reflection.ITypeInfo)">
8017 <summary>Returns true if this type is a subclass of the specified type.</summary>
8018 <param name="type">The other type</param>
8019 <returns>True if this type is a subclass of the other type, and is not the same as the other type</returns>
8020 </member>
8021 <member name="M:Gallio.Reflection.ITypeInfo.MakeArrayType(System.Int32)">
8022 <summary>Makes an array type of the specified rank.</summary>
8023 <param name="arrayRank">The array rank</param>
8024 <returns>The array type</returns>
8025 </member>
8026 <member name="M:Gallio.Reflection.ITypeInfo.MakeByRefType">
8027 <summary>Makes a reference type.</summary>
8028 <returns>The reference type</returns>
8029 </member>
8030 <member name="M:Gallio.Reflection.ITypeInfo.MakeGenericType(System.Collections.Generic.IList{Gallio.Reflection.ITypeInfo})">
8031 <summary>Makes a generic type instantiation.</summary>
8032 <param name="genericArguments">The generic arguments</param>
8033 <returns>The generic type instantiation</returns>
8034 </member>
8035 <member name="M:Gallio.Reflection.ITypeInfo.MakePointerType">
8036 <summary>Makes a pointer type.</summary>
8037 <returns>The pointer type</returns>
8038 </member>
8039 <member name="M:Gallio.Reflection.ITypeInfo.Resolve(System.Boolean)">
8040 <summary>Resolves the wrapper to its native reflection target.</summary>
8041 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
8042 <returns>The native reflection target</returns>
8043 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
8044 </member>
8045 <member name="T:Gallio.Reflection.CodeElementKind">
8046 <summary>Describes the kind of code element represented by a <see cref="T:Gallio.Reflection.ICodeElementInfo" />.</summary>
8047 </member>
8048 <member name="F:Gallio.Reflection.CodeElementKind.Assembly">
8049 <summary>The element is an <see cref="T:Gallio.Reflection.IAssemblyInfo" />.</summary>
8050 </member>
8051 <member name="F:Gallio.Reflection.CodeElementKind.Namespace">
8052 <summary>The element is an <see cref="T:Gallio.Reflection.INamespaceInfo" />.</summary>
8053 </member>
8054 <member name="F:Gallio.Reflection.CodeElementKind.Type">
8055 <summary>The element is an <see cref="T:Gallio.Reflection.ITypeInfo" />.</summary>
8056 </member>
8057 <member name="F:Gallio.Reflection.CodeElementKind.Field">
8058 <summary>The element is an <see cref="T:Gallio.Reflection.IFieldInfo" />.</summary>
8059 </member>
8060 <member name="F:Gallio.Reflection.CodeElementKind.Property">
8061 <summary>The element is an <see cref="T:Gallio.Reflection.IPropertyInfo" />.</summary>
8062 </member>
8063 <member name="F:Gallio.Reflection.CodeElementKind.Event">
8064 <summary>The element is an <see cref="T:Gallio.Reflection.IEventInfo" />.</summary>
8065 </member>
8066 <member name="F:Gallio.Reflection.CodeElementKind.Constructor">
8067 <summary>The element is an <see cref="F:Gallio.Reflection.CodeElementKind.Constructor" />.</summary>
8068 </member>
8069 <member name="F:Gallio.Reflection.CodeElementKind.Method">
8070 <summary>The element is an <see cref="T:Gallio.Reflection.IMethodInfo" />.</summary>
8071 </member>
8072 <member name="F:Gallio.Reflection.CodeElementKind.Parameter">
8073 <summary>The element is an <see cref="T:Gallio.Reflection.IParameterInfo" />.</summary>
8074 </member>
8075 <member name="F:Gallio.Reflection.CodeElementKind.GenericParameter">
8076 <summary>The element is an <see cref="T:Gallio.Reflection.IGenericParameterInfo" />.</summary>
8077 </member>
8078 <member name="T:Gallio.Reflection.CodeReferenceKind">
8079 <summary>Describes the kind of code element specified by a <see cref="T:Gallio.Reflection.CodeReference" />.</summary>
8080 </member>
8081 <member name="F:Gallio.Reflection.CodeReferenceKind.Unknown">
8082 <summary>The code reference is unknown.</summary>
8083 </member>
8084 <member name="F:Gallio.Reflection.CodeReferenceKind.Assembly">
8085 <summary>The code reference specifies an assembly.</summary>
8086 </member>
8087 <member name="F:Gallio.Reflection.CodeReferenceKind.Namespace">
8088 <summary>The code reference specifies a namespace.</summary>
8089 </member>
8090 <member name="F:Gallio.Reflection.CodeReferenceKind.Type">
8091 <summary>The code reference specifies a type.</summary>
8092 </member>
8093 <member name="F:Gallio.Reflection.CodeReferenceKind.Member">
8094 <summary>The code reference specifies a constructor, method, property, field or event.</summary>
8095 </member>
8096 <member name="F:Gallio.Reflection.CodeReferenceKind.Parameter">
8097 <summary>The code reference specifies a parameter of a constructor or method.</summary>
8098 </member>
8099 <member name="T:Gallio.Reflection.Impl.BaseReflectionPolicy">
8100 <summary>A base reflection policy implementation that performs argument validation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
8101 </member>
8102 <member name="M:Gallio.Reflection.Impl.BaseReflectionPolicy.LoadAssembly(System.Reflection.AssemblyName)">
8103 <summary>Loads an assembly by name.</summary>
8104 <param name="assemblyName">The full or partial assembly name of the assembly to load</param>
8105 <returns>The loaded assembly</returns>
8106 </member>
8107 <member name="M:Gallio.Reflection.Impl.BaseReflectionPolicy.LoadAssemblyFrom(System.String)">
8108 <summary>Loads an assembly from a file.</summary>
8109 <param name="assemblyFile">The assembly file path</param>
8110 <returns>The loaded assembly</returns>
8111 </member>
8112 <member name="M:Gallio.Reflection.Impl.BaseReflectionPolicy.LoadAssemblyFromImpl(System.String)">
8113 <summary>Loads an assembly from a file.</summary>
8114 <param name="assemblyFile">The assembly file path, not null</param>
8115 <returns>The loaded assembly wrapper</returns>
8116 <exception cref="T:System.Exception">Any exception may be thrown if the loading fails</exception>
8117 </member>
8118 <member name="M:Gallio.Reflection.Impl.BaseReflectionPolicy.LoadAssemblyImpl(System.Reflection.AssemblyName)">
8119 <summary>Loads an assembly.</summary>
8120 <param name="assemblyName">The assembly name, not null</param>
8121 <returns>The loaded assembly wrapper</returns>
8122 <exception cref="T:System.Exception">Any exception may be thrown if the loading fails</exception>
8123 </member>
8124 <member name="T:Gallio.Reflection.Impl.ComDebugSymbolResolver">
8125 <summary>Resolves debug symbols via the CorMetaDataDispenser COM class.</summary>
8126 </member>
8127 <member name="M:Gallio.Reflection.Impl.ComDebugSymbolResolver.GetSourceLocationForMethod(System.String,System.Int32)">
8128 <summary>Gets the location of a source file that contains the declaration of a method, or null if not available.</summary>
8129 <param name="assemblyPath">The path of the assembly that contains the method</param>
8130 <param name="methodToken">The method token</param>
8131 <returns>The source code location, or null if unknown</returns>
8132 </member>
8133 <member name="T:Gallio.Reflection.Impl.DebugSymbolUtils">
8134 <summary>Helpers for working with <see cref="T:Gallio.Reflection.Impl.IDebugSymbolResolver" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
8135 </member>
8136 <member name="P:Gallio.Reflection.Impl.DebugSymbolUtils.Resolver">
8137 <summary>Gets the debug symbol resolver.</summary>
8138 </member>
8139 <member name="M:Gallio.Reflection.Impl.DebugSymbolUtils.GetSourceLocation(System.Type)">
8140 <summary>Gets the location of a source file that contains the declaration of a type, or null if not available.</summary>
8141 <param name="type">The type</param>
8142 <returns>The code location, or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if unknown</returns>
8143 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="type" /> is null</exception>
8144 </member>
8145 <member name="M:Gallio.Reflection.Impl.DebugSymbolUtils.GetSourceLocation(System.Reflection.MethodBase)">
8146 <summary>Gets the location of a source file that contains the declaration of a method, or null if not available.</summary>
8147 <param name="method">The method</param>
8148 <returns>The source location, or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if unknown</returns>
8149 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="method" /> is null</exception>
8150 </member>
8151 <member name="T:Gallio.Reflection.Impl.DefaultXmlDocumentationResolver">
8152 <summary>The default XML documentation resolver reads XML documentation files on demand when available and caches them in memory for subsequent accesses. It takes care of mapping member names to XML documentation conventions when asked to resolve the documentation for a member.</summary>
8153 </member>
8154 <member name="M:Gallio.Reflection.Impl.DefaultXmlDocumentationResolver.GetXmlDocumentation(System.String,System.String)">
8155 <summary>Gets the XML documentation for a member in an assembly.</summary>
8156 <param name="assemblyPath">The assembly path</param>
8157 <param name="memberId">The XML documentation id of the member</param>
8158 <returns>The XML documentation for the member, or null if none available</returns>
8159 </member>
8160 <member name="T:Gallio.Reflection.Impl.ReflectorAttributeUtils">
8161 <summary>
8162 <para> Provides helpers for enumerating attributes taking into account the attribute inheritance structure. </para>
8163 <para> This class is intended to assist with the implementation of new reflection policies. It should not be used directly by clients of the reflection API. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
8164 </member>
8165 <member name="M:Gallio.Reflection.Impl.ReflectorAttributeUtils.CreateAttribute(Gallio.Reflection.IAttributeInfo,System.Boolean)">
8166 <summary>Creates an attribute instance from an <see cref="T:Gallio.Reflection.IAttributeInfo" />.</summary>
8167 <param name="attribute">The attribute description</param>
8168 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise the result may include unresolved types, enums or arrays</param>
8169 <returns>The attribute instance</returns>
8170 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the attribute could not be resolved</exception>
8171 </member>
8172 <member name="M:Gallio.Reflection.Impl.ReflectorAttributeUtils.IsAttributeField(Gallio.Reflection.IFieldInfo)">
8173 <summary>Returns true if the field is assignable as a named attribute parameter.</summary>
8174 <param name="field">The field</param>
8175 <returns>True if the field is assignable</returns>
8176 </member>
8177 <member name="M:Gallio.Reflection.Impl.ReflectorAttributeUtils.IsAttributeProperty(Gallio.Reflection.IPropertyInfo)">
8178 <summary>Returns true if the property is assignable as a named attribute parameter.</summary>
8179 <param name="property">The property</param>
8180 <returns>True if the property is assignable</returns>
8181 </member>
8182 <member name="T:Gallio.Reflection.Impl.ReflectorFlagsUtils">
8183 <summary>
8184 <para> Provides helpers for manipulating reflection flags enumerations. </para>
8185 <para> This class is intended to assist with the implementation of new reflection policies. It should not be used directly by clients of the reflection API. </para>
8186 </summary>
8187 </member>
8188 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.TypeAttributes@,System.Reflection.TypeAttributes,System.Boolean)">
8189 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8190 <param name="flags">The flags enumeration to update</param>
8191 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8192 <param name="condition">The condition to check</param>
8193 </member>
8194 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.MethodAttributes@,System.Reflection.MethodAttributes,System.Boolean)">
8195 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8196 <param name="flags">The flags enumeration to update</param>
8197 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8198 <param name="condition">The condition to check</param>
8199 </member>
8200 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.FieldAttributes@,System.Reflection.FieldAttributes,System.Boolean)">
8201 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8202 <param name="flags">The flags enumeration to update</param>
8203 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8204 <param name="condition">The condition to check</param>
8205 </member>
8206 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.PropertyAttributes@,System.Reflection.PropertyAttributes,System.Boolean)">
8207 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8208 <param name="flags">The flags enumeration to update</param>
8209 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8210 <param name="condition">The condition to check</param>
8211 </member>
8212 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.ParameterAttributes@,System.Reflection.ParameterAttributes,System.Boolean)">
8213 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8214 <param name="flags">The flags enumeration to update</param>
8215 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8216 <param name="condition">The condition to check</param>
8217 </member>
8218 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.GenericParameterAttributes@,System.Reflection.GenericParameterAttributes,System.Boolean)">
8219 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8220 <param name="flags">The flags enumeration to update</param>
8221 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8222 <param name="condition">The condition to check</param>
8223 </member>
8224 <member name="M:Gallio.Reflection.Impl.ReflectorFlagsUtils.AddFlagIfTrue(System.Reflection.CallingConventions@,System.Reflection.CallingConventions,System.Boolean)">
8225 <summary>Adds <paramref name="flagToAdd" /> to the <paramref name="flags" /> enumeration if <paramref name="condition" /> is true.</summary>
8226 <param name="flags">The flags enumeration to update</param>
8227 <param name="flagToAdd">The flag to add if <paramref name="condition" /> is true</param>
8228 <param name="condition">The condition to check</param>
8229 </member>
8230 <member name="T:Gallio.Reflection.Impl.ReflectorResolveUtils">
8231 <summary>
8232 <para> Provides helpers for resolving abstract reflection objects to obtain native ones based on the structural properties of the reflected code elements. </para>
8233 <para> This class is intended to assist with the implementation of new reflection policies. It should not be used directly by clients of the reflection API. </para>
8234 </summary>
8235 </member>
8236 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveAssembly(Gallio.Reflection.IAssemblyInfo,System.Boolean,System.Boolean)">
8237 <summary>Resolves a reflected assembly to its native <see cref="T:System.Reflection.Assembly" /> object.</summary>
8238 <param name="assembly">The reflected assembly</param>
8239 <param name="fallbackOnPartialName">If true, allows the assembly to be resolved by partial name if no match could be found by fullname</param>
8240 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns null</param>
8241 <returns>The resolved <see cref="T:System.Reflection.Assembly" />.</returns>
8242 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
8243 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="assembly" /> could not be resolved</exception>
8244 </member>
8245 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveConstructor(Gallio.Reflection.IConstructorInfo,System.Boolean)">
8246 <summary>Resolves a reflected constructor to its native <see cref="T:System.Reflection.ConstructorInfo" /> object.</summary>
8247 <param name="constructor">The reflected constructor</param>
8248 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedConstructorInfo" /></param>
8249 <returns>The resolved <see cref="T:System.Reflection.ConstructorInfo" />.</returns>
8250 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="constructor" /> is null</exception>
8251 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="constructor" /> could not be resolved</exception>
8252 </member>
8253 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveEvent(Gallio.Reflection.IEventInfo,System.Boolean)">
8254 <summary>Resolves a reflected event to its native <see cref="T:System.Reflection.EventInfo" /> object.</summary>
8255 <param name="event">The reflected event</param>
8256 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedEventInfo" /></param>
8257 <returns>The resolved <see cref="T:System.Reflection.EventInfo" />.</returns>
8258 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="event" /> is null</exception>
8259 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="event" /> could not be resolved</exception>
8260 </member>
8261 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveField(Gallio.Reflection.IFieldInfo,System.Boolean)">
8262 <summary>Resolves a reflected field to its native <see cref="T:System.Reflection.FieldInfo" /> object.</summary>
8263 <param name="field">The reflected type</param>
8264 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedFieldInfo" /></param>
8265 <returns>The resolved <see cref="T:System.Reflection.FieldInfo" />.</returns>
8266 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="field" /> is null</exception>
8267 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="field" /> could not be resolved</exception>
8268 </member>
8269 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveMethod(Gallio.Reflection.IMethodInfo,System.Boolean)">
8270 <summary>Resolves a reflected method to its native <see cref="T:System.Reflection.MethodInfo" /> object.</summary>
8271 <param name="method">The reflected method</param>
8272 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedMethodInfo" /></param>
8273 <returns>The resolved <see cref="T:System.Reflection.MethodInfo" />.</returns>
8274 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="method" /> is null</exception>
8275 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="method" /> could not be resolved</exception>
8276 </member>
8277 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveParameter(Gallio.Reflection.IParameterInfo,System.Boolean)">
8278 <summary>Resolves a reflected parameter to its native <see cref="T:System.Reflection.ParameterInfo" /> object.</summary>
8279 <param name="parameter">The reflected parameter</param>
8280 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedParameterInfo" /></param>
8281 <returns>The resolved <see cref="T:System.Reflection.ParameterInfo" />.</returns>
8282 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="parameter" /> is null</exception>
8283 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="parameter" /> could not be resolved</exception>
8284 </member>
8285 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveProperty(Gallio.Reflection.IPropertyInfo,System.Boolean)">
8286 <summary>Resolves a reflected property to its native <see cref="T:System.Reflection.PropertyInfo" /> object.</summary>
8287 <param name="property">The reflected property</param>
8288 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedPropertyInfo" /></param>
8289 <returns>The resolved <see cref="T:System.Reflection.PropertyInfo" />.</returns>
8290 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="property" /> is null</exception>
8291 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="property" /> could not be resolved</exception>
8292 </member>
8293 <member name="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveType(Gallio.Reflection.Impl.IResolvableTypeInfo,System.Reflection.MethodInfo,System.Boolean)">
8294 <summary>Resolves a reflected type to its native <see cref="T:System.Type" /> object.</summary>
8295 <param name="type">The reflected type</param>
8296 <param name="methodContext">The method that is currently in scope, or null if none. This parameter is used when resolving types that are part of the signature of a generic method so that generic method arguments can be handled correctly.</param>
8297 <param name="throwOnError">If true, throws an exception if resolution fails, otherwise returns an <see cref="T:Gallio.Reflection.Impl.UnresolvedType" /></param>
8298 <returns>The resolved <see cref="T:System.Type" />.</returns>
8299 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="type" /> is null</exception>
8300 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if <paramref name="type" /> could not be resolved</exception>
8301 </member>
8302 <member name="T:Gallio.Reflection.Impl.ReflectorTypeUtils">
8303 <summary>
8304 <para> Provides helpers for working with types and type codes. </para>
8305 <para> This class is intended to assist with the implementation of new reflection policies. It should not be used directly by clients of the reflection API. </para>
8306 </summary>
8307 </member>
8308 <member name="M:Gallio.Reflection.Impl.ReflectorTypeUtils.GetDefaultValue(Gallio.Reflection.ITypeInfo)">
8309 <summary>Gets the default value for a reflected type.</summary>
8310 <param name="type">The reflected type</param>
8311 <returns>The default value for the type, such as <c>0</c> if the type represents an integer, or <c>null</c> if the type is a reference type or if <paramref name="type" /> was null</returns>
8312 </member>
8313 <member name="M:Gallio.Reflection.Impl.ReflectorTypeUtils.GetTypeCode(Gallio.Reflection.ITypeInfo)">
8314 <summary>Determines the type code of a reflected type based on the type's name.</summary>
8315 <param name="type">The reflected type, or null if none</param>
8316 <returns>The type code of the type, or <see cref="F:System.TypeCode.Empty" /> if <paramref name="type" /> was null</returns>
8317 </member>
8318 <member name="T:Gallio.Reflection.Impl.StaticArrayTypeWrapper">
8319 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> array type wrapper. This class cannot be inherited.</summary>
8320 </member>
8321 <member name="P:Gallio.Reflection.Impl.StaticArrayTypeWrapper.ArrayRank">
8322 <summary>Gets the rank of the array type.</summary>
8323 </member>
8324 <member name="P:Gallio.Reflection.Impl.StaticArrayTypeWrapper.IsArray">
8325 <summary>Returns true if the type represents an array.</summary>
8326 </member>
8327 <member name="P:Gallio.Reflection.Impl.StaticArrayTypeWrapper.TypeAttributes">
8328 <summary>Gets the type attributes.</summary>
8329 </member>
8330 <member name="M:Gallio.Reflection.Impl.StaticArrayTypeWrapper.ApplySubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
8331 <summary>Applies a type substitution and returns the resulting type.</summary>
8332 <param name="substitution">The substitution</param>
8333 <returns>The type after substitution has been performed</returns>
8334 </member>
8335 <member name="T:Gallio.Reflection.Impl.StaticAssemblyWrapper">
8336 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> assembly wrapper. This class cannot be inherited.</summary>
8337 </member>
8338 <member name="P:Gallio.Reflection.Impl.StaticAssemblyWrapper.CodeReference">
8339 <summary>Gets a <see cref="P:Gallio.Reflection.ICodeElementInfo.CodeReference" /> for this code element.</summary>
8340 <value>The code reference</value>
8341 </member>
8342 <member name="P:Gallio.Reflection.Impl.StaticAssemblyWrapper.FullName">
8343 <summary>Gets the full name of the assembly.</summary>
8344 </member>
8345 <member name="P:Gallio.Reflection.Impl.StaticAssemblyWrapper.Kind">
8346 <summary>Gets the kind of code element represented by this instance.</summary>
8347 </member>
8348 <member name="P:Gallio.Reflection.Impl.StaticAssemblyWrapper.Name">
8349 <summary>Gets the name of the code element.</summary>
8350 </member>
8351 <member name="P:Gallio.Reflection.Impl.StaticAssemblyWrapper.Path">
8352 <summary>Gets the codebase of the assembly as a local path if possible or as a Uri otherwise.</summary>
8353 </member>
8354 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.GetCodeLocation">
8355 <summary>Gets the location of a resource that contains the declaration of this code element, or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if not available. The location may refer to the code element's source code or to the location of its compiled assembly.</summary>
8356 <returns>The code location</returns>
8357 </member>
8358 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.GetExportedTypes">
8359 <summary>Gets the public types exported by the assembly.</summary>
8360 <returns>The exported types</returns>
8361 </member>
8362 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.GetName">
8363 <summary>Gets the <see cref="T:System.Reflection.AssemblyName" /> of the assembly.</summary>
8364 <returns>The assembly name</returns>
8365 </member>
8366 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.GetReferencedAssemblies">
8367 <summary>Gets the names of the assemblies referenced by this assembly.</summary>
8368 <returns>The names of the references assemblies</returns>
8369 </member>
8370 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.GetType(System.String)">
8371 <summary>Gets a public type by name, or null if not found.</summary>
8372 <param name="typeName">The type name</param>
8373 <returns>The type</returns>
8374 </member>
8375 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.GetTypes">
8376 <summary>Gets all of the types in an assembly.</summary>
8377 <returns>The types</returns>
8378 </member>
8379 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.IsAssemblyVisibleTo(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
8380 <summary>Returns true if the internal members of this assembly are visible to the specified assembly.</summary>
8381 <param name="other">The other assembly</param>
8382 <returns>True if the other assembly can see internal members of this assembly</returns>
8383 </member>
8384 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.Resolve(System.Boolean)">
8385 <summary>Resolves the wrapper to its native reflection target.</summary>
8386 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns null</param>
8387 <returns>The native reflection target</returns>
8388 </member>
8389 <member name="M:Gallio.Reflection.Impl.StaticAssemblyWrapper.ToString">
8390 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8391 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8392 </member>
8393 <member name="T:Gallio.Reflection.Impl.StaticAttributeWrapper">
8394 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> attribute wrapper. This class cannot be inherited.</summary>
8395 </member>
8396 <member name="P:Gallio.Reflection.Impl.StaticAttributeWrapper.Constructor">
8397 <summary>Gets the constructor used to create the attribute.</summary>
8398 </member>
8399 <member name="P:Gallio.Reflection.Impl.StaticAttributeWrapper.InitializedArgumentValues">
8400 <summary>Gets the initialized attribute constructor argument values.</summary>
8401 </member>
8402 <member name="P:Gallio.Reflection.Impl.StaticAttributeWrapper.InitializedFieldValues">
8403 <summary>Gets the initialized attribute field values.</summary>
8404 </member>
8405 <member name="P:Gallio.Reflection.Impl.StaticAttributeWrapper.InitializedPropertyValues">
8406 <summary>Gets the initialized attribute property values.</summary>
8407 </member>
8408 <member name="P:Gallio.Reflection.Impl.StaticAttributeWrapper.Type">
8409 <summary>Gets the attribute type.</summary>
8410 </member>
8411 <member name="M:Gallio.Reflection.Impl.StaticAttributeWrapper.GetFieldValue(System.String)">
8412 <summary>Gets an attribute field value.</summary>
8413 <param name="name">The field name</param>
8414 <returns>The value, or a default value of the field's type if the field with the specified name was not initialized by the attribute declaration</returns>
8415 </member>
8416 <member name="M:Gallio.Reflection.Impl.StaticAttributeWrapper.GetPropertyValue(System.String)">
8417 <summary>Gets an attribute property value.</summary>
8418 <param name="name">The property name</param>
8419 <returns>The value, or a default value of the propery's type if the property with the specified name was not initialized by the attribute declaration</returns>
8420 </member>
8421 <member name="M:Gallio.Reflection.Impl.StaticAttributeWrapper.Resolve(System.Boolean)">
8422 <summary>Gets the attribute as an object.</summary>
8423 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise the result may include unresolved types, enums or arrays</param>
8424 <returns>The attribute</returns>
8425 </member>
8426 <member name="M:Gallio.Reflection.Impl.StaticAttributeWrapper.ToString">
8427 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8428 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8429 </member>
8430 <member name="T:Gallio.Reflection.Impl.StaticByRefTypeWrapper">
8431 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> by-ref type wrapper. This class cannot be inherited.</summary>
8432 </member>
8433 <member name="P:Gallio.Reflection.Impl.StaticByRefTypeWrapper.IsByRef">
8434 <summary>Returns true if the type represents a type that is passed by reference.</summary>
8435 </member>
8436 <member name="P:Gallio.Reflection.Impl.StaticByRefTypeWrapper.TypeAttributes">
8437 <summary>Gets the type attributes.</summary>
8438 </member>
8439 <member name="M:Gallio.Reflection.Impl.StaticByRefTypeWrapper.ApplySubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
8440 <summary>Applies a type substitution and returns the resulting type.</summary>
8441 <param name="substitution">The substitution</param>
8442 <returns>The type after substitution has been performed</returns>
8443 </member>
8444 <member name="T:Gallio.Reflection.Impl.StaticCodeElementWrapper">
8445 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> code element wrapper. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
8446 </member>
8447 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.GetAttributeInfos(Gallio.Reflection.ITypeInfo,System.Boolean)">
8448 <summary>Gets information about the code element's custom attributes of the specified type.</summary>
8449 <param name="attributeType">The attribute type, or null to return attributes of all types</param>
8450 <param name="inherit">If true, includes inherited attributes from base types (but not from interfaces, just like <see cref="T:System.Reflection.ICustomAttributeProvider" /> does)</param>
8451 <returns>The code element's attributes</returns>
8452 </member>
8453 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.GetAttributes(Gallio.Reflection.ITypeInfo,System.Boolean)">
8454 <summary>Gets the code element's custom attributes of the specified type.</summary>
8455 <param name="attributeType">The attribute type</param>
8456 <param name="inherit">If true, includes inherited attributes from base types (but not from interfaces, just like <see cref="T:System.Reflection.ICustomAttributeProvider" /> does)</param>
8457 <returns>The attributes</returns>
8458 </member>
8459 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.GetCustomAttributes">
8460 <summary>Gets all attributes that appear on this code element, excluding inherited attributes.</summary>
8461 <returns>The attribute wrappers</returns>
8462 </member>
8463 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.GetInheritedElements">
8464 <summary>Gets an enumeration of elements from which this code element inherits.</summary>
8465 <returns>The inherited code elements</returns>
8466 </member>
8467 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.GetPseudoCustomAttributes">
8468 <summary>
8469 <para> Gets all pseudo custom attributes associated with a member. </para>
8470 <para> These attributes do not really exist as custom attributes in the metadata. Rather, they are realizations of other metadata features in attribute form. For example, <see cref="T:System.SerializableAttribute" /> is represented in the metadata as a <see cref="T:System.Reflection.TypeAttributes" /> flag. Pseudo custom attributes preserve the illusion of these attributes. </para>
8471 </summary>
8472 <returns>The pseudo custom attributes</returns>
8473 </member>
8474 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.GetXmlDocumentation">
8475 <summary>Gets the XML documentation associated with the code element.</summary>
8476 <returns>The XML documentation or null if none available</returns>
8477 </member>
8478 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.HasAttribute(Gallio.Reflection.ITypeInfo,System.Boolean)">
8479 <summary>Returns true if the code element has a custom attribute of the specified type.</summary>
8480 <param name="attributeType">The attribute type, or null to search for attributes of all types</param>
8481 <param name="inherit">If true, includes inherited attributes from base types (but not from interfaces, just like <see cref="T:System.Reflection.ICustomAttributeProvider" /> does)</param>
8482 <returns>True if the code element has at least one attribute of the specified type</returns>
8483 </member>
8484 <member name="M:Gallio.Reflection.Impl.StaticCodeElementWrapper.ToString">
8485 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8486 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8487 </member>
8488 <member name="T:Gallio.Reflection.Impl.StaticConstructedTypeWrapper">
8489 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> constructed type wrapper. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
8490 </member>
8491 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.Assembly">
8492 <summary>Gets the assembly in which the type is declared.</summary>
8493 </member>
8494 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.ContainsGenericParameters">
8495 <summary>Returns true if the type contains unbound generic parameters. If so, the <see cref="P:Gallio.Reflection.ITypeInfo.GenericArguments" /> list will contain one or more <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects.</summary>
8496 </member>
8497 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.ElementType">
8498 <summary>Gets the element type, or null if none.</summary>
8499 </member>
8500 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.FullName">
8501 <summary>Gets the full name of the type, or null if the type is a generic parameter.</summary>
8502 </member>
8503 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.Name">
8504 <summary>Gets the name of the code element.</summary>
8505 </member>
8506 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.NameSuffix">
8507 <summary>Gets the suffix to append to the name of the constructed type.</summary>
8508 </member>
8509 <member name="P:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.NamespaceName">
8510 <summary>Gets the name of the namespace in which the type is declared.</summary>
8511 </member>
8512 <member name="M:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.GetCodeLocation">
8513 <summary>Gets the location of a resource that contains the declaration of this code element, or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if not available. The location may refer to the code element's source code or to the location of its compiled assembly.</summary>
8514 <returns>The code location</returns>
8515 </member>
8516 <member name="M:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.GetCustomAttributes">
8517 <summary>Gets all attributes that appear on this code element, excluding inherited attributes.</summary>
8518 <returns>The attribute wrappers</returns>
8519 </member>
8520 <member name="M:Gallio.Reflection.Impl.StaticConstructedTypeWrapper.ToString">
8521 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8522 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8523 </member>
8524 <member name="T:Gallio.Reflection.Impl.StaticConstructorWrapper">
8525 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> constructor wrapper. This class cannot be inherited.</summary>
8526 </member>
8527 <member name="P:Gallio.Reflection.Impl.StaticConstructorWrapper.Kind">
8528 <summary>Gets the kind of code element represented by this instance.</summary>
8529 </member>
8530 <member name="M:Gallio.Reflection.Impl.StaticConstructorWrapper.Resolve(System.Boolean)">
8531 <summary>Resolves the wrapper to its native reflection target.</summary>
8532 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
8533 <returns>The native reflection target</returns>
8534 </member>
8535 <member name="M:Gallio.Reflection.Impl.StaticConstructorWrapper.ToString">
8536 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8537 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8538 </member>
8539 <member name="T:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper">
8540 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> declared type wrapper such as a class, struct, enum or interface definition. This class cannot be inherited.</summary>
8541 </member>
8542 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.Assembly">
8543 <summary>Gets the assembly in which the type is declared.</summary>
8544 </member>
8545 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.BaseType">
8546 <summary>Gets the base type, or null if none.</summary>
8547 </member>
8548 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.ContainsGenericParameters">
8549 <summary>Returns true if the type contains unbound generic parameters. If so, the <see cref="P:Gallio.Reflection.ITypeInfo.GenericArguments" /> list will contain one or more <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects.</summary>
8550 </member>
8551 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.FullName">
8552 <summary>Gets the full name of the type, or null if the type is a generic parameter.</summary>
8553 </member>
8554 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GenericArguments">
8555 <summary>Gets the generic arguments of the type. The list may contain <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects when no type has yet been bound to a certain generic parameter slots.</summary>
8556 <value>The generic arguments, or an empty list if there are none</value>
8557 </member>
8558 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.Interfaces">
8559 <summary>Gets all of the type's interfaces.</summary>
8560 <value>The type's interfaces</value>
8561 </member>
8562 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.IsGenericType">
8563 <summary>Returns true if the type is a generic type. If so, the <see cref="P:Gallio.Reflection.ITypeInfo.GenericArguments" /> list will be non-empty.</summary>
8564 </member>
8565 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.IsGenericTypeDefinition">
8566 <summary>Returns true if the type is a generic type definition.</summary>
8567 </member>
8568 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.Name">
8569 <summary>Gets the name of the code element.</summary>
8570 </member>
8571 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.NamespaceName">
8572 <summary>Gets the name of the namespace in which the type is declared.</summary>
8573 </member>
8574 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.Substitution">
8575 <summary>Gets the type substitution for generic parameters.</summary>
8576 </member>
8577 <member name="P:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.TypeAttributes">
8578 <summary>Gets the type attributes.</summary>
8579 </member>
8580 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.ApplySubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
8581 <summary>Applies a type substitution and returns the resulting type.</summary>
8582 <param name="substitution">The substitution</param>
8583 <returns>The type after substitution has been performed</returns>
8584 </member>
8585 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.ComposeSubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
8586 <summary>Composes the substitution of the type with the specified substitution and returns a new wrapper.</summary>
8587 <param name="substitution">The substitution</param>
8588 <returns>The new wrapper with the composed substitution</returns>
8589 </member>
8590 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetAllBaseTypes">
8591 <summary>Gets an enumeration of all base types.</summary>
8592 <returns>The enumeration of base types</returns>
8593 </member>
8594 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetConstructors(System.Reflection.BindingFlags)">
8595 <summary>Gets all constructors of the type that satisfy the binding flags.</summary>
8596 <param name="bindingFlags">The binding flags</param>
8597 <returns>The constructors</returns>
8598 </member>
8599 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetEvent(System.String,System.Reflection.BindingFlags)">
8600 <summary>Gets a event by name, or null if not found.</summary>
8601 <param name="eventName">The event name</param>
8602 <param name="bindingFlags">The binding flags</param>
8603 <returns>The event</returns>
8604 </member>
8605 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetEvents(System.Reflection.BindingFlags)">
8606 <summary>Gets all events of the type that satisfy the binding flags.</summary>
8607 <param name="bindingFlags">The binding flags</param>
8608 <returns>The events</returns>
8609 </member>
8610 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetField(System.String,System.Reflection.BindingFlags)">
8611 <summary>Gets a field by name, or null if not found.</summary>
8612 <param name="fieldName">The field name</param>
8613 <param name="bindingFlags">The binding flags</param>
8614 <returns>The property</returns>
8615 </member>
8616 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetFields(System.Reflection.BindingFlags)">
8617 <summary>Gets all fields of the type that satisfy the binding flags.</summary>
8618 <param name="bindingFlags">The binding flags</param>
8619 <returns>The fields</returns>
8620 </member>
8621 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetMethod(System.String,System.Reflection.BindingFlags)">
8622 <summary>Gets a method by name, or null if not found.</summary>
8623 <param name="methodName">The method name</param>
8624 <param name="bindingFlags">The binding flags</param>
8625 <returns>The method</returns>
8626 </member>
8627 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetMethods(System.Reflection.BindingFlags)">
8628 <summary>Gets all methods of the type that satisfy the binding flags.</summary>
8629 <param name="bindingFlags">The binding flags</param>
8630 <returns>The methods</returns>
8631 </member>
8632 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetNestedType(System.String,System.Reflection.BindingFlags)">
8633 <summary>Gets a nested type by name, or null if not found.</summary>
8634 <param name="nestedTypeName">The nested type name</param>
8635 <param name="bindingFlags">The binding flags</param>
8636 <returns>The nested type</returns>
8637 </member>
8638 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetNestedTypes(System.Reflection.BindingFlags)">
8639 <summary>Gets all nested types of the type that satisfy the binding flags.</summary>
8640 <param name="bindingFlags">The binding flags</param>
8641 <returns>The nested types</returns>
8642 </member>
8643 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetProperties(System.Reflection.BindingFlags)">
8644 <summary>Gets all properties of the type that satisfy the binding flags.</summary>
8645 <param name="bindingFlags">The binding flags</param>
8646 <returns>The properties</returns>
8647 </member>
8648 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.GetProperty(System.String,System.Reflection.BindingFlags)">
8649 <summary>Gets a property by name, or null if not found.</summary>
8650 <param name="propertyName">The property name</param>
8651 <param name="bindingFlags">The binding flags</param>
8652 <returns>The property</returns>
8653 </member>
8654 <member name="M:Gallio.Reflection.Impl.StaticDeclaredTypeWrapper.ToString">
8655 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8656 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8657 </member>
8658 <member name="T:Gallio.Reflection.Impl.StaticEventWrapper">
8659 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> event wrapper. This class cannot be inherited.</summary>
8660 </member>
8661 <member name="P:Gallio.Reflection.Impl.StaticEventWrapper.EventAttributes">
8662 <summary>Gets the event attributes.</summary>
8663 </member>
8664 <member name="P:Gallio.Reflection.Impl.StaticEventWrapper.EventHandlerType">
8665 <summary>Gets the event handler type.</summary>
8666 </member>
8667 <member name="P:Gallio.Reflection.Impl.StaticEventWrapper.Kind">
8668 <summary>Gets the kind of code element represented by this instance.</summary>
8669 </member>
8670 <member name="M:Gallio.Reflection.Impl.StaticEventWrapper.GetOverridenOrHiddenEvents(System.Boolean)">
8671 <summary>Gets the events that this one overrides or hides. Only includes overrides that appear on class types, not interfaces.</summary>
8672 <param name="overridesOnly">If true, only returns overrides</param>
8673 </member>
8674 <member name="M:Gallio.Reflection.Impl.StaticEventWrapper.Resolve(System.Boolean)">
8675 <summary>Resolves the wrapper to its native reflection target.</summary>
8676 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
8677 <returns>The native reflection target</returns>
8678 </member>
8679 <member name="M:Gallio.Reflection.Impl.StaticEventWrapper.ToString">
8680 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8681 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8682 </member>
8683 <member name="T:Gallio.Reflection.Impl.StaticFieldWrapper">
8684 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> field wrapper. This class cannot be inherited.</summary>
8685 </member>
8686 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.FieldAttributes">
8687 <summary>Gets the field attributes.</summary>
8688 </member>
8689 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsAssembly">
8690 <summary>Gets a value indicating whether this field has Assembly level visibility.</summary>
8691 </member>
8692 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsFamily">
8693 <summary>Gets a value indicating whether this field has Family level visibility.</summary>
8694 </member>
8695 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsFamilyAndAssembly">
8696 <summary>Gets a value indicating whether this field has FamilyAndAssembly level visibility.</summary>
8697 </member>
8698 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsFamilyOrAssembly">
8699 <summary>Gets a value indicating whether this field has FamilyOrAssembly level visibility.</summary>
8700 </member>
8701 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsInitOnly">
8702 <summary>Returns true if the field is read-only and can only be set from the constructor.</summary>
8703 </member>
8704 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsLiteral">
8705 <summary>Returns true if the field is a literal set at compile time.</summary>
8706 </member>
8707 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsPrivate">
8708 <summary>Gets a value indicating whether the field is private.</summary>
8709 </member>
8710 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsPublic">
8711 <summary>Gets a value indicating whether the field is public.</summary>
8712 </member>
8713 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.IsStatic">
8714 <summary>Returns true if the field is static.</summary>
8715 </member>
8716 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.Kind">
8717 <summary>Gets the kind of code element represented by this instance.</summary>
8718 </member>
8719 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.Position">
8720 <summary>Gets the positional index of a method parameter slot, -1 if the slot is a method return parameter, or 0 if the slot is of some other kind.</summary>
8721 </member>
8722 <member name="P:Gallio.Reflection.Impl.StaticFieldWrapper.ValueType">
8723 <summary>Gets the type of value held in the slot.</summary>
8724 </member>
8725 <member name="M:Gallio.Reflection.Impl.StaticFieldWrapper.Resolve(System.Boolean)">
8726 <summary>Resolves the wrapper to its native reflection target.</summary>
8727 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
8728 <returns>The native reflection target</returns>
8729 </member>
8730 <member name="M:Gallio.Reflection.Impl.StaticFieldWrapper.ToString">
8731 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8732 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8733 </member>
8734 <member name="T:Gallio.Reflection.Impl.StaticFunctionWrapper">
8735 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> function wrapper. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
8736 </member>
8737 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.CallingConvention">
8738 <summary>Gets the calling conventions for this method.</summary>
8739 </member>
8740 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsAbstract">
8741 <summary>Returns true if the method is abstract.</summary>
8742 </member>
8743 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsAssembly">
8744 <summary>Gets a value indicating whether this method can be called by other classes in the same assembly.</summary>
8745 </member>
8746 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsFamily">
8747 <summary>Gets a value indicating whether access to this method is restricted to members of the class and members of its derived classes.</summary>
8748 </member>
8749 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsFamilyAndAssembly">
8750 <summary>Gets a value indicating whether this method can be called by derived classes if they are in the same assembly.</summary>
8751 </member>
8752 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsFamilyOrAssembly">
8753 <summary>Gets a value indicating whether this method can be called by derived classes, wherever they are, and by all classes in the same assembly.</summary>
8754 </member>
8755 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsFinal">
8756 <summary>Returns true if the method is final.</summary>
8757 </member>
8758 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsHideBySig">
8759 <summary>Gets a value indicating whether only a member of the same kind with exactly the same signature is hidden in the derived class.</summary>
8760 </member>
8761 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsPrivate">
8762 <summary>Gets a value indicating whether this member is private.</summary>
8763 </member>
8764 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsPublic">
8765 <summary>Gets a value indicating whether this is a public method.</summary>
8766 </member>
8767 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsStatic">
8768 <summary>Returns true if the method is static.</summary>
8769 </member>
8770 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.IsVirtual">
8771 <summary>Gets a value indicating whether the method is virtual.</summary>
8772 </member>
8773 <member name="P:Gallio.Reflection.Impl.StaticFunctionWrapper.MethodAttributes">
8774 <summary>Gets the method attributes.</summary>
8775 </member>
8776 <member name="M:Gallio.Reflection.Impl.StaticFunctionWrapper.ResolveMemberInfo(System.Boolean)">
8777 <summary>Implementation of <see cref="M:Gallio.Reflection.IMemberInfo.Resolve(System.Boolean)" /></summary>
8778 </member>
8779 <member name="M:Gallio.Reflection.Impl.StaticFunctionWrapper.ResolveMethodBase(System.Boolean)">
8780 <summary>Implementation of <see cref="M:Gallio.Reflection.IFunctionInfo.Resolve(System.Boolean)" /></summary>
8781 </member>
8782 <member name="T:Gallio.Reflection.Impl.StaticGenericParameterWrapper">
8783 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> generic parameter wrapper. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
8784 </member>
8785 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.Assembly">
8786 <summary>Gets the assembly in which the type is declared.</summary>
8787 </member>
8788 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.AssemblyQualifiedName">
8789 <summary>Gets the assembly-qualified name of the type, or null if the type is a generic parameter.</summary>
8790 </member>
8791 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.Constraints">
8792 <summary>Gets the constraints of the generic parameter.</summary>
8793 </member>
8794 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.ContainsGenericParameters">
8795 <summary>Returns true if the type contains unbound generic parameters. If so, the <see cref="P:Gallio.Reflection.ITypeInfo.GenericArguments" /> list will contain one or more <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects.</summary>
8796 </member>
8797 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.DeclaringMethod">
8798 <summary>Gets the declaring method, or null if the generic parameter belongs to a type.</summary>
8799 </member>
8800 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.DeclaringType">
8801 <summary>Gets the declaring type, or null if none.</summary>
8802 </member>
8803 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.FullName">
8804 <summary>Gets the full name of the type, or null if the type is a generic parameter.</summary>
8805 </member>
8806 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.GenericParameterAttributes">
8807 <summary>Gets the generic parameter attributes.</summary>
8808 </member>
8809 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.IsGenericParameter">
8810 <summary>Returns true if the type represents a generic type parameter.</summary>
8811 </member>
8812 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.Kind">
8813 <summary>Gets the kind of code element represented by this instance.</summary>
8814 </member>
8815 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.NamespaceName">
8816 <summary>Gets the name of the namespace in which the type is declared.</summary>
8817 </member>
8818 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.Position">
8819 <summary>Gets the positional index of a method parameter slot, -1 if the slot is a method return parameter, or 0 if the slot is of some other kind.</summary>
8820 </member>
8821 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.TypeAttributes">
8822 <summary>Gets the type attributes.</summary>
8823 </member>
8824 <member name="P:Gallio.Reflection.Impl.StaticGenericParameterWrapper.ValueType">
8825 <summary>Gets the type of value held in the slot.</summary>
8826 </member>
8827 <member name="M:Gallio.Reflection.Impl.StaticGenericParameterWrapper.ApplySubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
8828 <summary>Applies a type substitution and returns the resulting type.</summary>
8829 <param name="substitution">The substitution</param>
8830 <returns>The type after substitution has been performed</returns>
8831 </member>
8832 <member name="M:Gallio.Reflection.Impl.StaticGenericParameterWrapper.CreateGenericMethodParameter(Gallio.Reflection.Impl.StaticReflectionPolicy,System.Object,Gallio.Reflection.Impl.StaticMethodWrapper)">
8833 <summary>Creates a wrapper for a generic method parameter.</summary>
8834 <param name="policy">The reflection policy</param>
8835 <param name="handle">The underlying reflection object</param>
8836 <param name="declaringMethod">The declaring method, which must be a generic method definition</param>
8837 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="policy" />, <paramref name="handle" /> or <paramref name="declaringMethod" /> is null</exception>
8838 </member>
8839 <member name="M:Gallio.Reflection.Impl.StaticGenericParameterWrapper.CreateGenericTypeParameter(Gallio.Reflection.Impl.StaticReflectionPolicy,System.Object,Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
8840 <summary>Creates a wrapper for a generic type parameter.</summary>
8841 <param name="policy">The reflection policy</param>
8842 <param name="handle">The underlying reflection object</param>
8843 <param name="declaringType">The declaring type, which must be a generic type definition</param>
8844 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="policy" />, <paramref name="handle" /> or <paramref name="declaringType" /> is null</exception>
8845 </member>
8846 <member name="M:Gallio.Reflection.Impl.StaticGenericParameterWrapper.GetConstructors(System.Reflection.BindingFlags)">
8847 <summary>Gets all constructors of the type that satisfy the binding flags.</summary>
8848 <param name="bindingFlags">The binding flags</param>
8849 <returns>The constructors</returns>
8850 </member>
8851 <member name="M:Gallio.Reflection.Impl.StaticGenericParameterWrapper.ToString">
8852 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8853 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8854 </member>
8855 <member name="T:Gallio.Reflection.Impl.StaticMemberWrapper">
8856 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> member wrapper. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
8857 </member>
8858 <member name="P:Gallio.Reflection.Impl.StaticMemberWrapper.CodeReference">
8859 <summary>Gets a <see cref="P:Gallio.Reflection.ICodeElementInfo.CodeReference" /> for this code element.</summary>
8860 <value>The code reference</value>
8861 </member>
8862 <member name="P:Gallio.Reflection.Impl.StaticMemberWrapper.DeclaringType">
8863 <summary>Gets the declaring type, or null if none.</summary>
8864 </member>
8865 <member name="P:Gallio.Reflection.Impl.StaticMemberWrapper.ReflectedType">
8866 <summary>Gets the reflected type, or null if none.</summary>
8867 </member>
8868 <member name="P:Gallio.Reflection.Impl.StaticMemberWrapper.Substitution">
8869 <summary>Gets the type substitution for generic parameters.</summary>
8870 </member>
8871 <member name="M:Gallio.Reflection.Impl.StaticMemberWrapper.GetCustomAttributes">
8872 <summary>Gets all attributes that appear on this code element, excluding inherited attributes.</summary>
8873 <returns>The attribute wrappers</returns>
8874 </member>
8875 <member name="M:Gallio.Reflection.Impl.StaticMemberWrapper.ResolveMemberInfo(System.Boolean)">
8876 <summary>Implementation of <see cref="M:Gallio.Reflection.IMemberInfo.Resolve(System.Boolean)" /></summary>
8877 </member>
8878 <member name="T:Gallio.Reflection.Impl.StaticMethodWrapper">
8879 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> method wrapper. This class cannot be inherited.</summary>
8880 </member>
8881 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.ContainsGenericParameters">
8882 <summary>Returns true if the method contains unbound generic parameters. If so, the <see cref="P:Gallio.Reflection.IMethodInfo.GenericArguments" /> list will contain one or more <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects.</summary>
8883 </member>
8884 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.GenericArguments">
8885 <summary>Gets the generic arguments of the method. The list may contain <see cref="T:Gallio.Reflection.IGenericParameterInfo" /> objects when no type has yet been bound to a certain generic parameter slots.</summary>
8886 <value>The generic arguments</value>
8887 </member>
8888 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.IsGenericMethod">
8889 <summary>Returns true if the method is a generic method. If so, the <see cref="P:Gallio.Reflection.IMethodInfo.GenericArguments" /> list will be non-empty.</summary>
8890 </member>
8891 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.IsGenericMethodDefinition">
8892 <summary>Returns true if the method is a generic method definition.</summary>
8893 </member>
8894 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.IsOverride">
8895 <summary>Returns true if this method overrides another.</summary>
8896 </member>
8897 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.Kind">
8898 <summary>Gets the kind of code element represented by this instance.</summary>
8899 </member>
8900 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.ReturnParameter">
8901 <summary>Gets the method return parameter object that contains information about the return value and its attributes.</summary>
8902 </member>
8903 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.ReturnType">
8904 <summary>Gets the method return type.</summary>
8905 </member>
8906 <member name="P:Gallio.Reflection.Impl.StaticMethodWrapper.Substitution">
8907 <summary>Gets the type substitution for generic parameters.</summary>
8908 </member>
8909 <member name="M:Gallio.Reflection.Impl.StaticMethodWrapper.GetOverridenOrHiddenMethods(System.Boolean)">
8910 <summary>Gets the methods that this one overrides or hides. Only includes overrides that appear on class types, not interfaces.</summary>
8911 <param name="overridesOnly">If true, only returns overrides</param>
8912 </member>
8913 <member name="M:Gallio.Reflection.Impl.StaticMethodWrapper.HidesMethod(Gallio.Reflection.Impl.StaticMethodWrapper)">
8914 <summary>Returns true if this method hides the specified method.</summary>
8915 <param name="other">The other method</param>
8916 <returns>True if this method hides the other method</returns>
8917 </member>
8918 <member name="M:Gallio.Reflection.Impl.StaticMethodWrapper.Resolve(System.Boolean)">
8919 <summary>Resolves the wrapper to its native reflection target.</summary>
8920 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
8921 <returns>The native reflection target</returns>
8922 </member>
8923 <member name="M:Gallio.Reflection.Impl.StaticMethodWrapper.ToString">
8924 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8925 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8926 </member>
8927 <member name="T:Gallio.Reflection.Impl.StaticParameterWrapper">
8928 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> parameter wrapper. This class cannot be inherited.</summary>
8929 </member>
8930 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.CodeReference">
8931 <summary>Gets a <see cref="P:Gallio.Reflection.ICodeElementInfo.CodeReference" /> for this code element.</summary>
8932 <value>The code reference</value>
8933 </member>
8934 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.IsIn">
8935 <summary>Gets a value indicating whether this is an input parameter.</summary>
8936 </member>
8937 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.IsOptional">
8938 <summary>Gets a value indicating whether this parameter is optional.</summary>
8939 </member>
8940 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.IsOut">
8941 <summary>Gets a value indicating whether this is an output parameter.</summary>
8942 </member>
8943 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.Kind">
8944 <summary>Gets the kind of code element represented by this instance.</summary>
8945 </member>
8946 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.Member">
8947 <summary>Gets the member to which the parameter belongs.</summary>
8948 </member>
8949 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.Name">
8950 <summary>Gets the name of the code element.</summary>
8951 </member>
8952 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.ParameterAttributes">
8953 <summary>Gets the parameter attributes.</summary>
8954 </member>
8955 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.Position">
8956 <summary>Gets the positional index of a method parameter slot, -1 if the slot is a method return parameter, or 0 if the slot is of some other kind.</summary>
8957 </member>
8958 <member name="P:Gallio.Reflection.Impl.StaticParameterWrapper.ValueType">
8959 <summary>Gets the type of value held in the slot.</summary>
8960 </member>
8961 <member name="M:Gallio.Reflection.Impl.StaticParameterWrapper.Resolve(System.Boolean)">
8962 <summary>Resolves the wrapper to its native reflection target.</summary>
8963 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
8964 <returns>The native reflection target</returns>
8965 </member>
8966 <member name="M:Gallio.Reflection.Impl.StaticParameterWrapper.ToString">
8967 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
8968 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
8969 </member>
8970 <member name="T:Gallio.Reflection.Impl.StaticPointerTypeWrapper">
8971 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> pointer type wrapper. This class cannot be inherited.</summary>
8972 </member>
8973 <member name="P:Gallio.Reflection.Impl.StaticPointerTypeWrapper.IsPointer">
8974 <summary>Returns true if the type represents a pointer.</summary>
8975 </member>
8976 <member name="P:Gallio.Reflection.Impl.StaticPointerTypeWrapper.TypeAttributes">
8977 <summary>Gets the type attributes.</summary>
8978 </member>
8979 <member name="M:Gallio.Reflection.Impl.StaticPointerTypeWrapper.ApplySubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
8980 <summary>Applies a type substitution and returns the resulting type.</summary>
8981 <param name="substitution">The substitution</param>
8982 <returns>The type after substitution has been performed</returns>
8983 </member>
8984 <member name="T:Gallio.Reflection.Impl.StaticPropertyWrapper">
8985 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> property wrapper. This class cannot be inherited.</summary>
8986 </member>
8987 <member name="P:Gallio.Reflection.Impl.StaticPropertyWrapper.CanRead">
8988 <summary>Returns true if the property can be read.</summary>
8989 </member>
8990 <member name="P:Gallio.Reflection.Impl.StaticPropertyWrapper.CanWrite">
8991 <summary>Returns true if the property can be written.</summary>
8992 </member>
8993 <member name="P:Gallio.Reflection.Impl.StaticPropertyWrapper.Kind">
8994 <summary>Gets the kind of code element represented by this instance.</summary>
8995 </member>
8996 <member name="P:Gallio.Reflection.Impl.StaticPropertyWrapper.Position">
8997 <summary>Gets the positional index of a method parameter slot, -1 if the slot is a method return parameter, or 0 if the slot is of some other kind.</summary>
8998 </member>
8999 <member name="P:Gallio.Reflection.Impl.StaticPropertyWrapper.PropertyAttributes">
9000 <summary>Gets the property attributes.</summary>
9001 </member>
9002 <member name="P:Gallio.Reflection.Impl.StaticPropertyWrapper.ValueType">
9003 <summary>Gets the type of value held in the slot.</summary>
9004 </member>
9005 <member name="M:Gallio.Reflection.Impl.StaticPropertyWrapper.GetOverridenOrHiddenProperties(System.Boolean)">
9006 <summary>Gets the properties that this one overrides or hides. Only includes overrides that appear on class types, not interfaces.</summary>
9007 <param name="overridesOnly">If true, only returns overrides</param>
9008 </member>
9009 <member name="M:Gallio.Reflection.Impl.StaticPropertyWrapper.Resolve(System.Boolean)">
9010 <summary>Resolves the wrapper to its native reflection target.</summary>
9011 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
9012 <returns>The native reflection target</returns>
9013 </member>
9014 <member name="M:Gallio.Reflection.Impl.StaticPropertyWrapper.ToString">
9015 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
9016 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
9017 </member>
9018 <member name="T:Gallio.Reflection.Impl.StaticReflectedMemberWrapper">
9019 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> member wrapper for members that are not types, generic parameters or nested types. These members must be declared by types, so they all share the constraint that the declaring type and reflected type must not be null. In particular, the reflected type may be a subtype of the declaring type in the case of inherited members. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
9020 </member>
9021 <member name="P:Gallio.Reflection.Impl.StaticReflectedMemberWrapper.ReflectedType">
9022 <summary>Gets the reflected type, or null if none.</summary>
9023 </member>
9024 <member name="T:Gallio.Reflection.Impl.StaticReflectionPolicy">
9025 <summary>
9026 <para> The static reflection policy base class is intended to assist with the implementation of custom reflection policies defined over static metadata. </para>
9027 <para> It flattens out the code element hierarchy to ease implementation of new policies. It provides a mechanism for handling generic type substitutions to ensure a consistent and correct implementation of generic type and generic method instantiations. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
9028 </member>
9029 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.Equals(Gallio.Reflection.Impl.StaticWrapper,Gallio.Reflection.Impl.StaticWrapper)">
9030 <summary>Determines if two wrappers represent the same object.</summary>
9031 <param name="a">The first wrapper, not null</param>
9032 <param name="b">The second wrapper, not null</param>
9033 <returns>True if both wrapper represent the same object</returns>
9034 </member>
9035 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyCustomAttributes(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
9036 <summary>Gets the custom attributes of an assembly.</summary>
9037 <param name="assembly">The assembly, not null</param>
9038 <returns>The attributes</returns>
9039 </member>
9040 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyExportedTypes(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
9041 <summary>Gets the public types exported by an assembly.</summary>
9042 <param name="assembly">The assembly wrapper, not null</param>
9043 <returns>The types</returns>
9044 </member>
9045 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyName(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
9046 <summary>Gets the name of an assembly.</summary>
9047 <param name="assembly">The assembly wrapper, not null</param>
9048 <returns>The assembly name</returns>
9049 </member>
9050 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyPath(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
9051 <summary>Gets the path of an assembly.</summary>
9052 <param name="assembly">The assembly wrapper, not null</param>
9053 <returns>The assembly path</returns>
9054 </member>
9055 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyReferences(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
9056 <summary>Gets the references of an assembly.</summary>
9057 <param name="assembly">The assembly wrapper, not null</param>
9058 <returns>The assembly references</returns>
9059 </member>
9060 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyType(Gallio.Reflection.Impl.StaticAssemblyWrapper,System.String)">
9061 <summary>Gets the specified named type within an assembly.</summary>
9062 <param name="assembly">The assembly wrapper, not null</param>
9063 <param name="typeName">The type name, not null</param>
9064 <returns>The type, or null if none</returns>
9065 </member>
9066 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAssemblyTypes(Gallio.Reflection.Impl.StaticAssemblyWrapper)">
9067 <summary>Gets all types contained in an assembly.</summary>
9068 <param name="assembly">The assembly wrapper, not null</param>
9069 <returns>The types</returns>
9070 </member>
9071 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAttributeConstructor(Gallio.Reflection.Impl.StaticAttributeWrapper)">
9072 <summary>Gets the constructor of an attribute.</summary>
9073 <param name="attribute">The attribute, not null</param>
9074 <returns>The constructor</returns>
9075 </member>
9076 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAttributeConstructorArguments(Gallio.Reflection.Impl.StaticAttributeWrapper)">
9077 <summary>Gets the constructor arguments of an attribute.</summary>
9078 <param name="attribute">The attribute, not null</param>
9079 <returns>The constructor argument values</returns>
9080 </member>
9081 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAttributeFieldArguments(Gallio.Reflection.Impl.StaticAttributeWrapper)">
9082 <summary>Gets the field arguments of an attribute.</summary>
9083 <param name="attribute">The attribute, not null</param>
9084 <returns>The field argument values</returns>
9085 </member>
9086 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetAttributePropertyArguments(Gallio.Reflection.Impl.StaticAttributeWrapper)">
9087 <summary>Gets the property arguments of an attribute.</summary>
9088 <param name="attribute">The attribute, not null</param>
9089 <returns>The property argument values</returns>
9090 </member>
9091 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetEventAddMethod(Gallio.Reflection.Impl.StaticEventWrapper)">
9092 <summary>Gets the add method of an event, or null if none.</summary>
9093 <param name="event">The event, not null</param>
9094 <returns>The add method, or null if none</returns>
9095 </member>
9096 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetEventAttributes(Gallio.Reflection.Impl.StaticEventWrapper)">
9097 <summary>Gets the attributes of an event.</summary>
9098 <param name="event">The event, not null</param>
9099 <returns>The event attributes</returns>
9100 </member>
9101 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetEventHandlerType(Gallio.Reflection.Impl.StaticEventWrapper)">
9102 <summary>Gets the event handler type of an event.</summary>
9103 <param name="event">The event, not null</param>
9104 <returns>The event handler type</returns>
9105 </member>
9106 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetEventRaiseMethod(Gallio.Reflection.Impl.StaticEventWrapper)">
9107 <summary>Gets the raise method of an event, or null if none.</summary>
9108 <param name="event">The event, not null</param>
9109 <returns>The raise method, or null if none</returns>
9110 </member>
9111 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetEventRemoveMethod(Gallio.Reflection.Impl.StaticEventWrapper)">
9112 <summary>Gets the remove method of an event, or null if none.</summary>
9113 <param name="event">The event, not null</param>
9114 <returns>The remove method, or null if none</returns>
9115 </member>
9116 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetFieldAttributes(Gallio.Reflection.Impl.StaticFieldWrapper)">
9117 <summary>Gets the attributes of a field.</summary>
9118 <param name="field">The field, not null</param>
9119 <returns>The field attributes</returns>
9120 </member>
9121 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetFieldType(Gallio.Reflection.Impl.StaticFieldWrapper)">
9122 <summary>Gets the field type.</summary>
9123 <param name="field">The field, not null</param>
9124 <returns>The field type</returns>
9125 </member>
9126 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetFunctionAttributes(Gallio.Reflection.Impl.StaticFunctionWrapper)">
9127 <summary>Gets the attributes of a function.</summary>
9128 <param name="function">The function, not null</param>
9129 <returns>The function attributes</returns>
9130 </member>
9131 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetFunctionCallingConvention(Gallio.Reflection.Impl.StaticFunctionWrapper)">
9132 <summary>Gets the calling conventions of a function.</summary>
9133 <param name="function">The function, not null</param>
9134 <returns>The function calling conventions</returns>
9135 </member>
9136 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetFunctionParameters(Gallio.Reflection.Impl.StaticFunctionWrapper)">
9137 <summary>Gets the parameters of a function.</summary>
9138 <param name="function">The function, not null</param>
9139 <returns>The parameters</returns>
9140 </member>
9141 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetGenericParameterAttributes(Gallio.Reflection.Impl.StaticGenericParameterWrapper)">
9142 <summary>Gets the attributes of a generic parameter.</summary>
9143 <param name="genericParameter">The generic parameter, not null</param>
9144 <returns>The generic parameter attributes</returns>
9145 </member>
9146 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetGenericParameterConstraints(Gallio.Reflection.Impl.StaticGenericParameterWrapper)">
9147 <summary>Gets the generic parameter constraints.</summary>
9148 <param name="genericParameter">The generic parameter, not null</param>
9149 <returns>The generic parameter constraints</returns>
9150 </member>
9151 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetGenericParameterPosition(Gallio.Reflection.Impl.StaticGenericParameterWrapper)">
9152 <summary>Gets the generic parameter position.</summary>
9153 <param name="genericParameter">The generic parameter, not null</param>
9154 <returns>The generic parameter position</returns>
9155 </member>
9156 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetHashCode(Gallio.Reflection.Impl.StaticWrapper)">
9157 <summary>Gets a hashcode for a wrapper.</summary>
9158 <param name="wrapper">The wrapper, not null</param>
9159 <returns>The wrapper's hash code</returns>
9160 </member>
9161 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetMemberCustomAttributes(Gallio.Reflection.Impl.StaticMemberWrapper)">
9162 <summary>Gets the custom attributes of a member.</summary>
9163 <param name="member">The member, not null</param>
9164 <returns>The custom attributes</returns>
9165 </member>
9166 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetMemberName(Gallio.Reflection.Impl.StaticMemberWrapper)">
9167 <summary>Gets the short name of a member. In the case of a generic type, should exclude the generic parameter count part of the name. eg. "`1"</summary>
9168 <param name="member">The member, not null</param>
9169 <returns>The member's name</returns>
9170 </member>
9171 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetMemberSourceLocation(Gallio.Reflection.Impl.StaticMemberWrapper)">
9172 <summary>Gets the source code location of a member.</summary>
9173 <param name="member">The member, not null</param>
9174 <returns>The source code location, or <see cref="F:Gallio.Reflection.CodeLocation.Unknown" /> if not available</returns>
9175 </member>
9176 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetMethodGenericParameters(Gallio.Reflection.Impl.StaticMethodWrapper)">
9177 <summary>Gets the generic parameters of a method.</summary>
9178 <param name="method">The method, not null</param>
9179 <returns>The generic parameters</returns>
9180 </member>
9181 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetMethodReturnParameter(Gallio.Reflection.Impl.StaticMethodWrapper)">
9182 <summary>Gets the return parameter of a method.</summary>
9183 <param name="method">The method, not null</param>
9184 <returns>The return parameter</returns>
9185 </member>
9186 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetParameterAttributes(Gallio.Reflection.Impl.StaticParameterWrapper)">
9187 <summary>Gets the attributes of a parameter.</summary>
9188 <param name="parameter">The parameter, not null</param>
9189 <returns>The parameter attributes</returns>
9190 </member>
9191 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetParameterCustomAttributes(Gallio.Reflection.Impl.StaticParameterWrapper)">
9192 <summary>Gets the custom attributes of a parameter.</summary>
9193 <param name="parameter">The parameter, not null</param>
9194 <returns>The custom attributes</returns>
9195 </member>
9196 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetParameterName(Gallio.Reflection.Impl.StaticParameterWrapper)">
9197 <summary>Gets the name of a parameter.</summary>
9198 <param name="parameter">The parameter, not null</param>
9199 <returns>The parameter's name</returns>
9200 </member>
9201 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetParameterPosition(Gallio.Reflection.Impl.StaticParameterWrapper)">
9202 <summary>Gets the parameter's position, or -1 if the parameter is a return value.</summary>
9203 <param name="parameter">The parameter, not null</param>
9204 <returns>The parameter's position</returns>
9205 </member>
9206 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetParameterType(Gallio.Reflection.Impl.StaticParameterWrapper)">
9207 <summary>Gets the parameter type.</summary>
9208 <param name="parameter">The parameter, not null</param>
9209 <returns>The parameter type</returns>
9210 </member>
9211 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetPropertyAttributes(Gallio.Reflection.Impl.StaticPropertyWrapper)">
9212 <summary>Gets the attributes of a property.</summary>
9213 <param name="property">The property, not null</param>
9214 <returns>The property attributes</returns>
9215 </member>
9216 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetPropertyGetMethod(Gallio.Reflection.Impl.StaticPropertyWrapper)">
9217 <summary>Gets the get method of a property, or null if none.</summary>
9218 <param name="property">The property, not null</param>
9219 <returns>The get method, or null if none</returns>
9220 </member>
9221 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetPropertySetMethod(Gallio.Reflection.Impl.StaticPropertyWrapper)">
9222 <summary>Gets the set method of a property, or null if none.</summary>
9223 <param name="property">The property, not null</param>
9224 <returns>The set method, or null if none</returns>
9225 </member>
9226 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetPropertyType(Gallio.Reflection.Impl.StaticPropertyWrapper)">
9227 <summary>Gets the property type.</summary>
9228 <param name="property">The property, not null</param>
9229 <returns>The property type</returns>
9230 </member>
9231 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeAssembly(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9232 <summary>Gets the assembly that contains a type.</summary>
9233 <param name="type">The type, not null</param>
9234 <returns>The type's assembly</returns>
9235 </member>
9236 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeAttributes(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9237 <summary>Gets the attributes of a type.</summary>
9238 <param name="type">The type, not null</param>
9239 <returns>The type attributes</returns>
9240 </member>
9241 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeBaseType(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9242 <summary>Gets the base type of atype.</summary>
9243 <param name="type">The type, not null</param>
9244 <returns>The base type</returns>
9245 </member>
9246 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeConstructors(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9247 <summary>Gets the constructors of a type. Only includes declared methods, not inherited ones.</summary>
9248 <param name="type">The type, not null</param>
9249 <returns>The type's constructors</returns>
9250 </member>
9251 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeEvents(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper,Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9252 <summary>Gets the events of a type. Only includes declared methods, not inherited ones.</summary>
9253 <param name="type">The type, not null</param>
9254 <param name="reflectedType">The reflected type, not null</param>
9255 <returns>The type's events</returns>
9256 </member>
9257 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeFields(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper,Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9258 <summary>Gets the fields of a type. Only includes declared methods, not inherited ones.</summary>
9259 <param name="type">The type, not null</param>
9260 <param name="reflectedType">The reflected type, not null</param>
9261 <returns>The type's fields</returns>
9262 </member>
9263 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeGenericParameters(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9264 <summary>Gets the generic parameters of a type.</summary>
9265 <param name="type">The type, not null</param>
9266 <returns>The type's generic parameters</returns>
9267 </member>
9268 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeInterfaces(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9269 <summary>Gets the interfaces directly implemented by a type.</summary>
9270 <param name="type">The type, not null</param>
9271 <returns>The type's interfaces</returns>
9272 </member>
9273 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeMethods(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper,Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9274 <summary>Gets the methods of a type including accessor methods for properties and events. Only includes declared methods, not inherited ones.</summary>
9275 <param name="type">The type, not null</param>
9276 <param name="reflectedType">The reflected type, not null</param>
9277 <returns>The type's methods</returns>
9278 </member>
9279 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeNamespace(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9280 <summary>Gets the namespace that contains a type.</summary>
9281 <param name="type">The type, not null</param>
9282 <returns>The type's namespace, or an empty string if it has none</returns>
9283 </member>
9284 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeNestedTypes(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9285 <summary>Gets the nested types of a type. Only includes declared nested types, not inherited ones.</summary>
9286 <param name="type">The type, not null</param>
9287 <returns>The type's nested types</returns>
9288 </member>
9289 <member name="M:Gallio.Reflection.Impl.StaticReflectionPolicy.GetTypeProperties(Gallio.Reflection.Impl.StaticDeclaredTypeWrapper,Gallio.Reflection.Impl.StaticDeclaredTypeWrapper)">
9290 <summary>Gets the properties of a type. Only includes declared methods, not inherited ones.</summary>
9291 <param name="type">The type, not null</param>
9292 <param name="reflectedType">The reflected type, not null</param>
9293 <returns>The type's properties</returns>
9294 </member>
9295 <member name="T:Gallio.Reflection.Impl.StaticSpecialTypeWrapper">
9296 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> type wrapper that represents a special type that is either constructed from other types or derived from them as with a generic parameter. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
9297 </member>
9298 <member name="P:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.BaseTypeInternal">
9299 <summary>Internal implementation of <see cref="P:Gallio.Reflection.Impl.StaticTypeWrapper.BaseType" />.</summary>
9300 </member>
9301 <member name="P:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.Interfaces">
9302 <summary>Gets all of the type's interfaces.</summary>
9303 <value>The type's interfaces</value>
9304 </member>
9305 <member name="P:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.Substitution">
9306 <summary>Gets the type substitution for generic parameters.</summary>
9307 </member>
9308 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetEvent(System.String,System.Reflection.BindingFlags)">
9309 <summary>Gets a event by name, or null if not found.</summary>
9310 <param name="eventName">The event name</param>
9311 <param name="bindingFlags">The binding flags</param>
9312 <returns>The event</returns>
9313 </member>
9314 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetEvents(System.Reflection.BindingFlags)">
9315 <summary>Gets all events of the type that satisfy the binding flags.</summary>
9316 <param name="bindingFlags">The binding flags</param>
9317 <returns>The events</returns>
9318 </member>
9319 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetField(System.String,System.Reflection.BindingFlags)">
9320 <summary>Gets a field by name, or null if not found.</summary>
9321 <param name="fieldName">The field name</param>
9322 <param name="bindingFlags">The binding flags</param>
9323 <returns>The property</returns>
9324 </member>
9325 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetFields(System.Reflection.BindingFlags)">
9326 <summary>Gets all fields of the type that satisfy the binding flags.</summary>
9327 <param name="bindingFlags">The binding flags</param>
9328 <returns>The fields</returns>
9329 </member>
9330 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetMethod(System.String,System.Reflection.BindingFlags)">
9331 <summary>Gets a method by name, or null if not found.</summary>
9332 <param name="methodName">The method name</param>
9333 <param name="bindingFlags">The binding flags</param>
9334 <returns>The method</returns>
9335 </member>
9336 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetMethods(System.Reflection.BindingFlags)">
9337 <summary>Gets all methods of the type that satisfy the binding flags.</summary>
9338 <param name="bindingFlags">The binding flags</param>
9339 <returns>The methods</returns>
9340 </member>
9341 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetNestedType(System.String,System.Reflection.BindingFlags)">
9342 <summary>Gets a nested type by name, or null if not found.</summary>
9343 <param name="nestedTypeName">The nested type name</param>
9344 <param name="bindingFlags">The binding flags</param>
9345 <returns>The nested type</returns>
9346 </member>
9347 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetNestedTypes(System.Reflection.BindingFlags)">
9348 <summary>Gets all nested types of the type that satisfy the binding flags.</summary>
9349 <param name="bindingFlags">The binding flags</param>
9350 <returns>The nested types</returns>
9351 </member>
9352 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetProperties(System.Reflection.BindingFlags)">
9353 <summary>Gets all properties of the type that satisfy the binding flags.</summary>
9354 <param name="bindingFlags">The binding flags</param>
9355 <returns>The properties</returns>
9356 </member>
9357 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetProperty(System.String,System.Reflection.BindingFlags)">
9358 <summary>Gets a property by name, or null if not found.</summary>
9359 <param name="propertyName">The property name</param>
9360 <param name="bindingFlags">The binding flags</param>
9361 <returns>The property</returns>
9362 </member>
9363 <member name="M:Gallio.Reflection.Impl.StaticSpecialTypeWrapper.GetPseudoCustomAttributes">
9364 <summary>
9365 <para> Gets all pseudo custom attributes associated with a member. </para>
9366 <para> These attributes do not really exist as custom attributes in the metadata. Rather, they are realizations of other metadata features in attribute form. For example, <see cref="T:System.SerializableAttribute" /> is represented in the metadata as a <see cref="T:System.Reflection.TypeAttributes" /> flag. Pseudo custom attributes preserve the illusion of these attributes. </para>
9367 </summary>
9368 <returns>The pseudo custom attributes</returns>
9369 </member>
9370 <member name="T:Gallio.Reflection.Impl.StaticTypeWrapper">
9371 <summary>A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> type wrapper. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
9372 </member>
9373 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.BaseType">
9374 <summary>Gets the base type of the type, or null if none.</summary>
9375 </member>
9376 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.BaseTypeInternal">
9377 <summary>Internal implementation of <see cref="P:Gallio.Reflection.Impl.StaticTypeWrapper.BaseType" />.</summary>
9378 </member>
9379 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.CodeReference">
9380 <summary>Gets a <see cref="P:Gallio.Reflection.ICodeElementInfo.CodeReference" /> for this code element.</summary>
9381 <value>The code reference</value>
9382 </member>
9383 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.ElementType">
9384 <summary>Gets the element type, or null if none.</summary>
9385 </member>
9386 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsAbstract">
9387 <summary>Returns true if the type is abstract and must be overridden.</summary>
9388 </member>
9389 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsClass">
9390 <summary>Returns true if the type is a class.</summary>
9391 </member>
9392 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsEnum">
9393 <summary>Returns true if the type represents an enumeration.</summary>
9394 </member>
9395 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsInterface">
9396 <summary>Returns true if the type is an interface.</summary>
9397 </member>
9398 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNested">
9399 <summary>Returns true if the type is nested.</summary>
9400 </member>
9401 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNestedAssembly">
9402 <summary>Returns true if the type is nested and is visible only within its own assembly.</summary>
9403 </member>
9404 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNestedFamily">
9405 <summary>Returns true if the type is nested and visible only within its own family.</summary>
9406 </member>
9407 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNestedFamilyAndAssembly">
9408 <summary>Returns true if the type is nested and visible only to classes that belong to both its own family and its own assembly.</summary>
9409 </member>
9410 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNestedFamilyOrAssembly">
9411 <summary>Returns true if the type is nested and visible only to classes that belong to either its own family or to its own assembly.</summary>
9412 </member>
9413 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNestedPrivate">
9414 <summary>Returns true if the type is nested and declared private.</summary>
9415 </member>
9416 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNestedPublic">
9417 <summary>Returns true if the type is nested and declared public.</summary>
9418 </member>
9419 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsNotPublic">
9420 <summary>Returns true if the type is not declared public.</summary>
9421 </member>
9422 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsPublic">
9423 <summary>Returns true if the type is declared public.</summary>
9424 </member>
9425 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsSealed">
9426 <summary>Returns true if the type is sealed.</summary>
9427 </member>
9428 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.IsValueType">
9429 <summary>Returns true if the type is a value type.</summary>
9430 </member>
9431 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.Namespace">
9432 <summary>Gets the namespace in which the type is declared.</summary>
9433 </member>
9434 <member name="P:Gallio.Reflection.Impl.StaticTypeWrapper.TypeCode">
9435 <summary>Gets the type's <see cref="P:Gallio.Reflection.ITypeInfo.TypeCode" />.</summary>
9436 </member>
9437 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.ApplySubstitution(Gallio.Reflection.Impl.StaticTypeSubstitution)">
9438 <summary>Applies a type substitution and returns the resulting type.</summary>
9439 <param name="substitution">The substitution</param>
9440 <returns>The type after substitution has been performed</returns>
9441 </member>
9442 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.GetInheritedElements">
9443 <summary>Gets an enumeration of elements from which this code element inherits.</summary>
9444 <returns>The inherited code elements</returns>
9445 </member>
9446 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.IsAssignableFrom(Gallio.Reflection.ITypeInfo)">
9447 <summary>Returns true if variables of this type can be assigned with values of the specified type.</summary>
9448 <param name="type">The other type</param>
9449 <returns>True if this type is assignable from the other type</returns>
9450 </member>
9451 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.IsSubclassOf(Gallio.Reflection.ITypeInfo)">
9452 <summary>Returns true if this type is a subclass of the specified type.</summary>
9453 <param name="type">The other type</param>
9454 <returns>True if this type is a subclass of the other type, and is not the same as the other type</returns>
9455 </member>
9456 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.Resolve(System.Boolean)">
9457 <summary>Resolves the wrapper to its native reflection target.</summary>
9458 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
9459 <returns>The native reflection target</returns>
9460 </member>
9461 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.Resolve(System.Reflection.MethodInfo,System.Boolean)">
9462 <summary>Resolves the wrapper to its native reflection target within the scope of the specified method.</summary>
9463 <param name="methodContext">The method that is currently in scope, or null if none. This parameter is used when resolving types that are part of the signature of a generic method so that generic method arguments can be handled correctly.</param>
9464 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
9465 <returns>The native reflection target</returns>
9466 </member>
9467 <member name="M:Gallio.Reflection.Impl.StaticTypeWrapper.ResolveMemberInfo(System.Boolean)">
9468 <summary>Implementation of <see cref="M:Gallio.Reflection.IMemberInfo.Resolve(System.Boolean)" /></summary>
9469 </member>
9470 <member name="T:Gallio.Reflection.Impl.StaticWrapper">
9471 <summary>
9472 <para> A <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> wrapper. </para>
9473 <para> A wrapper holds an underlying reflection object. Its behavior is derived from by primitive operations on the <see cref="P:Gallio.Reflection.Impl.StaticWrapper.Handle" /> defined by the particular <see cref="P:Gallio.Reflection.Impl.StaticWrapper.Policy" /> implementation that is in use. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
9474 </member>
9475 <member name="P:Gallio.Reflection.Impl.StaticWrapper.Handle">
9476 <summary>Gets the underlying reflection object.</summary>
9477 </member>
9478 <member name="P:Gallio.Reflection.Impl.StaticWrapper.Policy">
9479 <summary>Gets the reflection policy.</summary>
9480 </member>
9481 <member name="M:Gallio.Reflection.Impl.StaticWrapper.Equals(Gallio.Reflection.Impl.StaticWrapper)" />
9482 <member name="M:Gallio.Reflection.Impl.StaticWrapper.Equals(System.Object)" />
9483 <member name="M:Gallio.Reflection.Impl.StaticWrapper.EqualsByHandle(Gallio.Reflection.Impl.StaticWrapper)">
9484 <summary>Compares the policy and handle of this wrapper with those of another using <see cref="M:Gallio.Reflection.Impl.StaticReflectionPolicy.Equals(Gallio.Reflection.Impl.StaticWrapper,Gallio.Reflection.Impl.StaticWrapper)" />.</summary>
9485 <param name="other">The other wrapper</param>
9486 </member>
9487 <member name="M:Gallio.Reflection.Impl.StaticWrapper.GetHashCode" />
9488 <member name="T:Gallio.Reflection.Impl.UnresolvedConstructorInfo">
9489 <summary>Represents a <see cref="T:System.Reflection.ConstructorInfo" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.IConstructorInfo" /> wrapper. This class cannot be inherited.</summary>
9490 </member>
9491 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Adapter">
9492 <summary>Gets the underlying reflection adapter.</summary>
9493 </member>
9494 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Attributes">
9495 <summary>Gets the attributes associated with this method.</summary>
9496 <value>One of the <see cref="T:System.Reflection.MethodAttributes" /> values.</value>
9497 </member>
9498 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.CallingConvention">
9499 <summary>Gets a value indicating the calling conventions for this method.</summary>
9500 <value>The <see cref="T:System.Reflection.CallingConventions" /> for this method.</value>
9501 </member>
9502 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.ContainsGenericParameters">
9503 <summary>Gets a value indicating whether the generic method contains unassigned generic type parameters.</summary>
9504 <value>true if the current <see cref="T:System.Reflection.MethodBase" /> object represents a generic method that contains unassigned generic type parameters; otherwise, false.</value>
9505 </member>
9506 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.DeclaringType">
9507 <summary>Gets the class that declares this member.</summary>
9508 <value>The Type object for the class that declares this member.</value>
9509 </member>
9510 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.IsGenericMethod">
9511 <summary>Gets a value indicating whether the method is generic.</summary>
9512 <value>true if the current <see cref="T:System.Reflection.MethodBase" /> represents a generic method; otherwise, false.</value>
9513 </member>
9514 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.IsGenericMethodDefinition">
9515 <summary>Gets a value indicating whether the method is a generic method definition.</summary>
9516 <value>true if the current <see cref="T:System.Reflection.MethodBase" /> object represents the definition of a generic method; otherwise, false.</value>
9517 </member>
9518 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.MemberType">
9519 <summary>Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a constructor.</summary>
9520 <value>A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a constructor.</value>
9521 </member>
9522 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.MetadataToken">
9523 <summary>Gets a value that identifies a metadata element.</summary>
9524 <value>A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element.</value>
9525 </member>
9526 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.MethodHandle">
9527 <summary>Gets a handle to the internal metadata representation of a method.</summary>
9528 <value>A <see cref="T:System.RuntimeMethodHandle" /> object.</value>
9529 </member>
9530 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Module">
9531 <summary>Gets the module in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</summary>
9532 <value>The <see cref="T:System.Reflection.Module" /> in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</value>
9533 </member>
9534 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Name">
9535 <summary>Gets the name of the current member.</summary>
9536 <value>A <see cref="T:System.String" /> containing the name of this member.</value>
9537 </member>
9538 <member name="P:Gallio.Reflection.Impl.UnresolvedConstructorInfo.ReflectedType">
9539 <summary>Gets the class object that was used to obtain this instance of MemberInfo.</summary>
9540 <value>The Type object through which this MemberInfo object was obtained.</value>
9541 </member>
9542 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Equals(System.Object)">
9543 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
9544 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
9545 </member>
9546 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetCustomAttributes(System.Boolean)">
9547 <summary>When overridden in a derived class, returns an array containing all the custom attributes.</summary>
9548 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9549 <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
9550 </member>
9551 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetCustomAttributes(System.Type,System.Boolean)">
9552 <summary>When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
9553 <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
9554 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9555 <returns>An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied.</returns>
9556 </member>
9557 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetGenericArguments">
9558 <summary>Returns an array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition.</summary>
9559 <returns>An array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition. Returns an empty array if the current method is not a generic method.</returns>
9560 </member>
9561 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetHashCode">
9562 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
9563 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
9564 </member>
9565 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetMethodBody">
9566 <summary>When overridden in a derived class, gets a <see cref="T:System.Reflection.MethodBody" /> object that provides access to the MSIL stream, local variables, and exceptions for the current method.</summary>
9567 <returns>A <see cref="T:System.Reflection.MethodBody" /> object that provides access to the MSIL stream, local variables, and exceptions for the current method.</returns>
9568 </member>
9569 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetMethodImplementationFlags">
9570 <summary>When overridden in a derived class, returns the <see cref="T:System.Reflection.MethodImplAttributes" /> flags.</summary>
9571 <returns>The MethodImplAttributes flags.</returns>
9572 </member>
9573 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.GetParameters">
9574 <summary>When overridden in a derived class, gets the parameters of the specified method or constructor.</summary>
9575 <returns>An array of type ParameterInfo containing information that matches the signature of the method (or constructor) reflected by this MethodBase instance.</returns>
9576 </member>
9577 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
9578 <summary>When implemented in a derived class, invokes the constructor reflected by this ConstructorInfo with the specified arguments, under the constraints of the specified Binder.</summary>
9579 <param name="invokeAttr">One of the BindingFlags values that specifies the type of binding.</param>
9580 <param name="binder">A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If binder is null, then Binder.DefaultBinding is used.</param>
9581 <param name="parameters">An array of type Object used to match the number, order and type of the parameters for this constructor, under the constraints of binder. If this constructor does not require parameters, pass an array with zero elements, as in Object[] parameters = new Object[0]. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type.</param>
9582 <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" nolink="true" /> for the current thread is used.</param>
9583 <returns>An instance of the class associated with the constructor.</returns>
9584 </member>
9585 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
9586 <summary>When overridden in a derived class, invokes the reflected method or constructor with the given parameters.</summary>
9587 <param name="obj">The object on which to invoke the method or constructor. If a method is static, this argument is ignored. If a constructor is static, this argument must be null or an instance of the class that defines the constructor.</param>
9588 <param name="invokeAttr">A bitmask that is a combination of 0 or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. If binder is null, this parameter is assigned the value <see cref="F:System.Reflection.BindingFlags.Default" />; thus, whatever you pass in is ignored.</param>
9589 <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used.</param>
9590 <param name="parameters">An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, this should be null.If the method or constructor represented by this instance takes a ByRef parameter, there is no special attribute required for that parameter in order to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type.</param>
9591 <param name="culture">An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (This is necessary to convert a String that represents 1000 to a Double value, for example, since 1000 is represented differently by different cultures.)</param>
9592 <returns>An Object containing the return value of the invoked method, or null in the case of a constructor, or null if the method's return type is void. Before calling the method or constructor, Invoke checks to see if the user has access permission and verify that the parameters are valid.</returns>
9593 </member>
9594 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.IsDefined(System.Type,System.Boolean)">
9595 <summary>When overridden in a derived class, indicates whether one or more instance of attributeType is applied to this member.</summary>
9596 <param name="attributeType">The Type object to which the custom attributes are applied.</param>
9597 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9598 <returns>true if one or more instance of attributeType is applied to this member; otherwise false.</returns>
9599 </member>
9600 <member name="M:Gallio.Reflection.Impl.UnresolvedConstructorInfo.ToString">
9601 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
9602 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
9603 </member>
9604 <member name="T:Gallio.Reflection.Impl.UnresolvedEventInfo">
9605 <summary>Represents a <see cref="T:System.Reflection.EventInfo" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.IEventInfo" /> wrapper. This class cannot be inherited.</summary>
9606 </member>
9607 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.Adapter">
9608 <summary>Gets the underlying reflection adapter.</summary>
9609 </member>
9610 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.Attributes">
9611 <summary>Gets the attributes for this event.</summary>
9612 <value>The read-only attributes for this event.</value>
9613 </member>
9614 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.DeclaringType">
9615 <summary>Gets the class that declares this member.</summary>
9616 <value>The Type object for the class that declares this member.</value>
9617 </member>
9618 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.MemberType">
9619 <summary>Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is an event.</summary>
9620 <value>A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is an event.</value>
9621 </member>
9622 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.MetadataToken">
9623 <summary>Gets a value that identifies a metadata element.</summary>
9624 <value>A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element.</value>
9625 </member>
9626 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.Module">
9627 <summary>Gets the module in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</summary>
9628 <value>The <see cref="T:System.Reflection.Module" /> in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</value>
9629 </member>
9630 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.Name">
9631 <summary>Gets the name of the current member.</summary>
9632 <value>A <see cref="T:System.String" /> containing the name of this member.</value>
9633 </member>
9634 <member name="P:Gallio.Reflection.Impl.UnresolvedEventInfo.ReflectedType">
9635 <summary>Gets the class object that was used to obtain this instance of MemberInfo.</summary>
9636 <value>The Type object through which this MemberInfo object was obtained.</value>
9637 </member>
9638 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.Equals(System.Object)">
9639 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
9640 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
9641 </member>
9642 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetAddMethod(System.Boolean)">
9643 <summary>When overridden in a derived class, retrieves the MethodInfo object for the <see cref="M:System.Reflection.EventInfo.AddEventHandler(System.Object,System.Delegate)" /> method of the event, specifying whether to return non-public methods.</summary>
9644 <param name="nonPublic">true if non-public methods can be returned; otherwise, false.</param>
9645 <returns>A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to add an event handler delegate to the event source.</returns>
9646 </member>
9647 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetCustomAttributes(System.Boolean)">
9648 <summary>When overridden in a derived class, returns an array containing all the custom attributes.</summary>
9649 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9650 <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
9651 </member>
9652 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetCustomAttributes(System.Type,System.Boolean)">
9653 <summary>When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
9654 <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
9655 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9656 <returns>An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied.</returns>
9657 </member>
9658 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetHashCode">
9659 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
9660 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
9661 </member>
9662 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetOtherMethods(System.Boolean)">
9663 <summary>Returns the methods that have been associated with the event in metadata using the .other directive, specifying whether to include non-public methods.</summary>
9664 <param name="nonPublic">true to include non-public methods; otherwise, false.</param>
9665 <returns>An array of <see cref="T:System.Reflection.EventInfo" /> objects representing methods that have been associated with an event in metadata by using the .other directive. If there are no methods matching the specification, an empty array is returned.</returns>
9666 </member>
9667 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetRaiseMethod(System.Boolean)">
9668 <summary>When overridden in a derived class, returns the method that is called when the event is raised, specifying whether to return non-public methods.</summary>
9669 <param name="nonPublic">true if non-public methods can be returned; otherwise, false.</param>
9670 <returns>A MethodInfo object that was called when the event was raised.</returns>
9671 </member>
9672 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.GetRemoveMethod(System.Boolean)">
9673 <summary>When overridden in a derived class, retrieves the MethodInfo object for removing a method of the event, specifying whether to return non-public methods.</summary>
9674 <param name="nonPublic">true if non-public methods can be returned; otherwise, false.</param>
9675 <returns>A <see cref="T:System.Reflection.MethodInfo" /> object representing the method used to remove an event handler delegate from the event source.</returns>
9676 </member>
9677 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.IsDefined(System.Type,System.Boolean)">
9678 <summary>When overridden in a derived class, indicates whether one or more instance of attributeType is applied to this member.</summary>
9679 <param name="attributeType">The Type object to which the custom attributes are applied.</param>
9680 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9681 <returns>true if one or more instance of attributeType is applied to this member; otherwise false.</returns>
9682 </member>
9683 <member name="M:Gallio.Reflection.Impl.UnresolvedEventInfo.ToString">
9684 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
9685 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
9686 </member>
9687 <member name="T:Gallio.Reflection.Impl.UnresolvedFieldInfo">
9688 <summary>Represents a <see cref="T:System.Reflection.FieldInfo" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.IFieldInfo" /> wrapper. This class cannot be inherited.</summary>
9689 </member>
9690 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.Adapter">
9691 <summary>Gets the underlying reflection adapter.</summary>
9692 </member>
9693 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.Attributes">
9694 <summary>Gets the attributes associated with this field.</summary>
9695 <value>The FieldAttributes for this field.</value>
9696 </member>
9697 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.DeclaringType">
9698 <summary>Gets the class that declares this member.</summary>
9699 <value>The Type object for the class that declares this member.</value>
9700 </member>
9701 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.FieldHandle">
9702 <summary>Gets a RuntimeFieldHandle, which is a handle to the internal metadata representation of a field.</summary>
9703 <value>A handle to the internal metadata representation of a field.</value>
9704 </member>
9705 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.FieldType">
9706 <summary>Gets the type of this field object.</summary>
9707 <value>The type of this field object.</value>
9708 </member>
9709 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.MemberType">
9710 <summary>Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a field.</summary>
9711 <value>A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a field.</value>
9712 </member>
9713 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.MetadataToken">
9714 <summary>Gets a value that identifies a metadata element.</summary>
9715 <value>A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element.</value>
9716 </member>
9717 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.Module">
9718 <summary>Gets the module in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</summary>
9719 <value>The <see cref="T:System.Reflection.Module" /> in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</value>
9720 </member>
9721 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.Name">
9722 <summary>Gets the name of the current member.</summary>
9723 <value>A <see cref="T:System.String" /> containing the name of this member.</value>
9724 </member>
9725 <member name="P:Gallio.Reflection.Impl.UnresolvedFieldInfo.ReflectedType">
9726 <summary>Gets the class object that was used to obtain this instance of MemberInfo.</summary>
9727 <value>The Type object through which this MemberInfo object was obtained.</value>
9728 </member>
9729 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.Equals(System.Object)">
9730 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
9731 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
9732 </member>
9733 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetCustomAttributes(System.Boolean)">
9734 <summary>When overridden in a derived class, returns an array containing all the custom attributes.</summary>
9735 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9736 <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
9737 </member>
9738 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetCustomAttributes(System.Type,System.Boolean)">
9739 <summary>When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
9740 <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
9741 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9742 <returns>An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied.</returns>
9743 </member>
9744 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetHashCode">
9745 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
9746 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
9747 </member>
9748 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetOptionalCustomModifiers">
9749 <summary>Gets an array of types that identify the optional custom modifiers of the field.</summary>
9750 <returns>An array of <see cref="T:System.Type" /> objects that identify the optional custom modifiers of the current field, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDeferenced" />.</returns>
9751 </member>
9752 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetRawConstantValue">
9753 <summary>Returns a literal value associated with the field by a compiler.</summary>
9754 <returns>An <see cref="T:System.Object" /> that contains the literal value associated with the field. If the literal value is a class type with an element value of zero, the return value is null.</returns>
9755 </member>
9756 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetRequiredCustomModifiers">
9757 <summary>Gets an array of types that identify the required custom modifiers of the property.</summary>
9758 <returns>An array of <see cref="T:System.Type" /> objects that identify the required custom modifiers of the current property, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDeferenced" />.</returns>
9759 </member>
9760 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetValue(System.Object)">
9761 <summary>When overridden in a derived class, returns the value of a field supported by a given object.</summary>
9762 <param name="obj">The object whose field value will be returned.</param>
9763 <returns>An object containing the value of the field reflected by this instance.</returns>
9764 </member>
9765 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.GetValueDirect(System.TypedReference)">
9766 <summary>Returns the value of a field supported by a given object.</summary>
9767 <param name="obj">A <see cref="T:System.TypedReference" /> structure that encapsulates a managed pointer to a location and a runtime representation of the type that might be stored at that location.</param>
9768 <returns>An Object containing a field value.</returns>
9769 </member>
9770 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.IsDefined(System.Type,System.Boolean)">
9771 <summary>When overridden in a derived class, indicates whether one or more instance of attributeType is applied to this member.</summary>
9772 <param name="attributeType">The Type object to which the custom attributes are applied.</param>
9773 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9774 <returns>true if one or more instance of attributeType is applied to this member; otherwise false.</returns>
9775 </member>
9776 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)">
9777 <summary>When overridden in a derived class, sets the value of the field supported by the given object.</summary>
9778 <param name="obj">The object whose field value will be set.</param>
9779 <param name="value">The value to assign to the field.</param>
9780 <param name="invokeAttr">A field of Binder that specifies the type of binding that is desired (for example, Binder.CreateInstance or Binder.ExactBinding).</param>
9781 <param name="binder">A set of properties that enables the binding, coercion of argument types, and invocation of members through reflection. If binder is null, then Binder.DefaultBinding is used.</param>
9782 <param name="culture">The software preferences of a particular culture.</param>
9783 </member>
9784 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.SetValueDirect(System.TypedReference,System.Object)">
9785 <summary>Sets the value of the field supported by the given object.</summary>
9786 <param name="obj">A <see cref="T:System.TypedReference" /> structure that encapsulates a managed pointer to a location and a runtime representation of the type that can be stored at that location.</param>
9787 <param name="value">The value to assign to the field.</param>
9788 </member>
9789 <member name="M:Gallio.Reflection.Impl.UnresolvedFieldInfo.ToString">
9790 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
9791 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
9792 </member>
9793 <member name="T:Gallio.Reflection.Impl.UnresolvedMethodInfo">
9794 <summary>Represents a <see cref="T:System.Reflection.MethodInfo" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.IMethodInfo" /> wrapper. This class cannot be inherited.</summary>
9795 </member>
9796 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.Adapter">
9797 <summary>Gets the underlying reflection adapter.</summary>
9798 </member>
9799 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.Attributes">
9800 <summary>Gets the attributes associated with this method.</summary>
9801 <value>One of the <see cref="T:System.Reflection.MethodAttributes" /> values.</value>
9802 </member>
9803 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.CallingConvention">
9804 <summary>Gets a value indicating the calling conventions for this method.</summary>
9805 <value>The <see cref="T:System.Reflection.CallingConventions" /> for this method.</value>
9806 </member>
9807 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.ContainsGenericParameters">
9808 <summary>Gets a value indicating whether a generic method contains unassigned generic type parameters.</summary>
9809 <value>true if the current <see cref="T:System.Reflection.MethodInfo" /> contains unassigned generic type parameters; otherwise, false.</value>
9810 </member>
9811 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.DeclaringType">
9812 <summary>Gets the class that declares this member.</summary>
9813 <value>The Type object for the class that declares this member.</value>
9814 </member>
9815 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.IsGenericMethod">
9816 <summary>Gets a value indicating whether the current method is a generic method.</summary>
9817 <value>true if the current method is a generic method; otherwise, false.</value>
9818 </member>
9819 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.IsGenericMethodDefinition">
9820 <summary>Gets a value indicating whether the current <see cref="T:System.Reflection.MethodInfo" /> represents the definition of a generic method.</summary>
9821 <value>true if the <see cref="T:System.Reflection.MethodInfo" /> object represents the definition of a generic method; otherwise, false.</value>
9822 </member>
9823 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.MemberType">
9824 <summary>Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a method.</summary>
9825 <value>A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a method.</value>
9826 </member>
9827 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.MetadataToken">
9828 <summary>Gets a value that identifies a metadata element.</summary>
9829 <value>A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element.</value>
9830 </member>
9831 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.MethodHandle">
9832 <summary>Gets a handle to the internal metadata representation of a method.</summary>
9833 <value>A <see cref="T:System.RuntimeMethodHandle" /> object.</value>
9834 </member>
9835 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.Module">
9836 <summary>Gets the module in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</summary>
9837 <value>The <see cref="T:System.Reflection.Module" /> in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</value>
9838 </member>
9839 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.Name">
9840 <summary>Gets the name of the current member.</summary>
9841 <value>A <see cref="T:System.String" /> containing the name of this member.</value>
9842 </member>
9843 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.ReflectedType">
9844 <summary>Gets the class object that was used to obtain this instance of MemberInfo.</summary>
9845 <value>The Type object through which this MemberInfo object was obtained.</value>
9846 </member>
9847 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.ReturnParameter">
9848 <summary>Gets a <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type of the method, such as whether the return type has custom modifiers.</summary>
9849 <value>A <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type.</value>
9850 </member>
9851 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.ReturnType">
9852 <summary>Gets the return type of this method.</summary>
9853 <value>The return type of this method.</value>
9854 </member>
9855 <member name="P:Gallio.Reflection.Impl.UnresolvedMethodInfo.ReturnTypeCustomAttributes">
9856 <summary>Gets the custom attributes for the return type.</summary>
9857 <value>An ICustomAttributeProvider object representing the custom attributes for the return type.</value>
9858 </member>
9859 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.Equals(System.Object)">
9860 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
9861 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
9862 </member>
9863 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetBaseDefinition">
9864 <summary>When overridden in a derived class, returns the MethodInfo object for the method on the direct or indirect base class in which the method represented by this instance was first declared.</summary>
9865 <returns>A MethodInfo object for the first implementation of this method.</returns>
9866 </member>
9867 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetCustomAttributes(System.Boolean)">
9868 <summary>When overridden in a derived class, returns an array containing all the custom attributes.</summary>
9869 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9870 <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
9871 </member>
9872 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetCustomAttributes(System.Type,System.Boolean)">
9873 <summary>When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
9874 <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
9875 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9876 <returns>An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied.</returns>
9877 </member>
9878 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetGenericArguments">
9879 <summary>Returns an array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition.</summary>
9880 <returns>An array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic method or the type parameters of a generic method definition. Returns an empty array if the current method is not a generic method.</returns>
9881 </member>
9882 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetGenericMethodDefinition">
9883 <summary>Returns a <see cref="T:System.Reflection.MethodInfo" /> object that represents a generic method definition from which the current method can be constructed.</summary>
9884 <returns>A <see cref="T:System.Reflection.MethodInfo" /> object representing a generic method definition from which the current method can be constructed.</returns>
9885 </member>
9886 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetHashCode">
9887 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
9888 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
9889 </member>
9890 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetMethodBody">
9891 <summary>When overridden in a derived class, gets a <see cref="T:System.Reflection.MethodBody" /> object that provides access to the MSIL stream, local variables, and exceptions for the current method.</summary>
9892 <returns>A <see cref="T:System.Reflection.MethodBody" /> object that provides access to the MSIL stream, local variables, and exceptions for the current method.</returns>
9893 </member>
9894 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetMethodImplementationFlags">
9895 <summary>When overridden in a derived class, returns the <see cref="T:System.Reflection.MethodImplAttributes" /> flags.</summary>
9896 <returns>The MethodImplAttributes flags.</returns>
9897 </member>
9898 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.GetParameters">
9899 <summary>When overridden in a derived class, gets the parameters of the specified method or constructor.</summary>
9900 <returns>An array of type ParameterInfo containing information that matches the signature of the method (or constructor) reflected by this MethodBase instance.</returns>
9901 </member>
9902 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
9903 <summary>When overridden in a derived class, invokes the reflected method or constructor with the given parameters.</summary>
9904 <param name="obj">The object on which to invoke the method or constructor. If a method is static, this argument is ignored. If a constructor is static, this argument must be null or an instance of the class that defines the constructor.</param>
9905 <param name="invokeAttr">A bitmask that is a combination of 0 or more bit flags from <see cref="T:System.Reflection.BindingFlags" />. If binder is null, this parameter is assigned the value <see cref="F:System.Reflection.BindingFlags.Default" />; thus, whatever you pass in is ignored.</param>
9906 <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used.</param>
9907 <param name="parameters">An argument list for the invoked method or constructor. This is an array of objects with the same number, order, and type as the parameters of the method or constructor to be invoked. If there are no parameters, this should be null.If the method or constructor represented by this instance takes a ByRef parameter, there is no special attribute required for that parameter in order to invoke the method or constructor using this function. Any object in this array that is not explicitly initialized with a value will contain the default value for that object type. For reference-type elements, this value is null. For value-type elements, this value is 0, 0.0, or false, depending on the specific element type.</param>
9908 <param name="culture">An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (This is necessary to convert a String that represents 1000 to a Double value, for example, since 1000 is represented differently by different cultures.)</param>
9909 <returns>An Object containing the return value of the invoked method, or null in the case of a constructor, or null if the method's return type is void. Before calling the method or constructor, Invoke checks to see if the user has access permission and verify that the parameters are valid.</returns>
9910 </member>
9911 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.IsDefined(System.Type,System.Boolean)">
9912 <summary>When overridden in a derived class, indicates whether one or more instance of attributeType is applied to this member.</summary>
9913 <param name="attributeType">The Type object to which the custom attributes are applied.</param>
9914 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
9915 <returns>true if one or more instance of attributeType is applied to this member; otherwise false.</returns>
9916 </member>
9917 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.MakeGenericMethod(System.Type[])">
9918 <summary>Substitutes the elements of an array of types for the type parameters of the current generic method definition, and returns a <see cref="T:System.Reflection.MethodInfo" /> object representing the resulting constructed method.</summary>
9919 <param name="typeArguments">An array of types to be substituted for the type parameters of the current generic method definition.</param>
9920 <returns>A <see cref="T:System.Reflection.MethodInfo" /> object that represents the constructed method formed by substituting the elements of typeArguments for the type parameters of the current generic method definition.</returns>
9921 </member>
9922 <member name="M:Gallio.Reflection.Impl.UnresolvedMethodInfo.ToString">
9923 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
9924 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
9925 </member>
9926 <member name="T:Gallio.Reflection.Impl.UnresolvedParameterInfo">
9927 <summary>Represents a <see cref="T:System.Reflection.ParameterInfo" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.IParameterInfo" /> wrapper. This class cannot be inherited.</summary>
9928 </member>
9929 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.Adapter">
9930 <summary>Gets the underlying reflection adapter.</summary>
9931 </member>
9932 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.Attributes">
9933 <summary>Gets the attributes for this parameter.</summary>
9934 <value>A ParameterAttributes object representing the attributes for this parameter.</value>
9935 </member>
9936 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.DefaultValue">
9937 <summary>Gets a value indicating the default value if the parameter has a default value.</summary>
9938 <value>The default value of the parameter, or <see cref="F:System.DBNull.Value" /> if the parameter has no default value.</value>
9939 </member>
9940 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.Member">
9941 <summary>Gets a value indicating the member in which the parameter is implemented.</summary>
9942 <value>A MemberInfo object.</value>
9943 </member>
9944 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.Name">
9945 <summary>Gets the name of the parameter.</summary>
9946 <value>A String containing the simple name of this parameter.</value>
9947 </member>
9948 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.ParameterType">
9949 <summary>Gets the Type of this parameter.</summary>
9950 <value>The Type object that represents the Type of this parameter.</value>
9951 </member>
9952 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.Position">
9953 <summary>Gets the signature position for the parameter.</summary>
9954 <value>An integer representing the position this parameter occupies in the parameter list.</value>
9955 </member>
9956 <member name="P:Gallio.Reflection.Impl.UnresolvedParameterInfo.RawDefaultValue">
9957 <summary>Gets a value indicating the default value if the parameter has a default value.</summary>
9958 <value>The default value of the parameter, or <see cref="F:System.DBNull.Value" /> if the parameter has no default value.</value>
9959 </member>
9960 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.Equals(System.Object)">
9961 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
9962 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
9963 </member>
9964 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.GetCustomAttributes(System.Boolean)">
9965 <summary>Gets all the custom attributes defined on this parameter.</summary>
9966 <param name="inherit">This argument is ignored for objects of this type.</param>
9967 <returns>An array of type Object containing all the custom attributes defined on this parameter.</returns>
9968 </member>
9969 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.GetCustomAttributes(System.Type,System.Boolean)">
9970 <summary>Gets the custom attributes of the specified type defined on this parameter.</summary>
9971 <param name="attributeType">The custom attributes identified by type.</param>
9972 <param name="inherit">This argument is ignored for objects of this type.</param>
9973 <returns>An array of type Object containing the custom attributes of the specified type.</returns>
9974 </member>
9975 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.GetHashCode">
9976 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
9977 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
9978 </member>
9979 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.GetOptionalCustomModifiers">
9980 <summary>Gets the optional custom modifiers of the parameter.</summary>
9981 <returns>An array of <see cref="T:System.Type" /> objects that identify the optional custom modifiers of the current parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDeferenced" />.</returns>
9982 </member>
9983 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.GetRequiredCustomModifiers">
9984 <summary>Gets the required custom modifiers of the parameter.</summary>
9985 <returns>An array of <see cref="T:System.Type" /> objects that identify the required custom modifiers of the current parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDeferenced" />.</returns>
9986 </member>
9987 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.IsDefined(System.Type,System.Boolean)">
9988 <summary>Determines if the custom attribute of the specified type is defined on this member.</summary>
9989 <param name="attributeType">The Type object to search for.</param>
9990 <param name="inherit">This argument is ignored for objects of this type.</param>
9991 <returns>true if one or more instance of attributeType is defined on this member; otherwise, false.</returns>
9992 </member>
9993 <member name="M:Gallio.Reflection.Impl.UnresolvedParameterInfo.ToString">
9994 <summary>Gets the parameter type and name represented as a string.</summary>
9995 <returns>A string containing the type and the name of the parameter.</returns>
9996 </member>
9997 <member name="T:Gallio.Reflection.Impl.UnresolvedPropertyInfo">
9998 <summary>Represents a <see cref="T:System.Reflection.PropertyInfo" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.IPropertyInfo" /> wrapper. This class cannot be inherited.</summary>
9999 </member>
10000 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.Adapter">
10001 <summary>Gets the underlying reflection adapter.</summary>
10002 </member>
10003 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.Attributes">
10004 <summary>Gets the attributes for this property.</summary>
10005 <value>Attributes of this property.</value>
10006 </member>
10007 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.CanRead">
10008 <summary>Gets a value indicating whether the property can be read.</summary>
10009 <value>true if this property can be read; otherwise, false.</value>
10010 </member>
10011 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.CanWrite">
10012 <summary>Gets a value indicating whether the property can be written to.</summary>
10013 <value>true if this property can be written to; otherwise, false.</value>
10014 </member>
10015 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.DeclaringType">
10016 <summary>Gets the class that declares this member.</summary>
10017 <value>The Type object for the class that declares this member.</value>
10018 </member>
10019 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.MemberType">
10020 <summary>Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a property.</summary>
10021 <value>A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a property.</value>
10022 </member>
10023 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.MetadataToken">
10024 <summary>Gets a value that identifies a metadata element.</summary>
10025 <value>A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element.</value>
10026 </member>
10027 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.Module">
10028 <summary>Gets the module in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</summary>
10029 <value>The <see cref="T:System.Reflection.Module" /> in which the type that declares the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is defined.</value>
10030 </member>
10031 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.Name">
10032 <summary>Gets the name of the current member.</summary>
10033 <value>A <see cref="T:System.String" /> containing the name of this member.</value>
10034 </member>
10035 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.PropertyType">
10036 <summary>Gets the type of this property.</summary>
10037 <value>The type of this property.</value>
10038 </member>
10039 <member name="P:Gallio.Reflection.Impl.UnresolvedPropertyInfo.ReflectedType">
10040 <summary>Gets the class object that was used to obtain this instance of MemberInfo.</summary>
10041 <value>The Type object through which this MemberInfo object was obtained.</value>
10042 </member>
10043 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.Equals(System.Object)">
10044 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
10045 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
10046 </member>
10047 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetAccessors(System.Boolean)">
10048 <summary>Returns an array whose elements reflect the public and, if specified, non-public get, set, and other accessors of the property reflected by the current instance.</summary>
10049 <param name="nonPublic">Indicates whether non-public methods should be returned in the MethodInfo array. true if non-public methods are to be included; otherwise, false.</param>
10050 <returns>An array of <see cref="T:System.Reflection.MethodInfo" /> objects whose elements reflect the get, set, and other accessors of the property reflected by the current instance. If nonPublic is true, this array contains public and non-public get, set, and other accessors. If nonPublic is false, this array contains only public get, set, and other accessors. If no accessors with the specified visibility are found, this method returns an array with zero (0) elements.</returns>
10051 </member>
10052 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetConstantValue">
10053 <summary>Returns a literal value associated with the property by a compiler.</summary>
10054 <returns>An <see cref="T:System.Object" /> that contains the literal value associated with the property. If the literal value is a class type with an element value of zero, the return value is null.</returns>
10055 </member>
10056 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetCustomAttributes(System.Boolean)">
10057 <summary>When overridden in a derived class, returns an array containing all the custom attributes.</summary>
10058 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
10059 <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
10060 </member>
10061 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetCustomAttributes(System.Type,System.Boolean)">
10062 <summary>When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
10063 <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
10064 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
10065 <returns>An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied.</returns>
10066 </member>
10067 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetGetMethod(System.Boolean)">
10068 <summary>When overridden in a derived class, returns the public or non-public get accessor for this property.</summary>
10069 <param name="nonPublic">Indicates whether a non-public get accessor should be returned. true if a non-public accessor is to be returned; otherwise, false.</param>
10070 <returns>A MethodInfo object representing the get accessor for this property, if nonPublic is true. Returns null if nonPublic is false and the get accessor is non-public, or if nonPublic is true but no get accessors exist.</returns>
10071 </member>
10072 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetHashCode">
10073 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
10074 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
10075 </member>
10076 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetIndexParameters">
10077 <summary>When overridden in a derived class, returns an array of all the index parameters for the property.</summary>
10078 <returns>An array of type ParameterInfo containing the parameters for the indexes.</returns>
10079 </member>
10080 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetOptionalCustomModifiers">
10081 <summary>Returns an array of types representing the optional custom modifiers of the property.</summary>
10082 <returns>An array of <see cref="T:System.Type" /> objects that identify the optional custom modifiers of the current property, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDeferenced" />.</returns>
10083 </member>
10084 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetRawConstantValue">
10085 <summary>Returns a literal value associated with the property by a compiler.</summary>
10086 <returns>An <see cref="T:System.Object" /> that contains the literal value associated with the property. If the literal value is a class type with an element value of zero, the return value is null.</returns>
10087 </member>
10088 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetRequiredCustomModifiers">
10089 <summary>Returns an array of types representing the required custom modifiers of the property.</summary>
10090 <returns>An array of <see cref="T:System.Type" /> objects that identify the required custom modifiers of the current property, such as <see cref="T:System.Runtime.CompilerServices.IsConst" /> or <see cref="T:System.Runtime.CompilerServices.IsImplicitlyDeferenced" />.</returns>
10091 </member>
10092 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetSetMethod(System.Boolean)">
10093 <summary>When overridden in a derived class, returns the set accessor for this property.</summary>
10094 <param name="nonPublic">Indicates whether the accessor should be returned if it is non-public. true if a non-public accessor is to be returned; otherwise, false.</param>
10095 <returns>Value Condition A <see cref="T:System.Reflection.MethodInfo" /> object representing the Set method for this property. The set accessor is public.-or- nonPublic is true and the set accessor is non-public. nullnonPublic is true, but the property is read-only.-or- nonPublic is false and the set accessor is non-public.-or- There is no set accessor.</returns>
10096 </member>
10097 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
10098 <summary>When overridden in a derived class, returns the value of a property having the specified binding, index, and CultureInfo.</summary>
10099 <param name="obj">The object whose property value will be returned.</param>
10100 <param name="invokeAttr">The invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set.</param>
10101 <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used.</param>
10102 <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
10103 <param name="culture">The CultureInfo object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property.</param>
10104 <returns>The property value for obj.</returns>
10105 </member>
10106 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.GetValue(System.Object,System.Object[])">
10107 <summary>Returns the value of the property with optional index values for indexed properties.</summary>
10108 <param name="obj">The object whose property value will be returned.</param>
10109 <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
10110 <returns>The property value for the obj parameter.</returns>
10111 </member>
10112 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.IsDefined(System.Type,System.Boolean)">
10113 <summary>When overridden in a derived class, indicates whether one or more instance of attributeType is applied to this member.</summary>
10114 <param name="attributeType">The Type object to which the custom attributes are applied.</param>
10115 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
10116 <returns>true if one or more instance of attributeType is applied to this member; otherwise false.</returns>
10117 </member>
10118 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
10119 <summary>When overridden in a derived class, sets the property value for the given object to the given value.</summary>
10120 <param name="obj">The object whose property value will be returned.</param>
10121 <param name="value">The new value for this property.</param>
10122 <param name="invokeAttr">The invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set.</param>
10123 <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If binder is null, the default binder is used.</param>
10124 <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
10125 <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property.</param>
10126 </member>
10127 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.SetValue(System.Object,System.Object,System.Object[])">
10128 <summary>Sets the value of the property with optional index values for index properties.</summary>
10129 <param name="obj">The object whose property value will be set.</param>
10130 <param name="value">The new value for this property.</param>
10131 <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
10132 </member>
10133 <member name="M:Gallio.Reflection.Impl.UnresolvedPropertyInfo.ToString">
10134 <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</summary>
10135 <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.</returns>
10136 </member>
10137 <member name="T:Gallio.Reflection.Impl.UnresolvedType">
10138 <summary>Represents a <see cref="T:System.Type" /> whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.ITypeInfo" /> wrapper. This class cannot be inherited.</summary>
10139 </member>
10140 <member name="P:Gallio.Reflection.Impl.UnresolvedType.Adapter">
10141 <summary>Gets the underlying reflection adapter.</summary>
10142 </member>
10143 <member name="P:Gallio.Reflection.Impl.UnresolvedType.Assembly">
10144 <summary>Gets the <see cref="T:System.Reflection.Assembly" /> in which the type is declared. For generic types, gets the <see cref="T:System.Reflection.Assembly" nolink="true" /> in which the generic type is defined.</summary>
10145 <value>An <see cref="T:System.Reflection.Assembly" /> instance that describes the assembly containing the current type. For generic types, the instance describes the assembly that contains the generic type definition, not the assembly that creates and uses a particular constructed type.</value>
10146 </member>
10147 <member name="P:Gallio.Reflection.Impl.UnresolvedType.AssemblyQualifiedName">
10148 <summary>Gets the assembly-qualified name of the <see cref="T:System.Type" />, which includes the name of the assembly from which the <see cref="T:System.Type" nolink="true" /> was loaded.</summary>
10149 <value>The assembly-qualified name of the <see cref="T:System.Type" />, which includes the name of the assembly from which the <see cref="T:System.Type" nolink="true" /> was loaded, or null if the current instance represents a generic type parameter.</value>
10150 </member>
10151 <member name="P:Gallio.Reflection.Impl.UnresolvedType.BaseType">
10152 <summary>Gets the type from which the current <see cref="T:System.Type" /> directly inherits.</summary>
10153 <value>The <see cref="T:System.Type" /> from which the current <see cref="T:System.Type" nolink="true" /> directly inherits, or null if the current Type represents the <see cref="T:System.Object" /> class.</value>
10154 </member>
10155 <member name="P:Gallio.Reflection.Impl.UnresolvedType.ContainsGenericParameters">
10156 <summary>Gets a value indicating whether the current <see cref="T:System.Type" /> object has type parameters that have not been replaced by specific types.</summary>
10157 <value>true if the <see cref="T:System.Type" /> object has type parameters for which specific types have not been supplied; otherwise, false.</value>
10158 </member>
10159 <member name="P:Gallio.Reflection.Impl.UnresolvedType.DeclaringMethod">
10160 <summary>Gets a <see cref="T:System.Reflection.MethodBase" /> that represents the declaring method, if the current <see cref="T:System.Type" /> represents a type parameter of a generic method.</summary>
10161 <value>If the current <see cref="T:System.Type" /> represents a type parameter of a generic method, a <see cref="T:System.Reflection.MethodBase" /> that represents declaring method; otherwise, null.</value>
10162 </member>
10163 <member name="P:Gallio.Reflection.Impl.UnresolvedType.DeclaringType">
10164 <summary>Gets the class that declares this member.</summary>
10165 <value>The Type object for the class that declares this member. If the type is a nested type, this property returns the enclosing type.</value>
10166 </member>
10167 <member name="P:Gallio.Reflection.Impl.UnresolvedType.FullName">
10168 <summary>Gets the fully qualified name of the <see cref="T:System.Type" />, including the namespace of the <see cref="T:System.Type" nolink="true" /> but not the assembly.</summary>
10169 <value>A string containing the fully qualified name of the <see cref="T:System.Type" />, including the namespace of the <see cref="T:System.Type" nolink="true" /> but not the assembly, or null if the current instance represents a generic type parameter.</value>
10170 </member>
10171 <member name="P:Gallio.Reflection.Impl.UnresolvedType.GUID">
10172 <summary>Gets the GUID associated with the <see cref="T:System.Type" />.</summary>
10173 <value>The GUID associated with the <see cref="T:System.Type" />.</value>
10174 </member>
10175 <member name="P:Gallio.Reflection.Impl.UnresolvedType.GenericParameterAttributes">
10176 <summary>Gets a combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> flags that describe the covariance and special constraints of the current generic type parameter.</summary>
10177 <value>A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> values that describes the covariance and special constraints of the current generic type parameter.</value>
10178 </member>
10179 <member name="P:Gallio.Reflection.Impl.UnresolvedType.GenericParameterPosition">
10180 <summary>Gets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter, when the <see cref="T:System.Type" /> object represents a type parameter of a generic type or a generic method.</summary>
10181 <value>The position of a type parameter in the type parameter list of the generic type or method that defines the parameter. Position numbers begin at 0.</value>
10182 </member>
10183 <member name="P:Gallio.Reflection.Impl.UnresolvedType.IsGenericParameter">
10184 <summary>Gets a value indicating whether the current <see cref="T:System.Type" /> represents a type parameter in the definition of a generic type or method.</summary>
10185 <value>true if the <see cref="T:System.Type" /> object represents a type parameter of a generic type definition or generic method definition; otherwise, false.</value>
10186 </member>
10187 <member name="P:Gallio.Reflection.Impl.UnresolvedType.IsGenericType">
10188 <summary>Gets a value indicating whether the current type is a generic type.</summary>
10189 <value>true if the current type is a generic type; otherwise, false.</value>
10190 </member>
10191 <member name="P:Gallio.Reflection.Impl.UnresolvedType.IsGenericTypeDefinition">
10192 <summary>Gets a value indicating whether the current <see cref="T:System.Type" /> represents a generic type definition, from which other generic types can be constructed.</summary>
10193 <value>true if the <see cref="T:System.Type" /> object represents a generic type definition; otherwise, false.</value>
10194 </member>
10195 <member name="P:Gallio.Reflection.Impl.UnresolvedType.MemberType">
10196 <summary>Gets a <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a type or a nested type.</summary>
10197 <value>A <see cref="T:System.Reflection.MemberTypes" /> value indicating that this member is a type or a nested type.</value>
10198 </member>
10199 <member name="P:Gallio.Reflection.Impl.UnresolvedType.MetadataToken">
10200 <summary>Gets a value that identifies a metadata element.</summary>
10201 <value>A value which, in combination with <see cref="P:System.Reflection.MemberInfo.Module" />, uniquely identifies a metadata element.</value>
10202 </member>
10203 <member name="P:Gallio.Reflection.Impl.UnresolvedType.Module">
10204 <summary>Gets the module (the DLL) in which the current <see cref="T:System.Type" /> is defined.</summary>
10205 <value>The name of the module in which the current <see cref="T:System.Type" /> is defined.</value>
10206 </member>
10207 <member name="P:Gallio.Reflection.Impl.UnresolvedType.Name">
10208 <summary>Gets the name of the current member.</summary>
10209 <value>A <see cref="T:System.String" /> containing the name of this member.</value>
10210 </member>
10211 <member name="P:Gallio.Reflection.Impl.UnresolvedType.Namespace">
10212 <summary>Gets the namespace of the <see cref="T:System.Type" />.</summary>
10213 <value>The namespace of the <see cref="T:System.Type" />, or null if the current instance represents a generic parameter.</value>
10214 </member>
10215 <member name="P:Gallio.Reflection.Impl.UnresolvedType.ReflectedType">
10216 <summary>Gets the class object that was used to obtain this member.</summary>
10217 <value>The Type object through which this MemberInfo object was obtained.</value>
10218 </member>
10219 <member name="P:Gallio.Reflection.Impl.UnresolvedType.StructLayoutAttribute">
10220 <summary>Gets a <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> that describes the layout of the current type.</summary>
10221 <value>Gets a <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> that describes the gross layout features of the current type.</value>
10222 </member>
10223 <member name="P:Gallio.Reflection.Impl.UnresolvedType.TypeHandle">
10224 <summary>Gets the handle for the current <see cref="T:System.Type" />.</summary>
10225 <value>The handle for the current <see cref="T:System.Type" />.</value>
10226 </member>
10227 <member name="P:Gallio.Reflection.Impl.UnresolvedType.UnderlyingSystemType">
10228 <summary>Indicates the type provided by the common language runtime that represents this type.</summary>
10229 <value>The underlying system type for the <see cref="T:System.Type" />.</value>
10230 </member>
10231 <member name="M:Gallio.Reflection.Impl.UnresolvedType.Equals(System.Object)">
10232 <summary>Determines if the underlying system type of the current <see cref="T:System.Type" /> is the same as the underlying system type of the specified <see cref="T:System.Object" />.</summary>
10233 <param name="o">The <see cref="T:System.Object" /> whose underlying system type is to be compared with the underlying system type of the current <see cref="T:System.Type" />.</param>
10234 <returns>true if the underlying system type of o is the same as the underlying system type of the current <see cref="T:System.Type" />; otherwise, false. This method also returns false if the object specified by the o parameter is not a Type.</returns>
10235 </member>
10236 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetArrayRank">
10237 <summary>Gets the number of dimensions in an <see cref="T:System.Array" />.</summary>
10238 <returns>An <see cref="T:System.Int32" /> containing the number of dimensions in the current Type.</returns>
10239 </member>
10240 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetConstructors(System.Reflection.BindingFlags)">
10241 <summary>When overridden in a derived class, searches for the constructors defined for the current <see cref="T:System.Type" />, using the specified BindingFlags.</summary>
10242 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10243 <returns>An array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing all constructors defined for the current <see cref="T:System.Type" /> that match the specified binding constraints, including the type initializer if it is defined. Returns an empty array of type <see cref="T:System.Reflection.ConstructorInfo" nolink="true" /> if no constructors are defined for the current <see cref="T:System.Type" nolink="true" />, if none of the defined constructors match the binding constraints, or if the current <see cref="T:System.Type" nolink="true" /> represents a type parameter in the definition of a generic type or generic method.</returns>
10244 </member>
10245 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetCustomAttributes(System.Boolean)">
10246 <summary>When overridden in a derived class, returns an array containing all the custom attributes.</summary>
10247 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
10248 <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
10249 </member>
10250 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetCustomAttributes(System.Type,System.Boolean)">
10251 <summary>When overridden in a derived class, returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
10252 <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
10253 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
10254 <returns>An array of custom attributes applied to this member, or an array with zero (0) elements if no attributes have been applied.</returns>
10255 </member>
10256 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetDefaultMembers">
10257 <summary>Searches for the members defined for the current <see cref="T:System.Type" /> whose <see cref="T:System.Reflection.DefaultMemberAttribute" /> is set.</summary>
10258 <returns>An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all default members of the current <see cref="T:System.Type" />.-or- An empty array of type <see cref="T:System.Reflection.MemberInfo" nolink="true" />, if the current <see cref="T:System.Type" nolink="true" /> does not have default members.</returns>
10259 </member>
10260 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetElementType">
10261 <summary>When overridden in a derived class, returns the <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer or reference type.</summary>
10262 <returns>The <see cref="T:System.Type" /> of the object encompassed or referred to by the current array, pointer, or reference type, or null if the current <see cref="T:System.Type" nolink="true" /> is not an array or a pointer, or is not passed by reference, or represents a generic type or a type parameter in the definition of a generic type or generic method.</returns>
10263 </member>
10264 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetEvent(System.String,System.Reflection.BindingFlags)">
10265 <summary>When overridden in a derived class, returns the <see cref="T:System.Reflection.EventInfo" /> object representing the specified event, using the specified binding constraints.</summary>
10266 <param name="name">The <see cref="T:System.String" /> containing the name of an event which is declared or inherited by the current <see cref="T:System.Type" />.</param>
10267 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10268 <returns>The <see cref="T:System.Reflection.EventInfo" /> object representing the specified event which is declared or inherited by the current <see cref="T:System.Type" />, if found; otherwise, null.</returns>
10269 </member>
10270 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetEvents(System.Reflection.BindingFlags)">
10271 <summary>When overridden in a derived class, searches for events that are declared or inherited by the current <see cref="T:System.Type" />, using the specified binding constraints.</summary>
10272 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10273 <returns>An array of <see cref="T:System.Reflection.EventInfo" /> objects representing all events which are declared or inherited by the current <see cref="T:System.Type" /> that match the specified binding constraints.-or- An empty array of type <see cref="T:System.Reflection.EventInfo" nolink="true" />, if the current <see cref="T:System.Type" nolink="true" /> does not have events, or if none of the events match the binding constraints.</returns>
10274 </member>
10275 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetField(System.String,System.Reflection.BindingFlags)">
10276 <summary>Searches for the specified field, using the specified binding constraints.</summary>
10277 <param name="name">The <see cref="T:System.String" /> containing the name of the data field to get.</param>
10278 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10279 <returns>A <see cref="T:System.Reflection.FieldInfo" /> object representing the field that matches the specified requirements, if found; otherwise, null.</returns>
10280 </member>
10281 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetFields(System.Reflection.BindingFlags)">
10282 <summary>When overridden in a derived class, searches for the fields defined for the current <see cref="T:System.Type" />, using the specified binding constraints.</summary>
10283 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10284 <returns>An array of <see cref="T:System.Reflection.FieldInfo" /> objects representing all fields defined for the current <see cref="T:System.Type" /> that match the specified binding constraints.-or- An empty array of type <see cref="T:System.Reflection.FieldInfo" nolink="true" />, if no fields are defined for the current <see cref="T:System.Type" nolink="true" />, or if none of the defined fields match the binding constraints.</returns>
10285 </member>
10286 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetGenericArguments">
10287 <summary>Returns an array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic type or the type parameters of a generic type definition.</summary>
10288 <returns>An array of <see cref="T:System.Type" /> objects that represent the type arguments of a generic type. Returns an empty array if the current type is not a generic type.</returns>
10289 </member>
10290 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetGenericParameterConstraints">
10291 <summary>Returns an array of <see cref="T:System.Type" /> objects that represent the constraints on the current generic type parameter.</summary>
10292 <returns>An array of <see cref="T:System.Type" /> objects that represent the constraints on the current generic type parameter.</returns>
10293 </member>
10294 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetGenericTypeDefinition">
10295 <summary>Returns a <see cref="T:System.Type" /> object that represents a generic type definition from which the current generic type can be constructed.</summary>
10296 <returns>A <see cref="T:System.Type" /> object representing a generic type from which the current type can be constructed.</returns>
10297 </member>
10298 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetHashCode">
10299 <summary>Returns the hash code for this instance.</summary>
10300 <returns>An <see cref="T:System.Int32" /> containing the hash code for this instance.</returns>
10301 </member>
10302 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetInterface(System.String,System.Boolean)">
10303 <summary>When overridden in a derived class, searches for the specified interface, specifying whether to do a case-sensitive search.</summary>
10304 <param name="name">The <see cref="T:System.String" /> containing the name of the interface to get. For generic interfaces, this is the mangled name.</param>
10305 <param name="ignoreCase">true to perform a case-insensitive search for name.-or- false to perform a case-sensitive search for name.</param>
10306 <returns>A <see cref="T:System.Type" /> object representing the interface with the specified name, implemented or inherited by the current <see cref="T:System.Type" nolink="true" />, if found; otherwise, null.</returns>
10307 </member>
10308 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetInterfaceMap(System.Type)">
10309 <summary>Returns an interface mapping for the specified interface type.</summary>
10310 <param name="interfaceType">The <see cref="T:System.Type" /> of the interface of which to retrieve a mapping.</param>
10311 <returns>An <see cref="T:System.Reflection.InterfaceMapping" /> object representing the interface mapping for interfaceType.</returns>
10312 </member>
10313 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetInterfaces">
10314 <summary>When overridden in a derived class, gets all the interfaces implemented or inherited by the current <see cref="T:System.Type" />.</summary>
10315 <returns>An array of <see cref="T:System.Type" /> objects representing all the interfaces implemented or inherited by the current <see cref="T:System.Type" nolink="true" />.-or- An empty array of type <see cref="T:System.Type" nolink="true" />, if no interfaces are implemented or inherited by the current <see cref="T:System.Type" nolink="true" />.</returns>
10316 </member>
10317 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
10318 <summary>Searches for the specified members of the specified member type, using the specified binding constraints.</summary>
10319 <param name="name">The <see cref="T:System.String" /> containing the name of the members to get.</param>
10320 <param name="type">The <see cref="T:System.Reflection.MemberTypes" /> value to search for.</param>
10321 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return an empty array.</param>
10322 <returns>An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public members with the specified name, if found; otherwise, an empty array.</returns>
10323 </member>
10324 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetMembers(System.Reflection.BindingFlags)">
10325 <summary>When overridden in a derived class, searches for the members defined for the current <see cref="T:System.Type" />, using the specified binding constraints.</summary>
10326 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10327 <returns>An array of <see cref="T:System.Reflection.MemberInfo" /> objects representing all members defined for the current <see cref="T:System.Type" /> that match the specified binding constraints.-or- An empty array of type <see cref="T:System.Reflection.MemberInfo" nolink="true" />, if no members are defined for the current <see cref="T:System.Type" nolink="true" />, or if none of the defined members match the binding constraints.</returns>
10328 </member>
10329 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetMethods(System.Reflection.BindingFlags)">
10330 <summary>When overridden in a derived class, searches for the methods defined for the current <see cref="T:System.Type" />, using the specified binding constraints.</summary>
10331 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10332 <returns>An array of <see cref="T:System.Reflection.MethodInfo" /> objects representing all methods defined for the current <see cref="T:System.Type" /> that match the specified binding constraints.-or- An empty array of type <see cref="T:System.Reflection.MethodInfo" nolink="true" />, if no methods are defined for the current <see cref="T:System.Type" nolink="true" />, or if none of the defined methods match the binding constraints.</returns>
10333 </member>
10334 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetNestedType(System.String,System.Reflection.BindingFlags)">
10335 <summary>When overridden in a derived class, searches for the specified nested type, using the specified binding constraints.</summary>
10336 <param name="name">The string containing the name of the nested type to get.</param>
10337 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10338 <returns>A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, null.</returns>
10339 </member>
10340 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetNestedTypes(System.Reflection.BindingFlags)">
10341 <summary>When overridden in a derived class, searches for the types nested within the current <see cref="T:System.Type" />, using the specified binding constraints.</summary>
10342 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10343 <returns>An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" nolink="true" /> that match the specified binding constraints.-or- An empty array of type <see cref="T:System.Type" nolink="true" />, if no types are nested within the current <see cref="T:System.Type" nolink="true" />, or if none of the nested types match the binding constraints.</returns>
10344 </member>
10345 <member name="M:Gallio.Reflection.Impl.UnresolvedType.GetProperties(System.Reflection.BindingFlags)">
10346 <summary>When overridden in a derived class, searches for the properties of the current <see cref="T:System.Type" />, using the specified binding constraints.</summary>
10347 <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.-or- Zero, to return null.</param>
10348 <returns>An array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing all properties of the current <see cref="T:System.Type" /> that match the specified binding constraints.-or- An empty array of type <see cref="T:System.Reflection.PropertyInfo" nolink="true" />, if the current <see cref="T:System.Type" nolink="true" /> does not have properties, or if none of the properties match the binding constraints.</returns>
10349 </member>
10350 <member name="M:Gallio.Reflection.Impl.UnresolvedType.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])">
10351 <summary>When overridden in a derived class, invokes the specified member, using the specified binding constraints and matching the specified argument list, modifiers and culture.</summary>
10352 <param name="name">The <see cref="T:System.String" /> containing the name of the constructor, method, property, or field member to invoke.-or- An empty string ("") to invoke the default member. -or-For IDispatch members, a string representing the DispID, for example "[DispID=3]".</param>
10353 <param name="invokeAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted. The access can be one of the BindingFlags such as Public, NonPublic, Private, InvokeMethod, GetField, and so on. The type of lookup need not be specified. If the type of lookup is omitted, BindingFlags.Public | BindingFlags.Instance will apply.</param>
10354 <param name="binder">A <see cref="T:System.Reflection.Binder" /> object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection.-or- null, to use the <see cref="P:System.Type.DefaultBinder" />.</param>
10355 <param name="target">The <see cref="T:System.Object" /> on which to invoke the specified member.</param>
10356 <param name="args">An array containing the arguments to pass to the member to invoke.</param>
10357 <param name="modifiers">An array of <see cref="T:System.Reflection.ParameterModifier" /> objects representing the attributes associated with the corresponding element in the args array. A parameter's associated attributes are stored in the member's signature. The default binder does not process this parameter.</param>
10358 <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> object representing the globalization locale to use, which may be necessary for locale-specific conversions, such as converting a numeric String to a Double.-or- null to use the current thread's <see cref="T:System.Globalization.CultureInfo" nolink="true" />.</param>
10359 <param name="namedParameters">An array containing the names of the parameters to which the values in the args array are passed.</param>
10360 <returns>An <see cref="T:System.Object" /> representing the return value of the invoked member.</returns>
10361 </member>
10362 <member name="M:Gallio.Reflection.Impl.UnresolvedType.IsAssignableFrom(System.Type)">
10363 <summary>Determines whether an instance of the current <see cref="T:System.Type" /> can be assigned from an instance of the specified Type.</summary>
10364 <param name="c">The Type to compare with the current Type.</param>
10365 <returns>true if c and the current Type represent the same type, or if the current Type is in the inheritance hierarchy of c, or if the current Type is an interface that c implements, or if c is a generic type parameter and the current Type represents one of the constraints of c. false if none of these conditions are true, or if c is null.</returns>
10366 </member>
10367 <member name="M:Gallio.Reflection.Impl.UnresolvedType.IsDefined(System.Type,System.Boolean)">
10368 <summary>When overridden in a derived class, indicates whether one or more instance of attributeType is applied to this member.</summary>
10369 <param name="attributeType">The Type object to which the custom attributes are applied.</param>
10370 <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
10371 <returns>true if one or more instance of attributeType is applied to this member; otherwise false.</returns>
10372 </member>
10373 <member name="M:Gallio.Reflection.Impl.UnresolvedType.IsInstanceOfType(System.Object)">
10374 <summary>Determines whether the specified object is an instance of the current <see cref="T:System.Type" />.</summary>
10375 <param name="o">The object to compare with the current Type.</param>
10376 <returns>true if the current Type is in the inheritance hierarchy of the object represented by o, or if the current Type is an interface that o supports. false if neither of these conditions is the case, or if o is null, or if the current Type is an open generic type (that is, <see cref="P:System.Type.ContainsGenericParameters" /> returns true).</returns>
10377 </member>
10378 <member name="M:Gallio.Reflection.Impl.UnresolvedType.IsSubclassOf(System.Type)">
10379 <summary>Determines whether the class represented by the current <see cref="T:System.Type" /> derives from the class represented by the specified <see cref="T:System.Type" nolink="true" />.</summary>
10380 <param name="c">The Type to compare with the current Type.</param>
10381 <returns>true if the Type represented by the c parameter and the current Type represent classes, and the class represented by the current Type derives from the class represented by c; otherwise, false. This method also returns false if c and the current Type represent the same class.</returns>
10382 </member>
10383 <member name="M:Gallio.Reflection.Impl.UnresolvedType.MakeArrayType">
10384 <summary>Returns a <see cref="T:System.Type" /> object representing a one-dimensional array of the current type, with a lower bound of zero.</summary>
10385 <returns>A <see cref="T:System.Type" /> object representing a one-dimensional array of the current type, with a lower bound of zero.</returns>
10386 </member>
10387 <member name="M:Gallio.Reflection.Impl.UnresolvedType.MakeArrayType(System.Int32)">
10388 <summary>Returns a <see cref="T:System.Type" /> object representing an array of the current type, with the specified number of dimensions.</summary>
10389 <param name="rank">The number of dimensions for the array.</param>
10390 <returns>A <see cref="T:System.Type" /> object representing an array of the current type, with the specified number of dimensions.</returns>
10391 </member>
10392 <member name="M:Gallio.Reflection.Impl.UnresolvedType.MakeByRefType">
10393 <summary>Returns a <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic).</summary>
10394 <returns>A <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic).</returns>
10395 </member>
10396 <member name="M:Gallio.Reflection.Impl.UnresolvedType.MakeGenericType(System.Type[])">
10397 <summary>Substitutes the elements of an array of types for the type parameters of the current generic type definition and returns a <see cref="T:System.Type" /> object representing the resulting constructed type.</summary>
10398 <param name="typeArguments">An array of types to be substituted for the type parameters of the current generic type.</param>
10399 <returns>A <see cref="T:System.Type" /> representing the constructed type formed by substituting the elements of typeArguments for the type parameters of the current generic type.</returns>
10400 </member>
10401 <member name="M:Gallio.Reflection.Impl.UnresolvedType.MakePointerType">
10402 <summary>Returns a <see cref="T:System.Type" /> object that represents a pointer to the current type.</summary>
10403 <returns>A <see cref="T:System.Type" /> object that represents a pointer to the current type.</returns>
10404 </member>
10405 <member name="M:Gallio.Reflection.Impl.UnresolvedType.ToString">
10406 <summary>Returns a String representing the name of the current Type.</summary>
10407 <returns>A <see cref="T:System.String" /> representing the name of the current <see cref="T:System.Type" />.</returns>
10408 </member>
10409 <member name="T:Gallio.Reflection.Impl.XmlDocumentationUtils">
10410 <summary>Helpers for working with <see cref="T:Gallio.Reflection.Impl.IXmlDocumentationResolver" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
10411 </member>
10412 <member name="P:Gallio.Reflection.Impl.XmlDocumentationUtils.Resolver">
10413 <summary>Gets the XML documentation resolver.</summary>
10414 </member>
10415 <member name="M:Gallio.Reflection.Impl.XmlDocumentationUtils.FormatId(System.Reflection.MemberInfo)">
10416 <summary>Gets the XML documentation id of a member.</summary>
10417 <param name="member">The member</param>
10418 <returns>The XML documentation id of the member</returns>
10419 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="member" /> is null</exception>
10420 </member>
10421 <member name="M:Gallio.Reflection.Impl.XmlDocumentationUtils.GetXmlDocumentation(System.Reflection.MemberInfo)">
10422 <summary>Gets the XML documentation for a member.</summary>
10423 <param name="member">The member</param>
10424 <returns>The XML documentation for the member, or null if none available</returns>
10425 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="member" /> is null</exception>
10426 </member>
10427 <member name="T:Gallio.Reflection.Impl.StaticTypeSubstitution">
10428 <summary>A type substitution specifies how generic parameters are replaced by other types. It is used by implementors of <see cref="T:Gallio.Reflection.Impl.StaticReflectionPolicy" /> when returning types that may be represented as generic parameters.</summary>
10429 </member>
10430 <member name="F:Gallio.Reflection.Impl.StaticTypeSubstitution.Empty">
10431 <summary>Gets the empty type substitution. This field is read-only.</summary>
10432 </member>
10433 <member name="P:Gallio.Reflection.Impl.StaticTypeSubstitution.IsEmpty">
10434 <summary>Returns true if the type substitution does not contain any replacements.</summary>
10435 </member>
10436 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.Apply(Gallio.Reflection.Impl.StaticTypeWrapper)">
10437 <summary>Applies a type substitution to the specified type.</summary>
10438 <param name="type">The type to substitute</param>
10439 <returns>The substituted type</returns>
10440 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="type" /> is null</exception>
10441 </member>
10442 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.Apply(Gallio.Reflection.Impl.StaticGenericParameterWrapper)">
10443 <summary>Applies a type substitution to the specified generic parameter.</summary>
10444 <param name="type">The generic parameter to substitute</param>
10445 <returns>The substituted type</returns>
10446 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="type" /> is null</exception>
10447 </member>
10448 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.ApplyAll``1(System.Collections.Generic.IList{``0})">
10449 <summary>Applies a type substitution to the specified list of types.</summary>
10450 <param name="types">The types to substitute</param>
10451 <returns>The substituted types</returns>
10452 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="types" /> is null</exception>
10453 </member>
10454 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.Compose(Gallio.Reflection.Impl.StaticTypeSubstitution)">
10455 <summary>Returns a new substitution formed by composing this substitution with the specified one. That is to say, each replacement type in this substitution is replaced as described in the specified substitution.</summary>
10456 <param name="substitution">The substitution to compose</param>
10457 <returns>The new substitution</returns>
10458 </member>
10459 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.DoesNotContainAny(System.Collections.Generic.IList{Gallio.Reflection.Impl.StaticGenericParameterWrapper})">
10460 <summary>Returns true if this substitution does not contain any of the specified generic parameters.</summary>
10461 <param name="genericParameters">The generic parameters</param>
10462 <returns>True if none of the generic parameters are in the substitution</returns>
10463 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="genericParameters" /> is null</exception>
10464 </member>
10465 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.Equals(Gallio.Reflection.Impl.StaticTypeSubstitution)">
10466 <summary>Indicates whether this instance and a specified object are equal.</summary>
10467 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
10468 </member>
10469 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.Equals(System.Object)">
10470 <summary>Indicates whether this instance and a specified object are equal.</summary>
10471 <param name="obj">Another object to compare to.</param>
10472 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
10473 </member>
10474 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.Extend(System.Collections.Generic.IList{Gallio.Reflection.Impl.StaticGenericParameterWrapper},System.Collections.Generic.IList{Gallio.Reflection.ITypeInfo})">
10475 <summary>Returns a new substitution with the specified generic parameters replaced by their respective generic arguments.</summary>
10476 <param name="genericParameters">The generic parameters</param>
10477 <param name="genericArguments">The generic arguments</param>
10478 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="genericParameters" /> or <paramref name="genericArguments" /> is null or contain nulls</exception>
10479 <exception cref="T:System.ArgumentException">Thrown if <paramref name="genericArguments" /> does not have the same number of elements as <paramref name="genericParameters" /></exception>
10480 </member>
10481 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.GetHashCode">
10482 <summary>Returns the hash code for this instance.</summary>
10483 <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
10484 </member>
10485 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.op_Equality(Gallio.Reflection.Impl.StaticTypeSubstitution,Gallio.Reflection.Impl.StaticTypeSubstitution)">
10486 <summary>Compares two static type substitutions for equality.</summary>
10487 <param name="a">The first substitution</param>
10488 <param name="b">The second substitution</param>
10489 <returns>True if the substitutions are equal</returns>
10490 </member>
10491 <member name="M:Gallio.Reflection.Impl.StaticTypeSubstitution.op_Inequality(Gallio.Reflection.Impl.StaticTypeSubstitution,Gallio.Reflection.Impl.StaticTypeSubstitution)">
10492 <summary>Compares two static type substitutions for inequality.</summary>
10493 <param name="a">The first substitution</param>
10494 <param name="b">The second substitution</param>
10495 <returns>True if the substitutions are equal</returns>
10496 </member>
10497 <member name="T:Gallio.Reflection.Impl.IDebugSymbolResolver">
10498 <summary>Resolves debug symbols associated with members.</summary>
10499 </member>
10500 <member name="M:Gallio.Reflection.Impl.IDebugSymbolResolver.GetSourceLocationForMethod(System.String,System.Int32)">
10501 <summary>Gets the location of a source file that contains the declaration of a method, or null if not available.</summary>
10502 <param name="assemblyPath">The path of the assembly that contains the method</param>
10503 <param name="methodToken">The method token</param>
10504 <returns>The source code location, or null if unknown</returns>
10505 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyPath" /> is null</exception>
10506 </member>
10507 <member name="T:Gallio.Reflection.Impl.IResolvableTypeInfo">
10508 <summary>This extension of <see cref="T:Gallio.Reflection.ITypeInfo" /> is provided to enable the resolution of a type with <see cref="M:Gallio.Reflection.Impl.ReflectorResolveUtils.ResolveType(Gallio.Reflection.Impl.IResolvableTypeInfo,System.Reflection.MethodInfo,System.Boolean)" />.</summary>
10509 </member>
10510 <member name="M:Gallio.Reflection.Impl.IResolvableTypeInfo.Resolve(System.Reflection.MethodInfo,System.Boolean)">
10511 <summary>Resolves the wrapper to its native reflection target within the scope of the specified method.</summary>
10512 <param name="methodContext">The method that is currently in scope, or null if none. This parameter is used when resolving types that are part of the signature of a generic method so that generic method arguments can be handled correctly.</param>
10513 <param name="throwOnError">If true, throws an exception if the target could not be resolved, otherwise returns a reflection object that represents an unresolved member which may only support a subset of the usual operations</param>
10514 <returns>The native reflection target</returns>
10515 <exception cref="T:Gallio.Reflection.CodeElementResolveException">Thrown if the target cannot be resolved</exception>
10516 </member>
10517 <member name="T:Gallio.Reflection.Impl.IUnresolvedCodeElement">
10518 <summary>An interface implemented by special reflection types that represent code elements whose native definition could not be resolved so we fall back on the <see cref="T:Gallio.Reflection.ICodeElementInfo" /> wrapper instead.</summary>
10519 </member>
10520 <member name="P:Gallio.Reflection.Impl.IUnresolvedCodeElement.Adapter">
10521 <summary>Gets the underlying reflection adapter.</summary>
10522 </member>
10523 <member name="T:Gallio.Reflection.Impl.IXmlDocumentationResolver">
10524 <summary>Resolves members to XML documentation contents.</summary>
10525 </member>
10526 <member name="M:Gallio.Reflection.Impl.IXmlDocumentationResolver.GetXmlDocumentation(System.String,System.String)">
10527 <summary>Gets the XML documentation for a member in an assembly.</summary>
10528 <param name="assemblyPath">The assembly path</param>
10529 <param name="memberId">The XML documentation id of the member</param>
10530 <returns>The XML documentation for the member, or null if none available</returns>
10531 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyPath" /> or <paramref name="memberId" /> is null</exception>
10532 </member>
10533 <member name="T:Gallio.Runner.DefaultTestRunnerManager">
10534 <summary>The default implementation of <see cref="T:Gallio.Runner.ITestRunnerManager" />.</summary>
10535 </member>
10536 <member name="P:Gallio.Runner.DefaultTestRunnerManager.FactoryResolver">
10537 <summary>Gets a resolver for resolving registered <see cref="T:Gallio.Runner.ITestRunnerFactory" /> components by name.</summary>
10538 </member>
10539 <member name="M:Gallio.Runner.DefaultTestRunnerManager.CreateTestRunner(System.String)">
10540 <summary>Creates a test runner.</summary>
10541 <param name="factoryName">The name of the test runner factory, matched case-insensitively</param>
10542 <returns>The test runner</returns>
10543 </member>
10544 <member name="T:Gallio.Runner.HostedTestRunner">
10545 <summary>An implementation of <see cref="T:Gallio.Runner.ITestRunner" /> that runs tests within the context of particular <see cref="T:Gallio.Runtime.Hosting.IHost" />. The host is created when the package is loaded and is disposed when the package is unloaded. Consequently each new package runs in a new host.</summary>
10546 </member>
10547 <member name="P:Gallio.Runner.HostedTestRunner.Events">
10548 <summary>Gets the event dispatcher for the test runner.</summary>
10549 </member>
10550 <member name="P:Gallio.Runner.HostedTestRunner.Host">
10551 <summary>Gets the host, or null if no package has been loaded.</summary>
10552 </member>
10553 <member name="P:Gallio.Runner.HostedTestRunner.Logger">
10554 <summary>Gets the logger, or null if the test runner has not been initialized.</summary>
10555 </member>
10556 <member name="P:Gallio.Runner.HostedTestRunner.Options">
10557 <summary>Gets the test runner options, or null if the test runner has not been initialized.</summary>
10558 </member>
10559 <member name="P:Gallio.Runner.HostedTestRunner.Report">
10560 <summary>Gets the most recent report contents. The report may be only partially populated depending on the current state of the test runner. When no test package has been loaded, the report will be empty but not null.</summary>
10561 </member>
10562 <member name="M:Gallio.Runner.HostedTestRunner.Dispose(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
10563 <summary>Disposes the test runner. Does nothing if already disposed or if not initialized.</summary>
10564 <param name="progressMonitor">The progress monitor</param>
10565 </member>
10566 <member name="M:Gallio.Runner.HostedTestRunner.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
10567 <summary>
10568 <para> Explores tests within the currently loaded test package. </para>
10569 <para> When this operation completes, the <see cref="P:Gallio.Runner.Reports.Report.TestModel" /> property of <see cref="P:Gallio.Runner.ITestRunner.Report" /> will contain information about the test package. </para>
10570 </summary>
10571 <param name="options">The test exploration options</param>
10572 <param name="progressMonitor">The progress monitor</param>
10573 </member>
10574 <member name="M:Gallio.Runner.HostedTestRunner.Initialize(Gallio.Runner.TestRunnerOptions,Gallio.Runtime.Logging.ILogger,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
10575 <summary>Initializes the test runner.</summary>
10576 <param name="options">The test runner options</param>
10577 <param name="logger">The logger</param>
10578 <param name="progressMonitor">The progress monitor</param>
10579 </member>
10580 <member name="M:Gallio.Runner.HostedTestRunner.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
10581 <summary>
10582 <para> Loads a test package. </para>
10583 <para> When this operation completes, the <see cref="P:Gallio.Runner.Reports.Report.TestPackageConfig" /> property of <see cref="P:Gallio.Runner.ITestRunner.Report" /> will contain information about the test package. </para>
10584 </summary>
10585 <param name="testPackageConfig">The test package configuration</param>
10586 <param name="progressMonitor">The progress monitor</param>
10587 </member>
10588 <member name="M:Gallio.Runner.HostedTestRunner.RegisterExtension(Gallio.Runner.Extensions.ITestRunnerExtension)">
10589 <summary>Registers a test runner extension.</summary>
10590 <param name="extension">The test runner extension to register</param>
10591 </member>
10592 <member name="M:Gallio.Runner.HostedTestRunner.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
10593 <summary>
10594 <para> Runs the tests. </para>
10595 <para> When this operation completes, the <see cref="P:Gallio.Runner.Reports.Report.TestPackageRun" /> property of <see cref="P:Gallio.Runner.ITestRunner.Report" /> will contain test results. </para>
10596 </summary>
10597 <param name="options">The test execution options</param>
10598 <param name="progressMonitor">The progress monitor</param>
10599 </member>
10600 <member name="M:Gallio.Runner.HostedTestRunner.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
10601 <summary>
10602 <para> Unloads the current test package. Does nothing if none is currently loaded. </para>
10603 <para> When this operation completes, the <see cref="P:Gallio.Runner.ITestRunner.Report" /> will be empty once again. </para>
10604 </summary>
10605 <param name="progressMonitor">The progress monitor</param>
10606 </member>
10607 <member name="T:Gallio.Runner.HostedTestRunnerFactory">
10608 <summary>A <see cref="T:Gallio.Runner.ITestRunnerFactory" /> for <see cref="T:Gallio.Runner.HostedTestRunner" /> using different implementations of <see cref="T:Gallio.Runtime.Hosting.IHostFactory" />.</summary>
10609 </member>
10610 <member name="P:Gallio.Runner.HostedTestRunnerFactory.Description">
10611 <summary>Gets the human-readable description of the component.</summary>
10612 </member>
10613 <member name="P:Gallio.Runner.HostedTestRunnerFactory.Name">
10614 <summary>Gets the unique name of the component.</summary>
10615 </member>
10616 <member name="M:Gallio.Runner.HostedTestRunnerFactory.CreateTestRunner">
10617 <summary>Creates a test runner.</summary>
10618 <returns>The test runner</returns>
10619 </member>
10620 <member name="T:Gallio.Runner.OperationFinishedEventArgs">
10621 <summary>Base arguments for events raised to indicate the completion of an operation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
10622 </member>
10623 <member name="P:Gallio.Runner.OperationFinishedEventArgs.Success">
10624 <summary>Returns true if the operation completed successfully.</summary>
10625 </member>
10626 <member name="T:Gallio.Runner.OperationStartedEventArgs">
10627 <summary>Base arguments for events raised to indicate the beginning of an operation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
10628 </member>
10629 <member name="T:Gallio.Runner.ResultCode">
10630 <summary>Describes the result codes used by the application. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
10631 </member>
10632 <member name="F:Gallio.Runner.ResultCode.Canceled">
10633 <summary>The tests were canceled. This field is constant and read-only.</summary>
10634 </member>
10635 <member name="F:Gallio.Runner.ResultCode.Failure">
10636 <summary>Some tests failed. This field is constant and read-only.</summary>
10637 </member>
10638 <member name="F:Gallio.Runner.ResultCode.FatalException">
10639 <summary>A fatal runtime exception occurred. This field is constant and read-only.</summary>
10640 </member>
10641 <member name="F:Gallio.Runner.ResultCode.InvalidArguments">
10642 <summary>Invalid arguments were supplied on the command-line. This field is constant and read-only.</summary>
10643 </member>
10644 <member name="F:Gallio.Runner.ResultCode.NoTests">
10645 <summary>No tests were found. This field is constant and read-only.</summary>
10646 </member>
10647 <member name="F:Gallio.Runner.ResultCode.Success">
10648 <summary>The tests ran successfully or there were no tests to run. This field is constant and read-only.</summary>
10649 </member>
10650 <member name="T:Gallio.Runner.RunnerException">
10651 <summary>The type of exception thrown when the test runner or one of its supportive components like a test domain fails in an unrecoverable manner. It can happen that the test results will be lost or incomplete.</summary>
10652 </member>
10653 <member name="T:Gallio.Runner.StandardTestRunnerFactoryNames">
10654 <summary>Provides constant names for the standard test runner factories. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
10655 </member>
10656 <member name="F:Gallio.Runner.StandardTestRunnerFactoryNames.IsolatedAppDomain">
10657 <summary>Runs the test runner in an isolated AppDomain of the current process. This field is constant and read-only.</summary>
10658 </member>
10659 <member name="F:Gallio.Runner.StandardTestRunnerFactoryNames.IsolatedProcess">
10660 <summary>Runs the test runner in an isolated process. This field is constant and read-only.</summary>
10661 </member>
10662 <member name="F:Gallio.Runner.StandardTestRunnerFactoryNames.Local">
10663 <summary>Runs the test runner in the local AppDomain. This field is constant and read-only.</summary>
10664 </member>
10665 <member name="T:Gallio.Runner.TestLauncher">
10666 <summary>
10667 <para> The test launcher encapsulated the entire test execution lifecycle from start to finish and provides a simplified pattern for running tests. </para>
10668 <para> The basic usage pattern is as follows: <list type="numbered"><item>Create the launcher.</item><item>Set properties to specify the inputs and outputs of the test run.</item><item>Run the tests all in one go.</item><item>Optionally do something with the contents of the final report.</item></list></para>
10669 <para> By default, the launcher assumes that a runtime environment has already been established and is accessible via the <see cref="T:Gallio.Runtime.RuntimeAccessor" />. If there is no runtime yet, then you can cause one to be configured automatically for the duration of the test run by setting the <see cref="P:Gallio.Runner.TestLauncher.RuntimeSetup" /> property accordingly. </para>
10670 <para> You can override the default <see cref="T:Gallio.Runner.ITestRunner" /> that is created by setting the <see cref="P:Gallio.Runner.TestLauncher.TestRunnerFactoryName" /> property. </para>
10671 </summary>
10672 </member>
10673 <member name="P:Gallio.Runner.TestLauncher.DoNotRun">
10674 <summary>
10675 <para> Gets or sets whether to skip test execution. This option may be used to produce a report that contains test metadata for consumption by other tools. </para>
10676 <para> The default value is <c>false</c>. </para>
10677 </summary>
10678 </member>
10679 <member name="P:Gallio.Runner.TestLauncher.EchoResults">
10680 <summary>
10681 <para> Controls whether the test runner will echo result to the <see cref="P:Gallio.Runner.TestLauncher.Logger" /> as each test finishes. </para>
10682 <para> The default value is <c>false</c>. </para>
10683 </summary>
10684 </member>
10685 <member name="P:Gallio.Runner.TestLauncher.IgnoreAnnotations">
10686 <summary>
10687 <para> Gets or sets whether to ignore annotations when determining the result code. If false, then error annotations, usually indicative of broken tests, will cause a failure result to be generated. </para>
10688 <para> The default value is <c>false</c>. </para>
10689 </summary>
10690 </member>
10691 <member name="P:Gallio.Runner.TestLauncher.Logger">
10692 <summary>
10693 <para> Gets or sets the logger to use. </para>
10694 <para> The default logger is <see cref="F:Gallio.Runtime.Logging.NullLogger.Instance" />. </para>
10695 </summary>
10696 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10697 </member>
10698 <member name="P:Gallio.Runner.TestLauncher.ProgressMonitorProvider">
10699 <summary>
10700 <para> Gets or sets the progress monitor provider to use. </para>
10701 <para> The default provider is <see cref="P:Gallio.Runtime.ProgressMonitoring.NullProgressMonitorProvider.Instance" />. </para>
10702 </summary>
10703 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10704 </member>
10705 <member name="P:Gallio.Runner.TestLauncher.ReportDirectory">
10706 <summary>
10707 <para> Gets or sets the path of the directory to which reports will be written. </para>
10708 <para> The default value is <c>""</c> which causes reports to be written to the current directory. </para>
10709 </summary>
10710 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10711 </member>
10712 <member name="P:Gallio.Runner.TestLauncher.ReportFormatOptions">
10713 <summary>Gets the mutable collection of options for the report formatters.</summary>
10714 </member>
10715 <member name="P:Gallio.Runner.TestLauncher.ReportFormats">
10716 <summary>Gets the mutable list of report formats to generate.</summary>
10717 </member>
10718 <member name="P:Gallio.Runner.TestLauncher.ReportNameFormat">
10719 <summary>
10720 <para /> Gets or sets a format string used to construct the name of report files (without the extension). Within the format string, <c>{0}</c> is replaced by the date and <c>{1}</c> by the time. <para> The default value is <c>"test-report-{0}-{1}"</c>. </para></summary>
10721 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10722 </member>
10723 <member name="P:Gallio.Runner.TestLauncher.RuntimeSetup">
10724 <summary>
10725 <para> Gets or sets the <see cref="P:Gallio.Runner.TestLauncher.RuntimeSetup" /> to use for automatically initializing the runtime during test execution or <c>null</c> if the runtime is already initialized. </para>
10726 <para> If this value if not <c>null</c> then the launcher will initialize the runtime using this <see cref="P:Gallio.Runner.TestLauncher.RuntimeSetup" nolink="true" /> just prior to test execution and will automatically shut down the runtime just afterwards. </para>
10727 <para> The default value is <c>null</c> which assumes that the runtime is already initialized. </para>
10728 </summary>
10729 </member>
10730 <member name="P:Gallio.Runner.TestLauncher.ShowReports">
10731 <summary>
10732 <para> Gets or sets whether to show the reports after the test run finishes. </para>
10733 <para> The default value is <c>false</c>. </para>
10734 </summary>
10735 </member>
10736 <member name="P:Gallio.Runner.TestLauncher.TestExecutionOptions">
10737 <summary>Gets or sets the test execution options.</summary>
10738 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10739 </member>
10740 <member name="P:Gallio.Runner.TestLauncher.TestExplorationOptions">
10741 <summary>Gets or sets the test exploration options.</summary>
10742 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10743 </member>
10744 <member name="P:Gallio.Runner.TestLauncher.TestPackageConfig">
10745 <summary>Gets or sets the test package.</summary>
10746 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10747 </member>
10748 <member name="P:Gallio.Runner.TestLauncher.TestRunnerExtensionSpecifications">
10749 <summary>Gets a mutable list of test runner extension specifications to instantiate and register with the test runner during test execution.</summary>
10750 </member>
10751 <member name="P:Gallio.Runner.TestLauncher.TestRunnerExtensions">
10752 <summary>Gets a mutable list of test runner extensions to register with the test runner during test execution.</summary>
10753 </member>
10754 <member name="P:Gallio.Runner.TestLauncher.TestRunnerFactoryName">
10755 <summary>
10756 <para> Specifies the name of a <see cref="T:Gallio.Runner.ITestRunnerFactory" /> to use for constructing the <see cref="T:Gallio.Runner.ITestRunner" /> at test execution time. </para>
10757 <para> The default value is <see cref="F:Gallio.Runner.StandardTestRunnerFactoryNames.Local" />. </para>
10758 </summary>
10759 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10760 </member>
10761 <member name="P:Gallio.Runner.TestLauncher.TestRunnerOptions">
10762 <summary>Gets or sets the test runner options.</summary>
10763 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
10764 </member>
10765 <member name="M:Gallio.Runner.TestLauncher.GenerateReports(Gallio.Runner.TestLauncherResult,Gallio.Runner.Reports.IReportManager)">
10766 <summary>Method to generate reports in the specified formats for a result set.</summary>
10767 <param name="result">The test results to use</param>
10768 <param name="reportManager">The report manager</param>
10769 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="result" /> or <paramref name="reportManager" /> is null</exception>
10770 </member>
10771 <member name="M:Gallio.Runner.TestLauncher.Run">
10772 <summary>
10773 <para> Runs the test package as configured. </para>
10774 <para> If <see cref="P:Gallio.Runner.TestLauncher.RuntimeSetup" /> is non-<c>null</c>, initializes the runtime for the duration of this method then shuts it down automatically before returning. Otherwise assumes the runtime has already been initialized and accesses it using <see cref="T:Gallio.Runtime.RuntimeAccessor" />. </para>
10775 </summary>
10776 <returns>A result object</returns>
10777 </member>
10778 <member name="M:Gallio.Runner.TestLauncher.ShowReportDocuments(Gallio.Runner.TestLauncherResult)">
10779 <summary>Shows the report documents enumerated in the launcher result.</summary>
10780 <param name="result">The result</param>
10781 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="result" /> is null</exception>
10782 </member>
10783 <member name="T:Gallio.Runner.TestLauncherResult">
10784 <summary>Contains the result of a complete test run.</summary>
10785 </member>
10786 <member name="P:Gallio.Runner.TestLauncherResult.Report">
10787 <summary>Gets the test report.</summary>
10788 </member>
10789 <member name="P:Gallio.Runner.TestLauncherResult.ReportDocumentPaths">
10790 <summary>Gets the full paths of the formatted report documents.</summary>
10791 <value>The full paths of the formatted report documents</value>
10792 </member>
10793 <member name="P:Gallio.Runner.TestLauncherResult.ResultCode">
10794 <summary>Gets the result code.</summary>
10795 </member>
10796 <member name="P:Gallio.Runner.TestLauncherResult.ResultSummary">
10797 <summary>Gets a short summary with the number of test that passed, failed and so on.</summary>
10798 </member>
10799 <member name="P:Gallio.Runner.TestLauncherResult.Statistics">
10800 <summary>Gets the statistics of the execution from the report or an empty statistics object if none.</summary>
10801 </member>
10802 <member name="M:Gallio.Runner.TestLauncherResult.AddReportDocumentPath(System.String)">
10803 <summary>Adds a new report document path.</summary>
10804 <param name="reportDocumentPath">The report document path</param>
10805 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="reportDocumentPath" /> is null</exception>
10806 </member>
10807 <member name="M:Gallio.Runner.TestLauncherResult.SetResultCode(System.Int32)">
10808 <summary>Sets the result code of the result.</summary>
10809 <param name="value">The new result code</param>
10810 </member>
10811 <member name="T:Gallio.Runner.TestRunnerEventDispatcher">
10812 <summary>Dispatches test runner events to listeners. Each notification function ensures that the event is safely dispatched via <see cref="M:Gallio.Utilities.EventHandlerUtils.SafeInvoke(System.EventHandler,System.Object,System.EventArgs)" />. This class cannot be inherited.</summary>
10813 </member>
10814 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyDisposeFinished(Gallio.Runner.Events.DisposeFinishedEventArgs)">
10815 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.DisposeFinished" /> event.</summary>
10816 <param name="e">The event arguments</param>
10817 </member>
10818 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyDisposeStarted(Gallio.Runner.Events.DisposeStartedEventArgs)">
10819 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.DisposeStarted" /> event.</summary>
10820 <param name="e">The event arguments</param>
10821 </member>
10822 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyExploreFinished(Gallio.Runner.Events.ExploreFinishedEventArgs)">
10823 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.ExploreFinished" /> event.</summary>
10824 <param name="e">The event arguments</param>
10825 </member>
10826 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyExploreStarted(Gallio.Runner.Events.ExploreStartedEventArgs)">
10827 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.ExploreStarted" /> event.</summary>
10828 <param name="e">The event arguments</param>
10829 </member>
10830 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyInitializeFinished(Gallio.Runner.Events.InitializeFinishedEventArgs)">
10831 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.InitializeFinished" /> event.</summary>
10832 <param name="e">The event arguments</param>
10833 </member>
10834 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyInitializeStarted(Gallio.Runner.Events.InitializeStartedEventArgs)">
10835 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.InitializeStarted" /> event.</summary>
10836 <param name="e">The event arguments</param>
10837 </member>
10838 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyLoadFinished(Gallio.Runner.Events.LoadFinishedEventArgs)">
10839 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.LoadFinished" /> event.</summary>
10840 <param name="e">The event arguments</param>
10841 </member>
10842 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyLoadStarted(Gallio.Runner.Events.LoadStartedEventArgs)">
10843 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.LoadStarted" /> event.</summary>
10844 <param name="e">The event arguments</param>
10845 </member>
10846 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyRunFinished(Gallio.Runner.Events.RunFinishedEventArgs)">
10847 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.RunFinished" /> event.</summary>
10848 <param name="e">The event arguments</param>
10849 </member>
10850 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyRunStarted(Gallio.Runner.Events.RunStartedEventArgs)">
10851 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.RunStarted" /> event.</summary>
10852 <param name="e">The event arguments</param>
10853 </member>
10854 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepFinished(Gallio.Runner.Events.TestStepFinishedEventArgs)">
10855 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepFinished" /> event.</summary>
10856 <param name="e">The event arguments</param>
10857 </member>
10858 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLifecyclePhaseChanged(Gallio.Runner.Events.TestStepLifecyclePhaseChangedEventArgs)">
10859 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLifecyclePhaseChanged" /> event.</summary>
10860 <param name="e">The event arguments</param>
10861 </member>
10862 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLogBinaryAttachmentAdded(Gallio.Runner.Events.TestStepLogBinaryAttachmentAddedEventArgs)">
10863 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogBinaryAttachmentAdded" /> event.</summary>
10864 <param name="e">The event arguments</param>
10865 </member>
10866 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLogStreamAttachmentEmbedded(Gallio.Runner.Events.TestStepLogStreamAttachmentEmbeddedEventArgs)">
10867 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamAttachmentEmbedded" /> event.</summary>
10868 <param name="e">The event arguments</param>
10869 </member>
10870 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLogStreamSectionFinished(Gallio.Runner.Events.TestStepLogStreamSectionFinishedEventArgs)">
10871 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamSectionFinished" /> event.</summary>
10872 <param name="e">The event arguments</param>
10873 </member>
10874 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLogStreamSectionStarted(Gallio.Runner.Events.TestStepLogStreamSectionStartedEventArgs)">
10875 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamSectionStarted" /> event.</summary>
10876 <param name="e">The event arguments</param>
10877 </member>
10878 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLogStreamTextWritten(Gallio.Runner.Events.TestStepLogStreamTextWrittenEventArgs)">
10879 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamTextWritten" /> event.</summary>
10880 <param name="e">The event arguments</param>
10881 </member>
10882 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepLogTextAttachmentAdded(Gallio.Runner.Events.TestStepLogTextAttachmentAddedEventArgs)">
10883 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogTextAttachmentAdded" /> event.</summary>
10884 <param name="e">The event arguments</param>
10885 </member>
10886 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepMetadataAdded(Gallio.Runner.Events.TestStepMetadataAddedEventArgs)">
10887 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepMetadataAdded" /> event.</summary>
10888 <param name="e">The event arguments</param>
10889 </member>
10890 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyTestStepStarted(Gallio.Runner.Events.TestStepStartedEventArgs)">
10891 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepStarted" /> event.</summary>
10892 <param name="e">The event arguments</param>
10893 </member>
10894 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyUnloadFinished(Gallio.Runner.Events.UnloadFinishedEventArgs)">
10895 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.UnloadFinished" /> event.</summary>
10896 <param name="e">The event arguments</param>
10897 </member>
10898 <member name="M:Gallio.Runner.TestRunnerEventDispatcher.NotifyUnloadStarted(Gallio.Runner.Events.UnloadStartedEventArgs)">
10899 <summary>Dispatches the <see cref="E:Gallio.Runner.TestRunnerEventDispatcher.UnloadStarted" /> event.</summary>
10900 <param name="e">The event arguments</param>
10901 </member>
10902 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.DisposeFinished">
10903 <summary>The event raised to indicate that the test runner disposal has finished.</summary>
10904 </member>
10905 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.DisposeStarted">
10906 <summary>The event raised to indicate that the test runner disposal has started.</summary>
10907 </member>
10908 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.ExploreFinished">
10909 <summary>The event raised to indicate that test exploration has finished.</summary>
10910 </member>
10911 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.ExploreStarted">
10912 <summary>The event raised to indicate that test exploration has started.</summary>
10913 </member>
10914 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.InitializeFinished">
10915 <summary>The event raised to indicate that the test runner initialization has finished.</summary>
10916 </member>
10917 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.InitializeStarted">
10918 <summary>The event raised to indicate that the test runner initialization has started.</summary>
10919 </member>
10920 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.LoadFinished">
10921 <summary>The event raised to indicate that a test package has finished loading.</summary>
10922 </member>
10923 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.LoadStarted">
10924 <summary>The event raised to indicate that a test package is being loaded.</summary>
10925 </member>
10926 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.RunFinished">
10927 <summary>The event raised to indicate that test execution has finished.</summary>
10928 </member>
10929 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.RunStarted">
10930 <summary>The event raised to indicate that test execution has started.</summary>
10931 </member>
10932 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepFinished">
10933 <summary>The event raised to indicate that a test step has finished execution.</summary>
10934 </member>
10935 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLifecyclePhaseChanged">
10936 <summary>The event raised to indicate that a test step has entered a new lifecycle phase.</summary>
10937 </member>
10938 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogBinaryAttachmentAdded">
10939 <summary>The event raised to indicate that a binary attachment has been added to a test step log.</summary>
10940 </member>
10941 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamAttachmentEmbedded">
10942 <summary>The event raised to indicate that an attachment has been embedded into a test step log stream.</summary>
10943 </member>
10944 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamSectionFinished">
10945 <summary>The event raised to indicate that a section has finished within a test step log stream.</summary>
10946 </member>
10947 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamSectionStarted">
10948 <summary>The event raised to indicate that a section has been started within a test step log stream.</summary>
10949 </member>
10950 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogStreamTextWritten">
10951 <summary>The event raised to indicate that text has been written to a test step log stream.</summary>
10952 </member>
10953 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepLogTextAttachmentAdded">
10954 <summary>The event raised to indicate that a text attachment has been added to a test step log.</summary>
10955 </member>
10956 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepMetadataAdded">
10957 <summary>The event raised to indicate that a test step dynamically added metadata to itself.</summary>
10958 </member>
10959 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.TestStepStarted">
10960 <summary>The event raised to indicate that a test step has started execution.</summary>
10961 </member>
10962 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.UnloadFinished">
10963 <summary>The event raised to indicate that a test package has finished unloading.</summary>
10964 </member>
10965 <member name="E:Gallio.Runner.TestRunnerEventDispatcher.UnloadStarted">
10966 <summary>The event raised to indicate that a test package is being unloaded.</summary>
10967 </member>
10968 <member name="T:Gallio.Runner.TestRunnerOptions">
10969 <summary>Provides options that control the operation of the test runner.</summary>
10970 </member>
10971 <member name="M:Gallio.Runner.TestRunnerOptions.Copy">
10972 <summary>Creates a copy of the options.</summary>
10973 <returns>The copy</returns>
10974 </member>
10975 <member name="T:Gallio.Runner.TestRunnerUtils">
10976 <summary>Provides helper functions for test runner tools. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
10977 </member>
10978 <member name="M:Gallio.Runner.TestRunnerUtils.CreateTestRunnerByName(System.String)">
10979 <summary>Creates a test runner given its factory name.</summary>
10980 <param name="factoryName">The test runner factory name</param>
10981 <returns>The test runner</returns>
10982 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="factoryName" /> is null</exception>
10983 </member>
10984 <member name="M:Gallio.Runner.TestRunnerUtils.ShowReportDocument(System.String)">
10985 <summary>Presents a generated report to the user using the default viewing application for the report's document type.</summary>
10986 <param name="reportDocumentPath">The path of the report</param>
10987 </member>
10988 <member name="T:Gallio.Runner.ITestRunner">
10989 <summary>
10990 <para> A test runner provides the basic functionality for loading, exploring and running tests. It abstracts away most concerns having to do with the execution of tests in isolated (possibly remote) domains. </para>
10991 <para> The basic usage pattern of a test runner is as follows: <list type="bullet"><item>As a precondition, ensure that the runtime environment has been initialized.</item><item>Create the test runner.</item><item>Add event handlers and register extensions. <seealso cref="P:Gallio.Runner.ITestRunner.Events" />, <seealso cref="M:Gallio.Runner.ITestRunner.RegisterExtension(Gallio.Runner.Extensions.ITestRunnerExtension)" /></item><item>Initialize the runner. <seealso cref="M:Gallio.Runner.ITestRunner.Initialize(Gallio.Runner.TestRunnerOptions,Gallio.Runtime.Logging.ILogger,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /></item><item>Load a test package. <seealso cref="M:Gallio.Runner.ITestRunner.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /></item><item>Explore the tests. <seealso cref="M:Gallio.Runner.ITestRunner.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /></item><item>Run the tests. Save or format the report contents as required using the reporting APIs. <seealso cref="M:Gallio.Runner.ITestRunner.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /></item><item>Unload the test package. <seealso cref="M:Gallio.Runner.ITestRunner.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /></item><item>Dispose the test runner. <seealso cref="M:Gallio.Runner.ITestRunner.Dispose(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /></item></list></para>
10992 <para> Once a test package is loaded, it may be re-explored and/or re-run as often as desired. The package may also be unloaded to release resources make way for a new package to be loaded at a later time without discarding the test runner itself. </para>
10993 </summary>
10994 </member>
10995 <member name="P:Gallio.Runner.ITestRunner.Events">
10996 <summary>Gets the event dispatcher for the test runner.</summary>
10997 </member>
10998 <member name="P:Gallio.Runner.ITestRunner.Report">
10999 <summary>Gets the most recent report contents. The report may be only partially populated depending on the current state of the test runner. When no test package has been loaded, the report will be empty but not null.</summary>
11000 </member>
11001 <member name="M:Gallio.Runner.ITestRunner.Dispose(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11002 <summary>Disposes the test runner. Does nothing if already disposed or if not initialized.</summary>
11003 <param name="progressMonitor">The progress monitor</param>
11004 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
11005 </member>
11006 <member name="M:Gallio.Runner.ITestRunner.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11007 <summary>
11008 <para> Explores tests within the currently loaded test package. </para>
11009 <para> When this operation completes, the <see cref="P:Gallio.Runner.Reports.Report.TestModel" /> property of <see cref="P:Gallio.Runner.ITestRunner.Report" /> will contain information about the test package. </para>
11010 </summary>
11011 <param name="options">The test exploration options</param>
11012 <param name="progressMonitor">The progress monitor</param>
11013 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options" /> or <paramref name="progressMonitor" /> is null</exception>
11014 <exception cref="T:System.InvalidOperationException">Thrown if no package is currently loaded</exception>
11015 <exception cref="T:Gallio.Runner.RunnerException">Thrown if the operation failed</exception>
11016 <exception cref="T:System.ObjectDisposedException">Thrown if the runner has been disposed</exception>
11017 </member>
11018 <member name="M:Gallio.Runner.ITestRunner.Initialize(Gallio.Runner.TestRunnerOptions,Gallio.Runtime.Logging.ILogger,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11019 <summary>Initializes the test runner.</summary>
11020 <param name="options">The test runner options</param>
11021 <param name="logger">The logger</param>
11022 <param name="progressMonitor">The progress monitor</param>
11023 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options" />, <paramref name="logger" /> or <paramref name="progressMonitor" /> is null</exception>
11024 <exception cref="T:System.InvalidOperationException">Thrown if the runner is already initialized</exception>
11025 <exception cref="T:System.ObjectDisposedException">Thrown if the runner has been disposed</exception>
11026 </member>
11027 <member name="M:Gallio.Runner.ITestRunner.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11028 <summary>
11029 <para> Loads a test package. </para>
11030 <para> When this operation completes, the <see cref="P:Gallio.Runner.Reports.Report.TestPackageConfig" /> property of <see cref="P:Gallio.Runner.ITestRunner.Report" /> will contain information about the test package. </para>
11031 </summary>
11032 <param name="testPackageConfig">The test package configuration</param>
11033 <param name="progressMonitor">The progress monitor</param>
11034 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> or <paramref name="testPackageConfig" /> is null</exception>
11035 <exception cref="T:System.InvalidOperationException">Thrown if a package is already loaded</exception>
11036 <exception cref="T:Gallio.Runner.RunnerException">Thrown if the operation failed</exception>
11037 <exception cref="T:System.ObjectDisposedException">Thrown if the runner has been disposed</exception>
11038 </member>
11039 <member name="M:Gallio.Runner.ITestRunner.RegisterExtension(Gallio.Runner.Extensions.ITestRunnerExtension)">
11040 <summary>Registers a test runner extension.</summary>
11041 <param name="extension">The test runner extension to register</param>
11042 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="extension" /> is null</exception>
11043 <exception cref="T:System.InvalidOperationException">Thrown if the test runner has already been initialized</exception>
11044 </member>
11045 <member name="M:Gallio.Runner.ITestRunner.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11046 <summary>
11047 <para> Runs the tests. </para>
11048 <para> When this operation completes, the <see cref="P:Gallio.Runner.Reports.Report.TestPackageRun" /> property of <see cref="P:Gallio.Runner.ITestRunner.Report" /> will contain test results. </para>
11049 </summary>
11050 <param name="options">The test execution options</param>
11051 <param name="progressMonitor">The progress monitor</param>
11052 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
11053 <exception cref="T:System.InvalidOperationException">Thrown if no package is currently loaded or if test exploration has not taken place</exception>
11054 <exception cref="T:Gallio.Runner.RunnerException">Thrown if the operation failed</exception>
11055 <exception cref="T:System.ObjectDisposedException">Thrown if the runner has been disposed</exception>
11056 </member>
11057 <member name="M:Gallio.Runner.ITestRunner.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11058 <summary>
11059 <para> Unloads the current test package. Does nothing if none is currently loaded. </para>
11060 <para> When this operation completes, the <see cref="P:Gallio.Runner.ITestRunner.Report" /> will be empty once again. </para>
11061 </summary>
11062 <param name="progressMonitor">The progress monitor</param>
11063 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
11064 <exception cref="T:Gallio.Runner.RunnerException">Thrown if the operation failed</exception>
11065 <exception cref="T:System.ObjectDisposedException">Thrown if the runner has been disposed</exception>
11066 </member>
11067 <member name="T:Gallio.Runner.ITestRunnerFactory">
11068 <summary>A test tunner factory is a service that creates an <see cref="T:Gallio.Runner.ITestRunner" /> given a set of options. Each factory has a name which is used by <see cref="T:Gallio.Runner.ITestRunnerManager" /> to select the particular factory to use for a given test run.</summary>
11069 </member>
11070 <member name="M:Gallio.Runner.ITestRunnerFactory.CreateTestRunner">
11071 <summary>Creates a test runner.</summary>
11072 <returns>The test runner</returns>
11073 </member>
11074 <member name="T:Gallio.Runner.ITestRunnerManager">
11075 <summary>A test runner manager enumerates the names of the <see cref="T:Gallio.Runner.ITestRunnerFactory" /> services that are available and provides a mechanism for creating <see cref="T:Gallio.Runner.ITestRunner" /> instances.</summary>
11076 </member>
11077 <member name="P:Gallio.Runner.ITestRunnerManager.FactoryResolver">
11078 <summary>Gets a resolver for resolving registered <see cref="T:Gallio.Runner.ITestRunnerFactory" /> components by name.</summary>
11079 </member>
11080 <member name="M:Gallio.Runner.ITestRunnerManager.CreateTestRunner(System.String)">
11081 <summary>Creates a test runner.</summary>
11082 <param name="factoryName">The name of the test runner factory, matched case-insensitively</param>
11083 <returns>The test runner</returns>
11084 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="factoryName" /> is null</exception>
11085 </member>
11086 <member name="T:Gallio.Runner.Caching.DiskCacheException">
11087 <summary>The type of exception thrown when an error occurs while manipulating the disk cache.</summary>
11088 </member>
11089 <member name="T:Gallio.Runner.Caching.SimpleDiskCache">
11090 <summary>A simple disk cache that stores its contents in a particular directory using hashes of the key values to ensure uniqueness.</summary>
11091 </member>
11092 <member name="P:Gallio.Runner.Caching.SimpleDiskCache.CacheDirectoryPath">
11093 <summary>Gets the path of the cache directory.</summary>
11094 </member>
11095 <member name="P:Gallio.Runner.Caching.SimpleDiskCache.Groups">
11096 <summary>Gets the collection of disk cache groups.</summary>
11097 </member>
11098 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.GetGroup(System.String)">
11099 <summary>Gets the group with the given key.</summary>
11100 <param name="key">The key, nor null</param>
11101 <returns>The cache group</returns>
11102 </member>
11103 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Purge">
11104 <summary>Deletes all items in the cache.</summary>
11105 </member>
11106 <member name="T:Gallio.Runner.Caching.SimpleDiskCache.Group">
11107 <summary>Represents a disk cache group.</summary>
11108 </member>
11109 <member name="P:Gallio.Runner.Caching.SimpleDiskCache.Group.Cache">
11110 <summary>Gets the disk cache that contains the group.</summary>
11111 </member>
11112 <member name="P:Gallio.Runner.Caching.SimpleDiskCache.Group.Exists">
11113 <summary>Returns true if the group exists on disk.</summary>
11114 </member>
11115 <member name="P:Gallio.Runner.Caching.SimpleDiskCache.Group.Key">
11116 <summary>Gets the key of the group.</summary>
11117 </member>
11118 <member name="P:Gallio.Runner.Caching.SimpleDiskCache.Group.Location">
11119 <summary>Gets the <see cref="T:System.IO.DirectoryInfo" /> that represents the physical storage location of the disk cache group in the filesystem.</summary>
11120 </member>
11121 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Group.Create">
11122 <summary>Creates the group if it does not exist.</summary>
11123 </member>
11124 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Group.CreateSubdirectory(System.String)">
11125 <summary>Creates a directory within the group.</summary>
11126 <param name="relativeDirectoryPath">The relative path of the directory to create within the group</param>
11127 <returns>Directory information for the directory that was created</returns>
11128 </member>
11129 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Group.Delete">
11130 <summary>Deletes the group and all of its contents if any.</summary>
11131 </member>
11132 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Group.GetFileInfo(System.String)">
11133 <summary>Gets information about a file within the group.</summary>
11134 <param name="relativeFilePath">The relative path of the file within the group</param>
11135 <returns>The file info</returns>
11136 </member>
11137 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Group.GetSubdirectoryInfo(System.String)">
11138 <summary>Gets information about a directory within the group.</summary>
11139 <param name="relativeDirectoryPath">The relative path of the directory within the group</param>
11140 <returns>The directory info</returns>
11141 </member>
11142 <member name="M:Gallio.Runner.Caching.SimpleDiskCache.Group.OpenFile(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
11143 <summary>
11144 <para> Opens a file within the group. </para>
11145 <para> If a new file is being created, automatically create the group and the containing directory for the file. </para>
11146 </summary>
11147 <param name="relativeFilePath">The relative path of the file to open within the group</param>
11148 <param name="mode">The file open mode</param>
11149 <param name="access">The file access mode</param>
11150 <param name="share">The file sharing mode</param>
11151 <returns>The file stream</returns>
11152 </member>
11153 <member name="T:Gallio.Runner.Caching.TemporaryDiskCache">
11154 <summary>A disk cache that stores its contents in the user's temporary directory.</summary>
11155 </member>
11156 <member name="F:Gallio.Runner.Caching.TemporaryDiskCache.DefaultCacheDirectoryName">
11157 <summary>The default cache directory name. This field is read-only.</summary>
11158 </member>
11159 <member name="T:Gallio.Runner.Caching.IDiskCache">
11160 <summary>A disk cache manages temporary files and directories stored on disk and arranged into groups associated with arbitrary string keys. The files and directories within each group are assumed to have the same lifetime.</summary>
11161 </member>
11162 <member name="P:Gallio.Runner.Caching.IDiskCache.Groups">
11163 <summary>Gets the collection of disk cache groups.</summary>
11164 </member>
11165 <member name="M:Gallio.Runner.Caching.IDiskCache.Purge">
11166 <summary>Deletes all items in the cache.</summary>
11167 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11168 </member>
11169 <member name="T:Gallio.Runner.Caching.IDiskCacheGroup">
11170 <summary>A disk cache group represents an indexed partition of the disk cache. It is physically manifested as a directory on disk and may contain any number of related files or directories with the same lifetime.</summary>
11171 </member>
11172 <member name="P:Gallio.Runner.Caching.IDiskCacheGroup.Cache">
11173 <summary>Gets the disk cache that contains the group.</summary>
11174 </member>
11175 <member name="P:Gallio.Runner.Caching.IDiskCacheGroup.Exists">
11176 <summary>Returns true if the group exists on disk.</summary>
11177 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11178 </member>
11179 <member name="P:Gallio.Runner.Caching.IDiskCacheGroup.Key">
11180 <summary>Gets the key of the group.</summary>
11181 </member>
11182 <member name="P:Gallio.Runner.Caching.IDiskCacheGroup.Location">
11183 <summary>Gets the <see cref="T:System.IO.DirectoryInfo" /> that represents the physical storage location of the disk cache group in the filesystem.</summary>
11184 </member>
11185 <member name="M:Gallio.Runner.Caching.IDiskCacheGroup.Create">
11186 <summary>Creates the group if it does not exist.</summary>
11187 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11188 </member>
11189 <member name="M:Gallio.Runner.Caching.IDiskCacheGroup.CreateSubdirectory(System.String)">
11190 <summary>Creates a directory within the group.</summary>
11191 <param name="relativeDirectoryPath">The relative path of the directory to create within the group</param>
11192 <returns>Directory information for the directory that was created</returns>
11193 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="relativeDirectoryPath" /> is null</exception>
11194 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11195 </member>
11196 <member name="M:Gallio.Runner.Caching.IDiskCacheGroup.Delete">
11197 <summary>Deletes the group and all of its contents if any.</summary>
11198 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11199 </member>
11200 <member name="M:Gallio.Runner.Caching.IDiskCacheGroup.GetFileInfo(System.String)">
11201 <summary>Gets information about a file within the group.</summary>
11202 <param name="relativeFilePath">The relative path of the file within the group</param>
11203 <returns>The file info</returns>
11204 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="relativeFilePath" /> is null</exception>
11205 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11206 </member>
11207 <member name="M:Gallio.Runner.Caching.IDiskCacheGroup.GetSubdirectoryInfo(System.String)">
11208 <summary>Gets information about a directory within the group.</summary>
11209 <param name="relativeDirectoryPath">The relative path of the directory within the group</param>
11210 <returns>The directory info</returns>
11211 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="relativeDirectoryPath" /> is null</exception>
11212 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11213 </member>
11214 <member name="M:Gallio.Runner.Caching.IDiskCacheGroup.OpenFile(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
11215 <summary>
11216 <para> Opens a file within the group. </para>
11217 <para> If a new file is being created, automatically create the group and the containing directory for the file. </para>
11218 </summary>
11219 <param name="relativeFilePath">The relative path of the file to open within the group</param>
11220 <param name="mode">The file open mode</param>
11221 <param name="access">The file access mode</param>
11222 <param name="share">The file sharing mode</param>
11223 <returns>The file stream</returns>
11224 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="relativeFilePath" /> is null</exception>
11225 <exception cref="T:Gallio.Runner.Caching.DiskCacheException">Thrown if an error occurs.</exception>
11226 </member>
11227 <member name="T:Gallio.Runner.Caching.IDiskCacheGroupCollection">
11228 <summary>Represents a collection of groups in a disk cache indexed by an aritrary key string.</summary>
11229 </member>
11230 <member name="P:Gallio.Runner.Caching.IDiskCacheGroupCollection.Item(System.String)">
11231 <summary>Gets the group with the specified key.</summary>
11232 <param name="key">The key</param>
11233 <value>The group</value>
11234 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="key" /> is null</exception>
11235 </member>
11236 <member name="T:Gallio.Runner.Drivers.AggregateTestDriver">
11237 <summary>An aggregate test driver partitions the work of running tests among multiple test drivers. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
11238 </member>
11239 <member name="M:Gallio.Runner.Drivers.AggregateTestDriver.CreatePartitions(Gallio.Model.TestPackageConfig)">
11240 <summary>Creates the partitions of the aggregate test driver.</summary>
11241 <param name="testPackageConfig">The test package configuration, not null</param>
11242 <returns>The partitions</returns>
11243 </member>
11244 <member name="M:Gallio.Runner.Drivers.AggregateTestDriver.Dispose(System.Boolean)">
11245 <summary>Disposes the test driver.</summary>
11246 <param name="disposing">True if <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Dispose" /> was called</param>
11247 </member>
11248 <member name="M:Gallio.Runner.Drivers.AggregateTestDriver.ExploreImpl(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11249 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11250 </member>
11251 <member name="M:Gallio.Runner.Drivers.AggregateTestDriver.LoadImpl(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11252 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11253 </member>
11254 <member name="M:Gallio.Runner.Drivers.AggregateTestDriver.RunImpl(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11255 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11256 </member>
11257 <member name="M:Gallio.Runner.Drivers.AggregateTestDriver.UnloadImpl(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11258 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11259 </member>
11260 <member name="T:Gallio.Runner.Drivers.BaseTestDriver">
11261 <summary>Base implementation of a test driver. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
11262 </member>
11263 <member name="P:Gallio.Runner.Drivers.BaseTestDriver.Logger">
11264 <summary>Gets the logger, or null if not initialized.</summary>
11265 </member>
11266 <member name="P:Gallio.Runner.Drivers.BaseTestDriver.RuntimeSetup">
11267 <summary>Gets the runtime setup, or null if not initialized.</summary>
11268 </member>
11269 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Dispose">
11270 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
11271 </member>
11272 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Dispose(System.Boolean)">
11273 <summary>Disposes the test driver.</summary>
11274 <param name="disposing">True if <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Dispose" /> was called</param>
11275 </member>
11276 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11277 <summary>Explores the tests.</summary>
11278 <param name="options">The test exploration options</param>
11279 <param name="progressMonitor">The progress monitor</param>
11280 <returns>The test model data</returns>
11281 </member>
11282 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.ExploreImpl(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11283 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11284 </member>
11285 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Initialize(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)">
11286 <summary>Initializes the test driver.</summary>
11287 <param name="runtimeSetup">The runtime setup</param>
11288 <param name="logger">The logger</param>
11289 </member>
11290 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.InitializeImpl(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)">
11291 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Initialize(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)" />. Called after argument validation takes place.</summary>
11292 </member>
11293 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11294 <summary>Loads a test package.</summary>
11295 <param name="testPackageConfig">The test package configuration</param>
11296 <param name="progressMonitor">The progress monitor</param>
11297 </member>
11298 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.LoadImpl(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11299 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11300 </member>
11301 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11302 <summary>Runs the tests.</summary>
11303 <param name="options">The test execution options</param>
11304 <param name="listener">The test listener</param>
11305 <param name="progressMonitor">The progress monitor</param>
11306 </member>
11307 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.RunImpl(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11308 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11309 </member>
11310 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11311 <summary>Unloads the tests.</summary>
11312 <param name="progressMonitor">The progress monitor</param>
11313 </member>
11314 <member name="M:Gallio.Runner.Drivers.BaseTestDriver.UnloadImpl(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11315 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11316 </member>
11317 <member name="T:Gallio.Runner.Drivers.LocalTestDriver">
11318 <summary>A simple test driver implementation that runs tests locally within the current domain without any additional consultation of the test frameworks.</summary>
11319 </member>
11320 <member name="M:Gallio.Runner.Drivers.LocalTestDriver.ExploreImpl(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11321 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11322 </member>
11323 <member name="M:Gallio.Runner.Drivers.LocalTestDriver.InitializeImpl(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)">
11324 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Initialize(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)" />. Called after argument validation takes place.</summary>
11325 </member>
11326 <member name="M:Gallio.Runner.Drivers.LocalTestDriver.LoadImpl(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11327 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11328 </member>
11329 <member name="M:Gallio.Runner.Drivers.LocalTestDriver.RunImpl(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11330 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11331 </member>
11332 <member name="M:Gallio.Runner.Drivers.LocalTestDriver.UnloadImpl(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11333 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11334 </member>
11335 <member name="T:Gallio.Runner.Drivers.MultiDomainTestDriver">
11336 <summary>A test driver that configures one test domain per test assembly.</summary>
11337 </member>
11338 <member name="M:Gallio.Runner.Drivers.MultiDomainTestDriver.CreatePartitions(Gallio.Model.TestPackageConfig)">
11339 <summary>Creates the partitions of the aggregate test driver.</summary>
11340 <param name="testPackageConfig">The test package configuration, not null</param>
11341 <returns>The partitions</returns>
11342 </member>
11343 <member name="M:Gallio.Runner.Drivers.MultiDomainTestDriver.Dispose(System.Boolean)">
11344 <summary>Disposes the test driver.</summary>
11345 <param name="disposing">True if <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Dispose" /> was called</param>
11346 </member>
11347 <member name="T:Gallio.Runner.Drivers.ProxyTestDriver">
11348 <summary>A proxy for a remote test driver. Wraps a test driver and forwards all messages to it.</summary>
11349 </member>
11350 <member name="M:Gallio.Runner.Drivers.ProxyTestDriver.Dispose(System.Boolean)">
11351 <summary>Disposes the test driver.</summary>
11352 <param name="disposing">True if <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Dispose" /> was called</param>
11353 </member>
11354 <member name="M:Gallio.Runner.Drivers.ProxyTestDriver.ExploreImpl(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11355 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11356 </member>
11357 <member name="M:Gallio.Runner.Drivers.ProxyTestDriver.InitializeImpl(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)">
11358 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Initialize(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)" />. Called after argument validation takes place.</summary>
11359 </member>
11360 <member name="M:Gallio.Runner.Drivers.ProxyTestDriver.LoadImpl(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11361 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11362 </member>
11363 <member name="M:Gallio.Runner.Drivers.ProxyTestDriver.RunImpl(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11364 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11365 </member>
11366 <member name="M:Gallio.Runner.Drivers.ProxyTestDriver.UnloadImpl(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11367 <summary>Internal implementation of <see cref="M:Gallio.Runner.Drivers.BaseTestDriver.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />. Called after argument validation takes place.</summary>
11368 </member>
11369 <member name="E:Gallio.Runner.Drivers.ProxyTestDriver.Disposed">
11370 <summary>An event that is fired when the test driver is disposed.</summary>
11371 </member>
11372 <member name="T:Gallio.Runner.Drivers.AggregateTestDriver.Partition">
11373 <summary>Provides information about a partition of the aggregate test driver. Each partition specifies a test driver and a test package configuration that covers a portion of the total test package.</summary>
11374 </member>
11375 <member name="P:Gallio.Runner.Drivers.AggregateTestDriver.Partition.TestDriver">
11376 <summary>Gets the test driver.</summary>
11377 </member>
11378 <member name="P:Gallio.Runner.Drivers.AggregateTestDriver.Partition.TestPackageConfig">
11379 <summary>Gets the test package configuration for the driver.</summary>
11380 </member>
11381 <member name="T:Gallio.Runner.Drivers.ITestDriver">
11382 <summary>A test driver controls how tests are loaded, explored, and run.</summary>
11383 </member>
11384 <member name="M:Gallio.Runner.Drivers.ITestDriver.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11385 <summary>Explores the tests.</summary>
11386 <param name="options">The test exploration options</param>
11387 <param name="progressMonitor">The progress monitor</param>
11388 <returns>The test model data</returns>
11389 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options" /> or <paramref name="progressMonitor" /> is null</exception>
11390 </member>
11391 <member name="M:Gallio.Runner.Drivers.ITestDriver.Initialize(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)">
11392 <summary>Initializes the test driver.</summary>
11393 <param name="runtimeSetup">The runtime setup</param>
11394 <param name="logger">The logger</param>
11395 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="runtimeSetup" /> or <paramref name="logger" /> is null</exception>
11396 </member>
11397 <member name="M:Gallio.Runner.Drivers.ITestDriver.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11398 <summary>Loads a test package.</summary>
11399 <param name="testPackageConfig">The test package configuration</param>
11400 <param name="progressMonitor">The progress monitor</param>
11401 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testPackageConfig" /> or <paramref name="progressMonitor" /> is null</exception>
11402 </member>
11403 <member name="M:Gallio.Runner.Drivers.ITestDriver.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11404 <summary>Runs the tests.</summary>
11405 <param name="options">The test execution options</param>
11406 <param name="listener">The test listener</param>
11407 <param name="progressMonitor">The progress monitor</param>
11408 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options" />, <paramref name="listener" /> or <paramref name="progressMonitor" /> is null</exception>
11409 </member>
11410 <member name="M:Gallio.Runner.Drivers.ITestDriver.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11411 <summary>Unloads the tests.</summary>
11412 <param name="progressMonitor">The progress monitor</param>
11413 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
11414 </member>
11415 <member name="T:Gallio.Runner.Events.DisposeFinishedEventArgs">
11416 <summary>Arguments for an event raised to indicate that the test runner disposal has finished. This class cannot be inherited.</summary>
11417 </member>
11418 <member name="T:Gallio.Runner.Events.DisposeStartedEventArgs">
11419 <summary>Arguments for an event raised to indicate that the test runner disposal has started. This class cannot be inherited.</summary>
11420 </member>
11421 <member name="T:Gallio.Runner.Events.ExploreFinishedEventArgs">
11422 <summary>Arguments for an event raised to indicate that test exploration has finished. This class cannot be inherited.</summary>
11423 </member>
11424 <member name="P:Gallio.Runner.Events.ExploreFinishedEventArgs.Report">
11425 <summary>Gets the report, including test model data on success.</summary>
11426 </member>
11427 <member name="T:Gallio.Runner.Events.ExploreStartedEventArgs">
11428 <summary>Arguments for an event raised to indicate that test exploration has started. This class cannot be inherited.</summary>
11429 </member>
11430 <member name="P:Gallio.Runner.Events.ExploreStartedEventArgs.TestExplorationOptions">
11431 <summary>Gets the test exploration options.</summary>
11432 </member>
11433 <member name="T:Gallio.Runner.Events.InitializeFinishedEventArgs">
11434 <summary>Arguments for an event raised to indicate that the test runner initialization has finished. This class cannot be inherited.</summary>
11435 </member>
11436 <member name="T:Gallio.Runner.Events.InitializeStartedEventArgs">
11437 <summary>Arguments for an event raised to indicate that the test runner initialization has started. This class cannot be inherited.</summary>
11438 </member>
11439 <member name="P:Gallio.Runner.Events.InitializeStartedEventArgs.Options">
11440 <summary>Gets the test runner options.</summary>
11441 </member>
11442 <member name="T:Gallio.Runner.Events.LoadFinishedEventArgs">
11443 <summary>Arguments for an event raised to indicate that a test package has finished loading. This class cannot be inherited.</summary>
11444 </member>
11445 <member name="P:Gallio.Runner.Events.LoadFinishedEventArgs.Report">
11446 <summary>Gets the report, including test package data on success.</summary>
11447 </member>
11448 <member name="T:Gallio.Runner.Events.LoadStartedEventArgs">
11449 <summary>Arguments for an event raised to indicate that a test package is being loaded. This class cannot be inherited.</summary>
11450 </member>
11451 <member name="P:Gallio.Runner.Events.LoadStartedEventArgs.TestPackageConfig">
11452 <summary>Gets the test package configuration being loaded.</summary>
11453 </member>
11454 <member name="T:Gallio.Runner.Events.RunFinishedEventArgs">
11455 <summary>Arguments for an event raised to indicate that test execution has finished. This class cannot be inherited.</summary>
11456 </member>
11457 <member name="P:Gallio.Runner.Events.RunFinishedEventArgs.Report">
11458 <summary>Gets the report, including test package run data on success.</summary>
11459 </member>
11460 <member name="T:Gallio.Runner.Events.RunStartedEventArgs">
11461 <summary>Arguments for an event raised to indicate that test execution has started. This class cannot be inherited.</summary>
11462 </member>
11463 <member name="P:Gallio.Runner.Events.RunStartedEventArgs.TestExecutionOptions">
11464 <summary>Gets the test execution options.</summary>
11465 </member>
11466 <member name="T:Gallio.Runner.Events.TestStepEventArgs">
11467 <summary>Base arguments for an event raised to provide information about a test step. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
11468 </member>
11469 <member name="P:Gallio.Runner.Events.TestStepEventArgs.Report">
11470 <summary>Gets the report.</summary>
11471 </member>
11472 <member name="P:Gallio.Runner.Events.TestStepEventArgs.Test">
11473 <summary>Gets the test data of the test that contains the test step.</summary>
11474 </member>
11475 <member name="P:Gallio.Runner.Events.TestStepEventArgs.TestStepRun">
11476 <summary>Gets the test step run.</summary>
11477 </member>
11478 <member name="M:Gallio.Runner.Events.TestStepEventArgs.GetStepKind">
11479 <summary>Gets the kind of step described using the <see cref="F:Gallio.Model.MetadataKeys.TestKind" /> metadata key.</summary>
11480 <returns>The step kind</returns>
11481 </member>
11482 <member name="T:Gallio.Runner.Events.TestStepFinishedEventArgs">
11483 <summary>Arguments for an event raised to indicate that a test step has finished execution. This class cannot be inherited.</summary>
11484 </member>
11485 <member name="T:Gallio.Runner.Events.TestStepLifecyclePhaseChangedEventArgs">
11486 <summary>Arguments for an event raised to indicate that a test step has entered a new lifecycle phase. This class cannot be inherited.</summary>
11487 </member>
11488 <member name="P:Gallio.Runner.Events.TestStepLifecyclePhaseChangedEventArgs.LifecyclePhase">
11489 <summary>Gets the lifecycle phase name.</summary>
11490 </member>
11491 <member name="T:Gallio.Runner.Events.TestStepLogAttachmentAddedEventArgs">
11492 <summary>Base arguments for an event raised to indicate that an attachment has been added to a test step log. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
11493 </member>
11494 <member name="P:Gallio.Runner.Events.TestStepLogAttachmentAddedEventArgs.AttachmentName">
11495 <summary>Gets the attachment name.</summary>
11496 </member>
11497 <member name="P:Gallio.Runner.Events.TestStepLogAttachmentAddedEventArgs.ContentType">
11498 <summary>Gets the attachment content type.</summary>
11499 </member>
11500 <member name="T:Gallio.Runner.Events.TestStepLogBinaryAttachmentAddedEventArgs">
11501 <summary>Arguments for an event raised to indicate that a binary attachment has been added to a test step log. This class cannot be inherited.</summary>
11502 </member>
11503 <member name="P:Gallio.Runner.Events.TestStepLogBinaryAttachmentAddedEventArgs.Bytes">
11504 <summary>Gets the attached bytes.</summary>
11505 </member>
11506 <member name="T:Gallio.Runner.Events.TestStepLogStreamAttachmentEmbeddedEventArgs">
11507 <summary>Arguments for an event raised to indicate that an attachment has been embedded into a test step log stream. This class cannot be inherited.</summary>
11508 </member>
11509 <member name="P:Gallio.Runner.Events.TestStepLogStreamAttachmentEmbeddedEventArgs.AttachmentName">
11510 <summary>Gets the name of the attachment that was embedded.</summary>
11511 </member>
11512 <member name="T:Gallio.Runner.Events.TestStepLogStreamEventArgs">
11513 <summary>Base arguments for an event raised to indicate that a test step log stream has been modified in some way. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
11514 </member>
11515 <member name="P:Gallio.Runner.Events.TestStepLogStreamEventArgs.LogStreamName">
11516 <summary>Gets the log stream name.</summary>
11517 </member>
11518 <member name="T:Gallio.Runner.Events.TestStepLogStreamSectionFinishedEventArgs">
11519 <summary>Arguments for an event raised to indicate that a section has been finished within a test step log stream. This class cannot be inherited.</summary>
11520 </member>
11521 <member name="T:Gallio.Runner.Events.TestStepLogStreamSectionStartedEventArgs">
11522 <summary>Arguments for an event raised to indicate that a section has been started within a test step log stream. This class cannot be inherited.</summary>
11523 </member>
11524 <member name="P:Gallio.Runner.Events.TestStepLogStreamSectionStartedEventArgs.SectionName">
11525 <summary>Gets the name of the section that was started.</summary>
11526 </member>
11527 <member name="T:Gallio.Runner.Events.TestStepLogStreamTextWrittenEventArgs">
11528 <summary>Arguments for an event raised to indicate that text has been written to a test step log stream. This class cannot be inherited.</summary>
11529 </member>
11530 <member name="P:Gallio.Runner.Events.TestStepLogStreamTextWrittenEventArgs.Text">
11531 <summary>Gets the text that was written.</summary>
11532 </member>
11533 <member name="T:Gallio.Runner.Events.TestStepLogTextAttachmentAddedEventArgs">
11534 <summary>Arguments for an event raised to indicate that a text attachment has been added to a test step log. This class cannot be inherited.</summary>
11535 </member>
11536 <member name="P:Gallio.Runner.Events.TestStepLogTextAttachmentAddedEventArgs.Text">
11537 <summary>Gets the attached text.</summary>
11538 </member>
11539 <member name="T:Gallio.Runner.Events.TestStepMetadataAddedEventArgs">
11540 <summary>Arguments for an event raised to indicate that a test step dynamically added metadata to itself. This class cannot be inherited.</summary>
11541 </member>
11542 <member name="P:Gallio.Runner.Events.TestStepMetadataAddedEventArgs.MetadataKey">
11543 <summary>Gets the metadata key.</summary>
11544 </member>
11545 <member name="P:Gallio.Runner.Events.TestStepMetadataAddedEventArgs.MetadataValue">
11546 <summary>Gets the metadata value.</summary>
11547 </member>
11548 <member name="T:Gallio.Runner.Events.TestStepStartedEventArgs">
11549 <summary>Arguments for an event raised to indicate that a test step has started execution. This class cannot be inherited.</summary>
11550 </member>
11551 <member name="T:Gallio.Runner.Events.UnloadFinishedEventArgs">
11552 <summary>Arguments for an event raised to indicate that a test package has finished unloading. This class cannot be inherited.</summary>
11553 </member>
11554 <member name="T:Gallio.Runner.Events.UnloadStartedEventArgs">
11555 <summary>Arguments for an event raised to indicate that a test package is being unloaded. This class cannot be inherited.</summary>
11556 </member>
11557 <member name="T:Gallio.Runner.Events.ITestRunnerEvents">
11558 <summary>Declares all of the events that may be raised by a <see cref="T:Gallio.Runner.ITestRunner" />.</summary>
11559 </member>
11560 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.DisposeFinished">
11561 <summary>The event raised to indicate that the test runner disposal has finished.</summary>
11562 </member>
11563 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.DisposeStarted">
11564 <summary>The event raised to indicate that the test runner disposal has started.</summary>
11565 </member>
11566 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.ExploreFinished">
11567 <summary>The event raised to indicate that test exploration has finished.</summary>
11568 </member>
11569 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.ExploreStarted">
11570 <summary>The event raised to indicate that test exploration has started.</summary>
11571 </member>
11572 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.InitializeFinished">
11573 <summary>The event raised to indicate that the test runner initialization has finished.</summary>
11574 </member>
11575 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.InitializeStarted">
11576 <summary>The event raised to indicate that the test runner initialization has started.</summary>
11577 </member>
11578 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.LoadFinished">
11579 <summary>The event raised to indicate that a test package has finished loading.</summary>
11580 </member>
11581 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.LoadStarted">
11582 <summary>The event raised to indicate that a test package is being loaded.</summary>
11583 </member>
11584 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.RunFinished">
11585 <summary>The event raised to indicate that test execution has finished.</summary>
11586 </member>
11587 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.RunStarted">
11588 <summary>The event raised to indicate that test execution has started.</summary>
11589 </member>
11590 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepFinished">
11591 <summary>The event raised to indicate that a test step has finished execution.</summary>
11592 </member>
11593 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLifecyclePhaseChanged">
11594 <summary>The event raised to indicate that a test step has entered a new lifecycle phase.</summary>
11595 </member>
11596 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLogBinaryAttachmentAdded">
11597 <summary>The event raised to indicate that a binary attachment has been added to a test step log.</summary>
11598 </member>
11599 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLogStreamAttachmentEmbedded">
11600 <summary>The event raised to indicate that an attachment has been embedded into a test step log stream.</summary>
11601 </member>
11602 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLogStreamSectionFinished">
11603 <summary>The event raised to indicate that a section has finished within a test step log stream.</summary>
11604 </member>
11605 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLogStreamSectionStarted">
11606 <summary>The event raised to indicate that a section has been started within a test step log stream.</summary>
11607 </member>
11608 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLogStreamTextWritten">
11609 <summary>The event raised to indicate that text has been written to a test step log stream.</summary>
11610 </member>
11611 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepLogTextAttachmentAdded">
11612 <summary>The event raised to indicate that a text attachment has been added to a test step log.</summary>
11613 </member>
11614 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepMetadataAdded">
11615 <summary>The event raised to indicate that a test step dynamically added metadata to itself.</summary>
11616 </member>
11617 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.TestStepStarted">
11618 <summary>The event raised to indicate that a test step has started execution.</summary>
11619 </member>
11620 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.UnloadFinished">
11621 <summary>The event raised to indicate that a test package has finished unloading.</summary>
11622 </member>
11623 <member name="E:Gallio.Runner.Events.ITestRunnerEvents.UnloadStarted">
11624 <summary>The event raised to indicate that a test package is being unloaded.</summary>
11625 </member>
11626 <member name="T:Gallio.Runner.Extensions.DebugExtension">
11627 <summary>Monitors <see cref="T:Gallio.Runner.ITestRunner" /> events and writes debug messages to the runner's logger.</summary>
11628 </member>
11629 <member name="M:Gallio.Runner.Extensions.DebugExtension.Initialize">
11630 <summary>Initializes the extension as part of extension installation.</summary>
11631 </member>
11632 <member name="T:Gallio.Runner.Extensions.LogExtension">
11633 <summary>
11634 <para> The log extension writes a summary of test execution progress to the test runner's logger so the user can monitor what's going on. </para> Passing tests are recorded with severity <see cref="F:Gallio.Runtime.Logging.LogSeverity.Info" />, warnings are recorded with severity <see cref="F:Gallio.Runtime.Logging.LogSeverity.Warning" /> and failures are recorded with severity <see cref="F:Gallio.Runtime.Logging.LogSeverity.Error" />.</summary>
11635 </member>
11636 <member name="M:Gallio.Runner.Extensions.LogExtension.Initialize">
11637 <summary>Initializes the extension as part of extension installation.</summary>
11638 </member>
11639 <member name="M:Gallio.Runner.Extensions.LogExtension.LogAnnotation(Gallio.Model.Serialization.AnnotationData)">
11640 <summary>Logs an annotation.</summary>
11641 <param name="annotation">The annotation to log</param>
11642 </member>
11643 <member name="M:Gallio.Runner.Extensions.LogExtension.LogTestStepFinished(Gallio.Runner.Events.TestStepFinishedEventArgs)">
11644 <summary>Logs a test step finished event.</summary>
11645 <param name="e">The event</param>
11646 </member>
11647 <member name="M:Gallio.Runner.Extensions.LogExtension.LogTestStepStarted(Gallio.Runner.Events.TestStepStartedEventArgs)">
11648 <summary>Logs a test step started event.</summary>
11649 <param name="e">The event</param>
11650 </member>
11651 <member name="T:Gallio.Runner.Extensions.TestRunnerExtension">
11652 <summary>Abstract implementation of a test runner extension. <seealso cref="T:Gallio.Runner.Extensions.ITestRunnerExtension" /> for more details. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
11653 </member>
11654 <member name="P:Gallio.Runner.Extensions.TestRunnerExtension.Events">
11655 <summary>Gets the test runner event extension point.</summary>
11656 </member>
11657 <member name="P:Gallio.Runner.Extensions.TestRunnerExtension.Logger">
11658 <summary>Gets the logger.</summary>
11659 </member>
11660 <member name="P:Gallio.Runner.Extensions.TestRunnerExtension.Parameters">
11661 <summary>Gets or sets configuration parameters for the extension.</summary>
11662 </member>
11663 <member name="M:Gallio.Runner.Extensions.TestRunnerExtension.Initialize">
11664 <summary>Initializes the extension as part of extension installation.</summary>
11665 </member>
11666 <member name="M:Gallio.Runner.Extensions.TestRunnerExtension.Install(Gallio.Runner.Events.ITestRunnerEvents,Gallio.Runtime.Logging.ILogger)">
11667 <summary>Installs the extension into a test runner.</summary>
11668 <param name="events">The test runner events, not null</param>
11669 <param name="logger">The logger, not null</param>
11670 </member>
11671 <member name="T:Gallio.Runner.Extensions.TestRunnerExtensionUtils">
11672 <summary>Provides utilities for manipulating test runner extensions. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
11673 </member>
11674 <member name="M:Gallio.Runner.Extensions.TestRunnerExtensionUtils.CreateExtensionFromSpecification(System.String)">
11675 <summary>
11676 <para> Creates an extension from its specification. </para>
11677 <para> An extension specification has the form "[Namespace.]Type,Assembly[;Parameters]". The extension class must implement <see cref="T:Gallio.Runner.Extensions.ITestRunnerExtension" />. The namespace may be omitted if the assembly contains exactly one class with the specified name. The parameter string is passed to the extension exactly as written. </para>
11678 <para> Examples: <list type="bullet"><item>"MyExtensions.MyExtension,MyExtensions.dll;Parameter1,Parameter2"</item><item>"CustomLogger,MyExtensions"</item></list></para>
11679 </summary>
11680 <param name="extensionSpecification">The extension specification</param>
11681 <returns>The extension</returns>
11682 <exception cref="T:Gallio.Runner.RunnerException">Thrown if the extension cannot be instantiated and configured</exception>
11683 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="extensionSpecification" /> is null</exception>
11684 </member>
11685 <member name="T:Gallio.Runner.Extensions.ITestRunnerExtension">
11686 <summary>
11687 <para> A test runner extension plugs augments the behavior oa <see cref="T:Gallio.Runner.ITestRunner" /> by attaching new behaviors to its event handlers. </para>
11688 <para> Typical extension use-cases: <list type="bullet"><item>Custom logging by listening for events of interest and writing messages to a file or to another location.</item><item>Custom configuration of test package loading, test exploration and test execution options by listening for the starting events of the phase and modifying the options in place.</item></list></para>
11689 </summary>
11690 </member>
11691 <member name="P:Gallio.Runner.Extensions.ITestRunnerExtension.Parameters">
11692 <summary>Gets or sets configuration parameters for the extension.</summary>
11693 </member>
11694 <member name="M:Gallio.Runner.Extensions.ITestRunnerExtension.Install(Gallio.Runner.Events.ITestRunnerEvents,Gallio.Runtime.Logging.ILogger)">
11695 <summary>Installs the extension into a test runner.</summary>
11696 <param name="events">The test runner events, not null</param>
11697 <param name="logger">The logger, not null</param>
11698 </member>
11699 <member name="T:Gallio.Runner.Harness.ConsoleTestEnvironment">
11700 <summary>Sets up console I/O streams.</summary>
11701 </member>
11702 <member name="M:Gallio.Runner.Harness.ConsoleTestEnvironment.SetUp">
11703 <summary>Sets up the test environment.</summary>
11704 <returns>Returns an object that when disposed causes the test environment to be torn down</returns>
11705 </member>
11706 <member name="T:Gallio.Runner.Harness.ContextualLogTextWriter">
11707 <summary>A contextual log text writer messages to a named log stream in the log associated with the test execution context that is active at the time each message is written. This class cannot be inherited.</summary>
11708 </member>
11709 <member name="P:Gallio.Runner.Harness.ContextualLogTextWriter.Encoding">
11710 <summary>When overridden in a derived class, returns the <see cref="T:System.Text.Encoding" /> in which the output is written.</summary>
11711 <value>The Encoding in which the output is written.</value>
11712 </member>
11713 <member name="P:Gallio.Runner.Harness.ContextualLogTextWriter.NewLine">
11714 <summary>Gets or sets the line terminator string used by the current TextWriter.</summary>
11715 <value>The line terminator string for the current TextWriter.</value>
11716 </member>
11717 <member name="M:Gallio.Runner.Harness.ContextualLogTextWriter.Write(System.String)">
11718 <summary>Writes a string to the text stream.</summary>
11719 <param name="value">The string to write.</param>
11720 </member>
11721 <member name="M:Gallio.Runner.Harness.ContextualLogTextWriter.Write(System.Char)">
11722 <summary>Writes a character to the text stream.</summary>
11723 <param name="value">The character to write to the text stream.</param>
11724 </member>
11725 <member name="M:Gallio.Runner.Harness.ContextualLogTextWriter.Write(System.Char[],System.Int32,System.Int32)">
11726 <summary>Writes a subarray of characters to the text stream.</summary>
11727 <param name="buffer">The character array to write data from.</param>
11728 <param name="index">Starting index in the buffer.</param>
11729 <param name="count">The number of characters to write.</param>
11730 </member>
11731 <member name="T:Gallio.Runner.Harness.ContextualLogTraceListener">
11732 <summary>A contextual log trace listener messages to a named log stream in the log associated with the test execution context that is active at the time each message is written. This class cannot be inherited.</summary>
11733 </member>
11734 <member name="P:Gallio.Runner.Harness.ContextualLogTraceListener.IsThreadSafe">
11735 <summary>Gets a value indicating whether the trace listener is thread safe.</summary>
11736 <value>true if the trace listener is thread safe; otherwise, false. The default is false.</value>
11737 </member>
11738 <member name="M:Gallio.Runner.Harness.ContextualLogTraceListener.Write(System.String)">
11739 <summary>When overridden in a derived class, writes the specified message to the listener you create in the derived class.</summary>
11740 <param name="message">A message to write.</param>
11741 </member>
11742 <member name="M:Gallio.Runner.Harness.ContextualLogTraceListener.WriteLine(System.String)">
11743 <summary>When overridden in a derived class, writes a message to the listener you create in the derived class, followed by a line terminator.</summary>
11744 <param name="message">A message to write.</param>
11745 </member>
11746 <member name="T:Gallio.Runner.Harness.DefaultTestHarness">
11747 <summary>Default implementation of a test harness.</summary>
11748 </member>
11749 <member name="P:Gallio.Runner.Harness.DefaultTestHarness.TestModel">
11750 <summary>Gets the test model, or null if the test model has not been built.</summary>
11751 </member>
11752 <member name="P:Gallio.Runner.Harness.DefaultTestHarness.TestPackage">
11753 <summary>Gets the test package loaded in the test harness, or null if none.</summary>
11754 </member>
11755 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.AddTestEnvironment(Gallio.Runner.Harness.ITestEnvironment)">
11756 <summary>Adds a test environment.</summary>
11757 <param name="environment">The test framework to add</param>
11758 </member>
11759 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.AddTestFramework(Gallio.Model.ITestFramework)">
11760 <summary>Adds a test framework.</summary>
11761 <param name="framework">The test framework to add</param>
11762 </member>
11763 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.Dispose">
11764 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
11765 </member>
11766 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11767 <summary>Populates the test model.</summary>
11768 <param name="options">The test enumeration options</param>
11769 <param name="progressMonitor">The progress monitor</param>
11770 </member>
11771 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11772 <summary>Loads a test package into the test harness.</summary>
11773 <param name="packageConfig">The test package configuration</param>
11774 <param name="progressMonitor">The progress monitor</param>
11775 </member>
11776 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11777 <summary>Runs the tests.</summary>
11778 <param name="options">The test execution options</param>
11779 <param name="listener">The test listener for monitoring test execution</param>
11780 <param name="progressMonitor">The progress monitor</param>
11781 </member>
11782 <member name="M:Gallio.Runner.Harness.DefaultTestHarness.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11783 <summary>Unloads the tests.</summary>
11784 <param name="progressMonitor">The progress monitor</param>
11785 </member>
11786 <member name="T:Gallio.Runner.Harness.DefaultTestHarnessFactory">
11787 <summary>The default test harness factory creates a <see cref="T:Gallio.Runner.Harness.DefaultTestHarness" />.</summary>
11788 </member>
11789 <member name="M:Gallio.Runner.Harness.DefaultTestHarnessFactory.CreateHarness">
11790 <summary>Creates a test harness and associates it with its test harness contributors, if any.</summary>
11791 <returns>The test harness</returns>
11792 </member>
11793 <member name="T:Gallio.Runner.Harness.TraceTestEnvironment">
11794 <summary>Sets up trace listeners.</summary>
11795 </member>
11796 <member name="M:Gallio.Runner.Harness.TraceTestEnvironment.SetUp">
11797 <summary>Sets up the test environment.</summary>
11798 <returns>Returns an object that when disposed causes the test environment to be torn down</returns>
11799 </member>
11800 <member name="T:Gallio.Runner.Harness.UnhandledExceptionTestEnvironment">
11801 <summary>Logs unhandled exceptions instead of killing the AppDomain.</summary>
11802 </member>
11803 <member name="M:Gallio.Runner.Harness.UnhandledExceptionTestEnvironment.SetUp">
11804 <summary>Sets up the test environment.</summary>
11805 <returns>Returns an object that when disposed causes the test environment to be torn down</returns>
11806 </member>
11807 <member name="T:Gallio.Runner.Harness.ITestEnvironment">
11808 <summary>The test environment configures global behavior related to preparing the test execution environment for running tests and tearing them down.</summary>
11809 </member>
11810 <member name="M:Gallio.Runner.Harness.ITestEnvironment.SetUp">
11811 <summary>Sets up the test environment.</summary>
11812 <returns>Returns an object that when disposed causes the test environment to be torn down</returns>
11813 </member>
11814 <member name="T:Gallio.Runner.Harness.ITestHarness">
11815 <summary>The test harness manages the lifecycle of test enumeration and execution. Contributors (such as test framework adapters) may attach event handlers to extend or modify the behavior at distinct points in the lifecycle. A new test harness instance is created when a test project is loaded into memory to serve as the ultimate container for all of its related resources.</summary>
11816 </member>
11817 <member name="P:Gallio.Runner.Harness.ITestHarness.TestModel">
11818 <summary>Gets the test model, or null if the test model has not been built.</summary>
11819 </member>
11820 <member name="P:Gallio.Runner.Harness.ITestHarness.TestPackage">
11821 <summary>Gets the test package loaded in the test harness, or null if none.</summary>
11822 </member>
11823 <member name="M:Gallio.Runner.Harness.ITestHarness.AddTestEnvironment(Gallio.Runner.Harness.ITestEnvironment)">
11824 <summary>Adds a test environment.</summary>
11825 <param name="environment">The test framework to add</param>
11826 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="environment" /> is null</exception>
11827 </member>
11828 <member name="M:Gallio.Runner.Harness.ITestHarness.AddTestFramework(Gallio.Model.ITestFramework)">
11829 <summary>Adds a test framework.</summary>
11830 <param name="framework">The test framework to add</param>
11831 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="framework" /> is null</exception>
11832 </member>
11833 <member name="M:Gallio.Runner.Harness.ITestHarness.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11834 <summary>Populates the test model.</summary>
11835 <param name="options">The test enumeration options</param>
11836 <param name="progressMonitor">The progress monitor</param>
11837 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> or <paramref name="options" /> is null</exception>
11838 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="M:Gallio.Runner.Harness.ITestHarness.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> has not been called yet</exception>
11839 </member>
11840 <member name="M:Gallio.Runner.Harness.ITestHarness.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11841 <summary>Loads a test package into the test harness.</summary>
11842 <param name="packageConfig">The test package configuration</param>
11843 <param name="progressMonitor">The progress monitor</param>
11844 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> or <paramref name="packageConfig" /> is null</exception>
11845 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="M:Gallio.Runner.Harness.ITestHarness.Load(Gallio.Model.TestPackageConfig,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> has already been called once because this interface does not support unloading packages except by disposing the harness and recreating it</exception>
11846 </member>
11847 <member name="M:Gallio.Runner.Harness.ITestHarness.Run(Gallio.Model.Execution.TestExecutionOptions,Gallio.Model.Execution.ITestListener,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11848 <summary>Runs the tests.</summary>
11849 <param name="options">The test execution options</param>
11850 <param name="listener">The test listener for monitoring test execution</param>
11851 <param name="progressMonitor">The progress monitor</param>
11852 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" />, <paramref name="listener" /> or <paramref name="options" /> is null</exception>
11853 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="M:Gallio.Runner.Harness.ITestHarness.Explore(Gallio.Model.TestExplorationOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> has not been called yet</exception>
11854 </member>
11855 <member name="M:Gallio.Runner.Harness.ITestHarness.Unload(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11856 <summary>Unloads the tests.</summary>
11857 <param name="progressMonitor">The progress monitor</param>
11858 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
11859 </member>
11860 <member name="T:Gallio.Runner.Harness.ITestHarnessFactory">
11861 <summary>A test harness factory.</summary>
11862 </member>
11863 <member name="M:Gallio.Runner.Harness.ITestHarnessFactory.CreateHarness">
11864 <summary>Creates a test harness and associates it with its test harness contributors, if any.</summary>
11865 <returns>The test harness</returns>
11866 </member>
11867 <member name="T:Gallio.Runner.Projects.FilterInfo">
11868 <summary>Filter record for Gallio project.</summary>
11869 </member>
11870 <member name="P:Gallio.Runner.Projects.FilterInfo.Filter">
11871 <summary>A string representation of the filter.</summary>
11872 </member>
11873 <member name="P:Gallio.Runner.Projects.FilterInfo.FilterName">
11874 <summary>The name of the filter.</summary>
11875 </member>
11876 <member name="T:Gallio.Runner.Projects.Project">
11877 <summary>Gallio project container. This class cannot be inherited.</summary>
11878 </member>
11879 <member name="P:Gallio.Runner.Projects.Project.TestFilters">
11880 <summary>A list of test filters for the project.</summary>
11881 </member>
11882 <member name="P:Gallio.Runner.Projects.Project.TestPackageConfig">
11883 <summary>The test package.</summary>
11884 </member>
11885 <member name="T:Gallio.Runner.Reports.DefaultReportManager">
11886 <summary>The default implementation of <see cref="T:Gallio.Runner.Reports.IReportManager" />.</summary>
11887 </member>
11888 <member name="P:Gallio.Runner.Reports.DefaultReportManager.FormatterResolver">
11889 <summary>Gets a resolver for resolving registered <see cref="T:Gallio.Runner.Reports.IReportFormatter" /> components by name.</summary>
11890 </member>
11891 <member name="M:Gallio.Runner.Reports.DefaultReportManager.CreateReportReader(Gallio.Runner.Reports.IReportContainer)">
11892 <summary>Gets a report reader to load a report from the specified container.</summary>
11893 <param name="reportContainer">The report container</param>
11894 <returns>The report reader</returns>
11895 </member>
11896 <member name="M:Gallio.Runner.Reports.DefaultReportManager.CreateReportWriter(Gallio.Runner.Reports.Report,Gallio.Runner.Reports.IReportContainer)">
11897 <summary>Gets a report writer to save or format a report to the specified container.</summary>
11898 <param name="report">The report</param>
11899 <param name="reportContainer">The report container</param>
11900 <returns>The report writer</returns>
11901 </member>
11902 <member name="M:Gallio.Runner.Reports.DefaultReportManager.Format(Gallio.Runner.Reports.IReportWriter,System.String,System.Collections.Specialized.NameValueCollection,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11903 <summary>Formats the report indicated by the report writer.</summary>
11904 <param name="reportWriter">The report writer</param>
11905 <param name="formatterName">The formatter name</param>
11906 <param name="formatterOptions">Custom options for the report formatter</param>
11907 <param name="progressMonitor">The progress monitor</param>
11908 </member>
11909 <member name="T:Gallio.Runner.Reports.DefaultReportReader">
11910 <summary>Default implementation of a report reader.</summary>
11911 </member>
11912 <member name="P:Gallio.Runner.Reports.DefaultReportReader.ReportContainer">
11913 <summary>Gets the report container.</summary>
11914 </member>
11915 <member name="M:Gallio.Runner.Reports.DefaultReportReader.LoadReport(System.Boolean,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11916 <summary>
11917 <para> Loads the report from an XML file. </para>
11918 <para> The path of the saved report is constructed by appending the extension ".xml" to the container's <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" />. </para>
11919 </summary>
11920 <param name="loadAttachmentContents">If true, loads attachment contents in referenced content files if they were not embedded otherwise the attachment contents are not loaded (but may be loaded later using <see cref="M:Gallio.Runner.Reports.IReportReader.LoadReportAttachments(Gallio.Runner.Reports.Report,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />).</param>
11921 <param name="progressMonitor">The progress monitor</param>
11922 <returns>The loaded report</returns>
11923 </member>
11924 <member name="M:Gallio.Runner.Reports.DefaultReportReader.LoadReportAttachments(Gallio.Runner.Reports.Report,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11925 <summary>
11926 <para> Loads referenced report attachments from the container. </para>
11927 <para> This method has the effect of populating the contents of all <see cref="T:Gallio.Runner.Reports.ExecutionLogAttachment" /> nodes in the report that have non-null <see cref="P:Gallio.Runner.Reports.ExecutionLogAttachment.ContentPath" />. </para>
11928 </summary>
11929 <param name="report">The report whose attachments are to be loaded</param>
11930 <param name="progressMonitor">The progress monitor</param>
11931 </member>
11932 <member name="T:Gallio.Runner.Reports.DefaultReportWriter">
11933 <summary>Default implementation of a report writer.</summary>
11934 </member>
11935 <member name="P:Gallio.Runner.Reports.DefaultReportWriter.Report">
11936 <summary>Gets the report being generated.</summary>
11937 </member>
11938 <member name="P:Gallio.Runner.Reports.DefaultReportWriter.ReportContainer">
11939 <summary>Gets the report container.</summary>
11940 </member>
11941 <member name="P:Gallio.Runner.Reports.DefaultReportWriter.ReportDocumentPaths">
11942 <summary>Gets the paths of all report documents that have been generated within the report container. Report documents are the primary files when reports are formatted or saved such as an XML file, a Text file, or the main HTML file that contains the body of the report.</summary>
11943 </member>
11944 <member name="M:Gallio.Runner.Reports.DefaultReportWriter.AddReportDocumentPath(System.String)">
11945 <summary>Adds the path of a report document that has been created within the report container.</summary>
11946 <param name="path">The document path</param>
11947 </member>
11948 <member name="M:Gallio.Runner.Reports.DefaultReportWriter.SaveReport(Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11949 <summary>
11950 <para> Saves the report as an XML file. </para>
11951 <para> The saved report XML file is automatically added to the <see cref="P:Gallio.Runner.Reports.IReportWriter.ReportDocumentPaths" /> list. </para>
11952 <para> The path of the saved report is constructed by appending the extension ".xml" to the container's <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" />. </para>
11953 </summary>
11954 <param name="attachmentContentDisposition">The content disposition to use for all attachments. If the content disposition is <see cref="F:Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition.Link" /> then this method will automatically call <see cref="M:Gallio.Runner.Reports.IReportWriter.SaveReportAttachments(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> to save the attachments.</param>
11955 <param name="progressMonitor">The progress monitor</param>
11956 </member>
11957 <member name="M:Gallio.Runner.Reports.DefaultReportWriter.SaveReportAttachments(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
11958 <summary>
11959 <para> Saves all report attachments as individual content files to the container. </para>
11960 <para> The convention for attachments is to save them in a directory with the same name as the container's <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" /> arranged in folders first by test id then by step id then by attachment name. For example: "Report\{testid}\{stepid}\attachment.jpg". </para>
11961 </summary>
11962 <param name="progressMonitor">The progress monitor</param>
11963 </member>
11964 <member name="M:Gallio.Runner.Reports.DefaultReportWriter.SerializeReport(System.Xml.XmlWriter,Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition)">
11965 <summary>Serializes the report to XML.</summary>
11966 <param name="xmlWriter">The XML writer</param>
11967 <param name="attachmentContentDisposition">The content disposition to use for all attachments</param>
11968 </member>
11969 <member name="T:Gallio.Runner.Reports.ExecutionLog">
11970 <summary>An Xml-serializable test execution log. This class cannot be inherited.</summary>
11971 </member>
11972 <member name="P:Gallio.Runner.Reports.ExecutionLog.Attachments">
11973 <summary>Gets the list of attachments, not null.</summary>
11974 </member>
11975 <member name="P:Gallio.Runner.Reports.ExecutionLog.Streams">
11976 <summary>Gets the list of streams, not null. Used for Xml-serialization.</summary>
11977 </member>
11978 <member name="M:Gallio.Runner.Reports.ExecutionLog.GetStream(System.String)">
11979 <summary>Gets a stream by name.</summary>
11980 <param name="name">The stream name</param>
11981 <returns>The stream or null if not found</returns>
11982 </member>
11983 <member name="T:Gallio.Runner.Reports.ExecutionLogAttachment">
11984 <summary>
11985 <para> An Xml-serializable attachment. </para>
11986 <para> The contents of the attachment are embedded in the execution log according to their encoding. Text is directly embedded into the Xml whereas binary attachments are base 64 encoded. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
11987 </member>
11988 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.ContentDisposition">
11989 <summary>Gets or sets the content disposition of the attachment which indicates how the attachment has been stored.</summary>
11990 </member>
11991 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.ContentPath">
11992 <summary>Gets or sets the path of the attachment contents relative to the directory that contains the Xml serialized report, or null if the content is embedded.</summary>
11993 </member>
11994 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.ContentType">
11995 <summary>Gets or sets the content type of the attachment as a MIME type, not null.</summary>
11996 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
11997 </member>
11998 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.Encoding">
11999 <summary>Gets or sets the encoding of the attachment. This value specifies how the attachment is represented in Xml.</summary>
12000 </member>
12001 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.IsText">
12002 <summary>Returns true if the attachment is textual, false if it is binary.</summary>
12003 </member>
12004 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.Name">
12005 <summary>Gets or sets the name of the attachment, not null.</summary>
12006 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12007 </member>
12008 <member name="P:Gallio.Runner.Reports.ExecutionLogAttachment.SerializedContents">
12009 <summary>Gets or sets the attachment content serialized as text (including Base64 attachments), possibly null if none.</summary>
12010 </member>
12011 <member name="M:Gallio.Runner.Reports.ExecutionLogAttachment.CreateBinaryAttachment(System.String,System.String,System.Byte[])">
12012 <summary>Creates a binary attachment.</summary>
12013 <param name="name">The attachment name</param>
12014 <param name="contentType">The content type</param>
12015 <param name="bytes">The binary data</param>
12016 <returns>The attachment</returns>
12017 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" />, <paramref name="contentType" /> or <paramref name="bytes" /> is null</exception>
12018 </member>
12019 <member name="M:Gallio.Runner.Reports.ExecutionLogAttachment.CreateTextAttachment(System.String,System.String,System.String)">
12020 <summary>Creates a text attachment.</summary>
12021 <param name="name">The attachment name</param>
12022 <param name="contentType">The content type</param>
12023 <param name="text">The text</param>
12024 <returns>The attachment</returns>
12025 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" />, <paramref name="contentType" /> or <paramref name="text" /> is null</exception>
12026 </member>
12027 <member name="M:Gallio.Runner.Reports.ExecutionLogAttachment.GetBytes">
12028 <summary>Gets the binary contents of a binary attachment.</summary>
12029 <returns>The bytes, or null if not available</returns>
12030 <exception cref="T:System.InvalidOperationException">Thrown if the attachment is not binary</exception>
12031 </member>
12032 <member name="M:Gallio.Runner.Reports.ExecutionLogAttachment.GetText">
12033 <summary>Gets the text contents of a text attachment.</summary>
12034 <returns>The text, or null if not available</returns>
12035 <exception cref="T:System.InvalidOperationException">Thrown if the attachment is not textual</exception>
12036 </member>
12037 <member name="M:Gallio.Runner.Reports.ExecutionLogAttachment.LoadContents(System.IO.Stream)">
12038 <summary>Loads the attachment contents from a stream.</summary>
12039 <param name="stream">The stream</param>
12040 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="stream" /> is null</exception>
12041 <exception cref="T:System.IO.IOException">If the attachment could not be loaded</exception>
12042 </member>
12043 <member name="M:Gallio.Runner.Reports.ExecutionLogAttachment.SaveContents(System.IO.Stream,System.Text.Encoding)">
12044 <summary>Saves the attachment contents to a stream.</summary>
12045 <param name="stream">The stream</param>
12046 <param name="encoding">The preferred encoding to use if writing text, or null if none</param>
12047 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="stream" /> is null</exception>
12048 <exception cref="T:System.IO.IOException">If the attachment could not be saved</exception>
12049 <exception cref="T:System.InvalidOperationException">Thrown if the attachment contents are not available</exception>
12050 </member>
12051 <member name="T:Gallio.Runner.Reports.ExecutionLogStream">
12052 <summary>An xml-serializable execution log stram. This class cannot be inherited.</summary>
12053 </member>
12054 <member name="P:Gallio.Runner.Reports.ExecutionLogStream.Body">
12055 <summary>Gets or sets the body of the log stream, not null.</summary>
12056 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12057 </member>
12058 <member name="P:Gallio.Runner.Reports.ExecutionLogStream.Name">
12059 <summary>Gets or sets the name of the log stream, not null.</summary>
12060 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12061 </member>
12062 <member name="M:Gallio.Runner.Reports.ExecutionLogStream.ToString">
12063 <summary>Formats the stream using a <see cref="T:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter" />.</summary>
12064 <returns>The formatted text</returns>
12065 </member>
12066 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamBodyTag">
12067 <summary>An Xml-serializable execution log body. Contains all other tags within a log stream. This class cannot be inherited.</summary>
12068 </member>
12069 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamBodyTag.Accept(Gallio.Runner.Reports.IExecutionLogStreamTagVisitor)">
12070 <summary>Invokes the appropriate visitor method for this tag type.</summary>
12071 <param name="visitor">The visitor</param>
12072 </member>
12073 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamContainerTag">
12074 <summary>Abstract class of Xml-serializable execution log container tags. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
12075 </member>
12076 <member name="P:Gallio.Runner.Reports.ExecutionLogStreamContainerTag.Contents">
12077 <summary>Gets the list of nested contents of this tag.</summary>
12078 </member>
12079 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamContainerTag.AcceptContents(Gallio.Runner.Reports.IExecutionLogStreamTagVisitor)">
12080 <summary>Invokes the appropriate visitor method each element contained within this tag.</summary>
12081 <param name="visitor">The visitor</param>
12082 </member>
12083 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamEmbedTag">
12084 <summary>An Xml-serializable tag for embedding an attachment within an execution log. This class cannot be inherited.</summary>
12085 </member>
12086 <member name="P:Gallio.Runner.Reports.ExecutionLogStreamEmbedTag.AttachmentName">
12087 <summary>Gets or sets the name of the referenced attachment to embed, not null.</summary>
12088 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12089 </member>
12090 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamEmbedTag.Accept(Gallio.Runner.Reports.IExecutionLogStreamTagVisitor)">
12091 <summary>Invokes the appropriate visitor method for this tag type.</summary>
12092 <param name="visitor">The visitor</param>
12093 </member>
12094 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamSectionTag">
12095 <summary>An Xml-serializable container for a section with an identifying section name. This tag is used to delineate sections within an execution log stream. This class cannot be inherited.</summary>
12096 </member>
12097 <member name="P:Gallio.Runner.Reports.ExecutionLogStreamSectionTag.Name">
12098 <summary>Gets or sets the section name, not null.</summary>
12099 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12100 </member>
12101 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamSectionTag.Accept(Gallio.Runner.Reports.IExecutionLogStreamTagVisitor)">
12102 <summary>Invokes the appropriate visitor method for this tag type.</summary>
12103 <param name="visitor">The visitor</param>
12104 </member>
12105 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamTag">
12106 <summary>A tag is an Xml-serializable object that is included in the body of an execution log stream and describes its contents. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
12107 </member>
12108 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTag.Accept(Gallio.Runner.Reports.IExecutionLogStreamTagVisitor)">
12109 <summary>Invokes the appropriate visitor method for this tag type.</summary>
12110 <param name="visitor">The visitor</param>
12111 </member>
12112 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTag.ToString">
12113 <summary>Formats the tag using a <see cref="T:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter" />.</summary>
12114 <returns>The formatted text</returns>
12115 </member>
12116 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter">
12117 <summary>Formats <see cref="T:Gallio.Runner.Reports.ExecutionLogStreamTag" /> instances to plain text by recursively concatenating the text of all contained <see cref="T:Gallio.Runner.Reports.ExecutionLogStreamTextTag" /> elements. Sections and embedded attachments introduce line-breaks within the text but are otherwise ignored. This class cannot be inherited.</summary>
12118 </member>
12119 <member name="P:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter.Text">
12120 <summary>Gets the text that has been built.</summary>
12121 </member>
12122 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter.VisitBodyTag(Gallio.Runner.Reports.ExecutionLogStreamBodyTag)">
12123 <summary>Visits a body tag.</summary>
12124 <param name="tag">The tag to visit</param>
12125 </member>
12126 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter.VisitEmbedTag(Gallio.Runner.Reports.ExecutionLogStreamEmbedTag)">
12127 <summary>Visits an embedded attachment tag.</summary>
12128 <param name="tag">The tag to visit</param>
12129 </member>
12130 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter.VisitSectionTag(Gallio.Runner.Reports.ExecutionLogStreamSectionTag)">
12131 <summary>Visits a section tag.</summary>
12132 <param name="tag">The tag to visit</param>
12133 <returns>True if the visitor should be called again for each child of the section tag</returns>
12134 </member>
12135 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTextFormatter.VisitTextTag(Gallio.Runner.Reports.ExecutionLogStreamTextTag)">
12136 <summary>Visits a text tag.</summary>
12137 <param name="tag">The tag to visit</param>
12138 </member>
12139 <member name="T:Gallio.Runner.Reports.ExecutionLogStreamTextTag">
12140 <summary>An Xml-serializable block of preformatted text to include in an execution log stream. This class cannot be inherited.</summary>
12141 </member>
12142 <member name="P:Gallio.Runner.Reports.ExecutionLogStreamTextTag.Text">
12143 <summary>Gets or sets the text within the tag, not null.</summary>
12144 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12145 </member>
12146 <member name="M:Gallio.Runner.Reports.ExecutionLogStreamTextTag.Accept(Gallio.Runner.Reports.IExecutionLogStreamTagVisitor)">
12147 <summary>Invokes the appropriate visitor method for this tag type.</summary>
12148 <param name="visitor">The visitor</param>
12149 </member>
12150 <member name="T:Gallio.Runner.Reports.ExecutionLogWriter">
12151 <summary>Writes execution logs to an Xml-serializable format. This class cannot be inherited.</summary>
12152 </member>
12153 <member name="P:Gallio.Runner.Reports.ExecutionLogWriter.ExecutionLog">
12154 <summary>Gets the execution log under construction.</summary>
12155 </member>
12156 <member name="T:Gallio.Runner.Reports.FileSystemReportContainer">
12157 <summary>A file-system based representation of a report container that uses ordinary files and folders to store report contents.</summary>
12158 </member>
12159 <member name="P:Gallio.Runner.Reports.FileSystemReportContainer.ReportDirectory">
12160 <summary>Gets the full-path of the report directory.</summary>
12161 </member>
12162 <member name="P:Gallio.Runner.Reports.FileSystemReportContainer.ReportName">
12163 <summary>
12164 <para> Gets the base name of the report. </para>
12165 <para> Logical files and folders associated with the report all begin with this name and are disambiguated by extension. </para>
12166 </summary>
12167 </member>
12168 <member name="M:Gallio.Runner.Reports.FileSystemReportContainer.DeleteReport">
12169 <summary>Deletes the entire contents of the report in all of its formats.</summary>
12170 </member>
12171 <member name="M:Gallio.Runner.Reports.FileSystemReportContainer.EncodeFileName(System.String)">
12172 <summary>Replaces invalid characters in a file or directory name with underscores and trims it if it is too long.</summary>
12173 <param name="fileName">The file or directory name</param>
12174 <returns>The encoded file or directory name</returns>
12175 </member>
12176 <member name="M:Gallio.Runner.Reports.FileSystemReportContainer.OpenRead(System.String)">
12177 <summary>Opens a report file for reading.</summary>
12178 <param name="path">The relative path of the report file within the container</param>
12179 <returns>The stream</returns>
12180 </member>
12181 <member name="M:Gallio.Runner.Reports.FileSystemReportContainer.OpenWrite(System.String,System.String,System.Text.Encoding)">
12182 <summary>
12183 <para> Opens a report file for writing, overwriting any previous file with the same name. </para>
12184 <para> It is not necessary to create "directories" within the container. They are automatically created when new files are opened for writing within them. </para>
12185 </summary>
12186 <param name="path">The path of the report file</param>
12187 <param name="contentType">The content type of the file, or null if not specified</param>
12188 <param name="encoding">The text encoding of the file, or null if not specified or if the file is binary</param>
12189 <returns>The stream</returns>
12190 </member>
12191 <member name="T:Gallio.Runner.Reports.Report">
12192 <summary>A report includes a description of the test package, the model objects, the combined results of all test runs and summary statistics. This class cannot be inherited.</summary>
12193 </member>
12194 <member name="P:Gallio.Runner.Reports.Report.TestModel">
12195 <summary>Gets or sets the test model, or null if none.</summary>
12196 </member>
12197 <member name="P:Gallio.Runner.Reports.Report.TestPackageConfig">
12198 <summary>Gets or sets the test package configuration, or null if none.</summary>
12199 </member>
12200 <member name="P:Gallio.Runner.Reports.Report.TestPackageRun">
12201 <summary>Gets or sets the test package run results, or null if none.</summary>
12202 </member>
12203 <member name="T:Gallio.Runner.Reports.ReportContainerUtils">
12204 <summary>Utilities for working with <see cref="T:Gallio.Runner.Reports.IReportContainer" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
12205 </member>
12206 <member name="M:Gallio.Runner.Reports.ReportContainerUtils.CopyToReport(Gallio.Runner.Reports.IReportContainer,System.String,System.String)">
12207 <summary>Recursively copies files and folders from the source path in the native file system to the destination path within the report container.</summary>
12208 <param name="container">The container</param>
12209 <param name="sourcePathInFileSystem">The source file or directory path in the native file system</param>
12210 <param name="destPathInContainer">The destination file or directory path in the report container</param>
12211 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="container" />, <paramref name="sourcePathInFileSystem" /> or <paramref name="destPathInContainer" /> is null</exception>
12212 </member>
12213 <member name="T:Gallio.Runner.Reports.Statistics">
12214 <summary>Collects summary statistics about test execution for reporting purposes. This class cannot be inherited.</summary>
12215 </member>
12216 <member name="P:Gallio.Runner.Reports.Statistics.AssertCount">
12217 <summary>Gets or sets the number of assertions evaluated.</summary>
12218 </member>
12219 <member name="P:Gallio.Runner.Reports.Statistics.Duration">
12220 <summary>Gets or sets the total duration summarized tests in seconds.</summary>
12221 </member>
12222 <member name="P:Gallio.Runner.Reports.Statistics.FailedCount">
12223 <summary>Gets or sets the number of test cases that ran and failed.</summary>
12224 </member>
12225 <member name="P:Gallio.Runner.Reports.Statistics.InconclusiveCount">
12226 <summary>Gets or sets the number of test cases that ran and were inconclusive.</summary>
12227 </member>
12228 <member name="P:Gallio.Runner.Reports.Statistics.OutcomeSummaries">
12229 <summary>Gets or sets the test outcome summaries.</summary>
12230 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12231 </member>
12232 <member name="P:Gallio.Runner.Reports.Statistics.PassedCount">
12233 <summary>Gets or sets the number of test cases that ran and passed.</summary>
12234 </member>
12235 <member name="P:Gallio.Runner.Reports.Statistics.RunCount">
12236 <summary>Gets or sets the number of test cases that were run.</summary>
12237 </member>
12238 <member name="P:Gallio.Runner.Reports.Statistics.SkippedCount">
12239 <summary>Gets or sets the number of test cases that did not run.</summary>
12240 </member>
12241 <member name="P:Gallio.Runner.Reports.Statistics.StepCount">
12242 <summary>Gets or sets the total number of test steps.</summary>
12243 </member>
12244 <member name="P:Gallio.Runner.Reports.Statistics.TestCount">
12245 <summary>Gets or sets the total number of test cases.</summary>
12246 </member>
12247 <member name="M:Gallio.Runner.Reports.Statistics.FormatTestCaseResultSummary">
12248 <summary>Formats a single line of text summarizing test case results.</summary>
12249 </member>
12250 <member name="M:Gallio.Runner.Reports.Statistics.GetOutcomeCount(Gallio.Model.TestOutcome)">
12251 <summary>Gets the number of tests with the specified outcome.</summary>
12252 <param name="outcome">The outcome</param>
12253 <returns>The number of tests with the specified outcome</returns>
12254 </member>
12255 <member name="M:Gallio.Runner.Reports.Statistics.MergeStepStatistics(Gallio.Runner.Reports.TestStepRun)">
12256 <summary>Merges statistics from a test step run, incrementing the relevant counters.</summary>
12257 <param name="testStepRun">The test step run</param>
12258 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="testStepRun" /> is null</exception>
12259 </member>
12260 <member name="M:Gallio.Runner.Reports.Statistics.SetOutcomeCount(Gallio.Model.TestOutcome,System.Int32)">
12261 <summary>Ssets the number of tests with the specified outcomee.</summary>
12262 <param name="outcome">The outcome</param>
12263 <param name="count">The count</param>
12264 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="count" /> is less than 0</exception>
12265 </member>
12266 <member name="T:Gallio.Runner.Reports.TestOutcomeSummary">
12267 <summary>Describes the number of test cases with a particular <see cref="T:Gallio.Model.TestOutcome" />. This class cannot be inherited.</summary>
12268 </member>
12269 <member name="P:Gallio.Runner.Reports.TestOutcomeSummary.Count">
12270 <summary>Gets or sets the number of test cases with the specified outcome.</summary>
12271 </member>
12272 <member name="P:Gallio.Runner.Reports.TestOutcomeSummary.Outcome">
12273 <summary>Gets or sets the outcome.</summary>
12274 </member>
12275 <member name="T:Gallio.Runner.Reports.TestPackageRun">
12276 <summary>Summarizes the execution of a test package for reporting purposes. This class cannot be inherited.</summary>
12277 </member>
12278 <member name="P:Gallio.Runner.Reports.TestPackageRun.AllTestStepRuns">
12279 <summary>Recursively enumerates all test step runs including the root test step run.</summary>
12280 </member>
12281 <member name="P:Gallio.Runner.Reports.TestPackageRun.EndTime">
12282 <summary>Gets or sets the time when the package run ended.</summary>
12283 </member>
12284 <member name="P:Gallio.Runner.Reports.TestPackageRun.RootTestStepRun">
12285 <summary>Gets or sets the root test step run, or null if the root test has not run.</summary>
12286 </member>
12287 <member name="P:Gallio.Runner.Reports.TestPackageRun.StartTime">
12288 <summary>Gets or sets the time when the package run started.</summary>
12289 </member>
12290 <member name="P:Gallio.Runner.Reports.TestPackageRun.Statistics">
12291 <summary>Gets or sets the statistics for the package run.</summary>
12292 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12293 </member>
12294 <member name="T:Gallio.Runner.Reports.TestStepRun">
12295 <summary>Summarizes the execution of a single test step for reporting purposes. This class cannot be inherited.</summary>
12296 </member>
12297 <member name="P:Gallio.Runner.Reports.TestStepRun.AllTestStepRuns">
12298 <summary>Recursively enumerates all test step runs including this one.</summary>
12299 </member>
12300 <member name="P:Gallio.Runner.Reports.TestStepRun.Children">
12301 <summary>Gets the list of child step runs.</summary>
12302 </member>
12303 <member name="P:Gallio.Runner.Reports.TestStepRun.EndTime">
12304 <summary>Gets or sets the time when the test run ended.</summary>
12305 </member>
12306 <member name="P:Gallio.Runner.Reports.TestStepRun.ExecutionLog">
12307 <summary>Gets or sets the execution log.</summary>
12308 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12309 </member>
12310 <member name="P:Gallio.Runner.Reports.TestStepRun.Result">
12311 <summary>Gets or sets the test result from the run.</summary>
12312 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12313 </member>
12314 <member name="P:Gallio.Runner.Reports.TestStepRun.StartTime">
12315 <summary>Gets or sets the time when the test run started.</summary>
12316 </member>
12317 <member name="P:Gallio.Runner.Reports.TestStepRun.Step">
12318 <summary>Gets or sets information about the step.</summary>
12319 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12320 </member>
12321 <member name="T:Gallio.Runner.Reports.IExecutionLogStreamTagVisitor">
12322 <summary>Visits an <see cref="T:Gallio.Runner.Reports.ExecutionLogStreamTag" />.</summary>
12323 </member>
12324 <member name="M:Gallio.Runner.Reports.IExecutionLogStreamTagVisitor.VisitBodyTag(Gallio.Runner.Reports.ExecutionLogStreamBodyTag)">
12325 <summary>Visits a body tag.</summary>
12326 <param name="tag">The tag to visit</param>
12327 </member>
12328 <member name="M:Gallio.Runner.Reports.IExecutionLogStreamTagVisitor.VisitEmbedTag(Gallio.Runner.Reports.ExecutionLogStreamEmbedTag)">
12329 <summary>Visits an embedded attachment tag.</summary>
12330 <param name="tag">The tag to visit</param>
12331 </member>
12332 <member name="M:Gallio.Runner.Reports.IExecutionLogStreamTagVisitor.VisitSectionTag(Gallio.Runner.Reports.ExecutionLogStreamSectionTag)">
12333 <summary>Visits a section tag.</summary>
12334 <param name="tag">The tag to visit</param>
12335 <returns>True if the visitor should be called again for each child of the section tag</returns>
12336 </member>
12337 <member name="M:Gallio.Runner.Reports.IExecutionLogStreamTagVisitor.VisitTextTag(Gallio.Runner.Reports.ExecutionLogStreamTextTag)">
12338 <summary>Visits a text tag.</summary>
12339 <param name="tag">The tag to visit</param>
12340 </member>
12341 <member name="T:Gallio.Runner.Reports.IReportContainer">
12342 <summary>
12343 <para> A report container is used to load or save the contents of a report. A report container consists of zero or more logical report files distinguished by extension and a content folder. The content folder holds attachment contents and format-specific resources. </para>
12344 <para> The definition of a report container is necessarily somewhat abstract. It is intended to allow the files associated with report rendered in multiple formats to coexist side by side unambiguously and without duplication of common attachment contents. </para>
12345 <para> Paths within reports are always specified relative to the root of the container with each path segment delimited by backslashes. The first path segment must be <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" />, optionally with an extra period-delimited extension. For example, if <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" nolink="true" /> is <c>"Report"</c> then <c>"Report.xml"</c> and <c>"Report/Contents.txt"</c> are valid paths but <c>"Bar"</c> and <c>"Report-NotAnExtension"</c> are not. </para>
12346 <para> By convention report content such as attachments and images are stored in a folder with the same name as <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" nolink="true" />. </para>
12347 </summary>
12348 </member>
12349 <member name="P:Gallio.Runner.Reports.IReportContainer.ReportName">
12350 <summary>
12351 <para> Gets the base name of the report. </para>
12352 <para> Logical files and folders associated with the report all begin with this name and are disambiguated by extension. </para>
12353 </summary>
12354 </member>
12355 <member name="M:Gallio.Runner.Reports.IReportContainer.DeleteReport">
12356 <summary>Deletes the entire contents of the report in all of its formats.</summary>
12357 <exception cref="T:System.IO.IOException">Thrown if an I/O error occurs</exception>
12358 </member>
12359 <member name="M:Gallio.Runner.Reports.IReportContainer.EncodeFileName(System.String)">
12360 <summary>Replaces invalid characters in a file or directory name with underscores and trims it if it is too long.</summary>
12361 <param name="fileName">The file or directory name</param>
12362 <returns>The encoded file or directory name</returns>
12363 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="fileName" /> is null</exception>
12364 </member>
12365 <member name="M:Gallio.Runner.Reports.IReportContainer.OpenRead(System.String)">
12366 <summary>Opens a report file for reading.</summary>
12367 <param name="path">The relative path of the report file within the container</param>
12368 <returns>The stream</returns>
12369 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="path" /> is null</exception>
12370 <exception cref="T:System.IO.IOException">Thrown if an I/O error occurs</exception>
12371 </member>
12372 <member name="M:Gallio.Runner.Reports.IReportContainer.OpenWrite(System.String,System.String,System.Text.Encoding)">
12373 <summary>
12374 <para> Opens a report file for writing, overwriting any previous file with the same name. </para>
12375 <para> It is not necessary to create "directories" within the container. They are automatically created when new files are opened for writing within them. </para>
12376 </summary>
12377 <param name="path">The path of the report file</param>
12378 <param name="contentType">The content type of the file, or null if not specified</param>
12379 <param name="encoding">The text encoding of the file, or null if not specified or if the file is binary</param>
12380 <returns>The stream</returns>
12381 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="path" /> is null</exception>
12382 <exception cref="T:System.IO.IOException">Thrown if an I/O error occurs</exception>
12383 </member>
12384 <member name="T:Gallio.Runner.Reports.IReportFormatter">
12385 <summary>A report formatter provides a strategy for formatting reports for human consumption.</summary>
12386 </member>
12387 <member name="M:Gallio.Runner.Reports.IReportFormatter.Format(Gallio.Runner.Reports.IReportWriter,System.Collections.Specialized.NameValueCollection,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
12388 <summary>Formats the report indicated by the report writer.</summary>
12389 <param name="reportWriter">The report writer</param>
12390 <param name="formatterOptions">Custom options for the report formatter</param>
12391 <param name="progressMonitor">The progress monitor</param>
12392 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="reportWriter" />, <paramref name="formatterOptions" /> or <paramref name="progressMonitor" /> is null</exception>
12393 </member>
12394 <member name="T:Gallio.Runner.Reports.IReportManager">
12395 <summary>The report manager provides services for manipulating reports.</summary>
12396 </member>
12397 <member name="P:Gallio.Runner.Reports.IReportManager.FormatterResolver">
12398 <summary>Gets a resolver for resolving registered <see cref="T:Gallio.Runner.Reports.IReportFormatter" /> components by name.</summary>
12399 </member>
12400 <member name="M:Gallio.Runner.Reports.IReportManager.CreateReportReader(Gallio.Runner.Reports.IReportContainer)">
12401 <summary>Gets a report reader to load a report from the specified container.</summary>
12402 <param name="reportContainer">The report container</param>
12403 <returns>The report reader</returns>
12404 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="reportContainer" /> is null</exception>
12405 </member>
12406 <member name="M:Gallio.Runner.Reports.IReportManager.CreateReportWriter(Gallio.Runner.Reports.Report,Gallio.Runner.Reports.IReportContainer)">
12407 <summary>Gets a report writer to save or format a report to the specified container.</summary>
12408 <param name="report">The report</param>
12409 <param name="reportContainer">The report container</param>
12410 <returns>The report writer</returns>
12411 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="report" /> or <paramref name="reportContainer" /> is null</exception>
12412 </member>
12413 <member name="M:Gallio.Runner.Reports.IReportManager.Format(Gallio.Runner.Reports.IReportWriter,System.String,System.Collections.Specialized.NameValueCollection,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
12414 <summary>Formats the report indicated by the report writer.</summary>
12415 <param name="reportWriter">The report writer</param>
12416 <param name="formatterName">The formatter name</param>
12417 <param name="formatterOptions">Custom options for the report formatter</param>
12418 <param name="progressMonitor">The progress monitor</param>
12419 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="reportWriter" />, <paramref name="formatterName" />, <paramref name="formatterOptions" /> or <paramref name="progressMonitor" /> is null</exception>
12420 <exception cref="T:System.InvalidOperationException">Thrown if there is no formatter with the specified name</exception>
12421 </member>
12422 <member name="T:Gallio.Runner.Reports.IReportReader">
12423 <summary>A report writer provides services for loading a previously saved report from a <see cref="T:Gallio.Runner.Reports.IReportContainer" />.</summary>
12424 </member>
12425 <member name="P:Gallio.Runner.Reports.IReportReader.ReportContainer">
12426 <summary>Gets the report container.</summary>
12427 </member>
12428 <member name="M:Gallio.Runner.Reports.IReportReader.LoadReport(System.Boolean,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
12429 <summary>
12430 <para> Loads the report from an XML file. </para>
12431 <para> The path of the saved report is constructed by appending the extension ".xml" to the container's <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" />. </para>
12432 </summary>
12433 <param name="loadAttachmentContents">If true, loads attachment contents in referenced content files if they were not embedded otherwise the attachment contents are not loaded (but may be loaded later using <see cref="M:Gallio.Runner.Reports.IReportReader.LoadReportAttachments(Gallio.Runner.Reports.Report,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" />).</param>
12434 <param name="progressMonitor">The progress monitor</param>
12435 <returns>The loaded report</returns>
12436 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
12437 </member>
12438 <member name="M:Gallio.Runner.Reports.IReportReader.LoadReportAttachments(Gallio.Runner.Reports.Report,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
12439 <summary>
12440 <para> Loads referenced report attachments from the container. </para>
12441 <para> This method has the effect of populating the contents of all <see cref="T:Gallio.Runner.Reports.ExecutionLogAttachment" /> nodes in the report that have non-null <see cref="P:Gallio.Runner.Reports.ExecutionLogAttachment.ContentPath" />. </para>
12442 </summary>
12443 <param name="report">The report whose attachments are to be loaded</param>
12444 <param name="progressMonitor">The progress monitor</param>
12445 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="report" /> or <paramref name="progressMonitor" /> is null</exception>
12446 </member>
12447 <member name="T:Gallio.Runner.Reports.IReportWriter">
12448 <summary>
12449 <para> A report writer provides services for formatting or saving a report to a <see cref="T:Gallio.Runner.Reports.IReportContainer" />. </para>
12450 <para> The writer tracks the paths of the report documents paths that are created within the report container. Likewise it remembers whether attachments have been saved so as to avoid redundantly resaving them when the same report is generated in multiple formats. </para>
12451 </summary>
12452 </member>
12453 <member name="P:Gallio.Runner.Reports.IReportWriter.Report">
12454 <summary>Gets the report being generated.</summary>
12455 </member>
12456 <member name="P:Gallio.Runner.Reports.IReportWriter.ReportContainer">
12457 <summary>Gets the report container.</summary>
12458 </member>
12459 <member name="P:Gallio.Runner.Reports.IReportWriter.ReportDocumentPaths">
12460 <summary>Gets the paths of all report documents that have been generated within the report container. Report documents are the primary files when reports are formatted or saved such as an XML file, a Text file, or the main HTML file that contains the body of the report.</summary>
12461 </member>
12462 <member name="M:Gallio.Runner.Reports.IReportWriter.AddReportDocumentPath(System.String)">
12463 <summary>Adds the path of a report document that has been created within the report container.</summary>
12464 <param name="path">The document path</param>
12465 </member>
12466 <member name="M:Gallio.Runner.Reports.IReportWriter.SaveReport(Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
12467 <summary>
12468 <para> Saves the report as an XML file. </para>
12469 <para> The saved report XML file is automatically added to the <see cref="P:Gallio.Runner.Reports.IReportWriter.ReportDocumentPaths" /> list. </para>
12470 <para> The path of the saved report is constructed by appending the extension ".xml" to the container's <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" />. </para>
12471 </summary>
12472 <param name="attachmentContentDisposition">The content disposition to use for all attachments. If the content disposition is <see cref="F:Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition.Link" /> then this method will automatically call <see cref="M:Gallio.Runner.Reports.IReportWriter.SaveReportAttachments(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)" /> to save the attachments.</param>
12473 <param name="progressMonitor">The progress monitor</param>
12474 <exception cref="T:System.ArgumentNullException">Thrown <paramref name="progressMonitor" /> is null</exception>
12475 </member>
12476 <member name="M:Gallio.Runner.Reports.IReportWriter.SaveReportAttachments(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
12477 <summary>
12478 <para> Saves all report attachments as individual content files to the container. </para>
12479 <para> The convention for attachments is to save them in a directory with the same name as the container's <see cref="P:Gallio.Runner.Reports.IReportContainer.ReportName" /> arranged in folders first by test id then by step id then by attachment name. For example: "Report\{testid}\{stepid}\attachment.jpg". </para>
12480 </summary>
12481 <param name="progressMonitor">The progress monitor</param>
12482 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
12483 </member>
12484 <member name="M:Gallio.Runner.Reports.IReportWriter.SerializeReport(System.Xml.XmlWriter,Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition)">
12485 <summary>Serializes the report to XML.</summary>
12486 <param name="xmlWriter">The XML writer</param>
12487 <param name="attachmentContentDisposition">The content disposition to use for all attachments</param>
12488 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="xmlWriter" /> is null</exception>
12489 </member>
12490 <member name="T:Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition">
12491 <summary>Specifies how attachments are stored in Xml.</summary>
12492 </member>
12493 <member name="F:Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition.Absent">
12494 <summary>The attachment content is not present.</summary>
12495 </member>
12496 <member name="F:Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition.Link">
12497 <summary>The attachment content is saved to a linked file indicated by <see cref="P:Gallio.Runner.Reports.ExecutionLogAttachment.ContentPath" />.</summary>
12498 </member>
12499 <member name="F:Gallio.Runner.Reports.ExecutionLogAttachmentContentDisposition.Inline">
12500 <summary>The attachment content is included inline as <see cref="P:Gallio.Runner.Reports.ExecutionLogAttachment.SerializedContents" /> with a given <see cref="P:Gallio.Runner.Reports.ExecutionLogAttachment.Encoding" />.</summary>
12501 </member>
12502 <member name="T:Gallio.Runner.Reports.ExecutionLogAttachmentEncoding">
12503 <summary>Specifies the Xml-encoding of an embedded execution log attachment.</summary>
12504 </member>
12505 <member name="F:Gallio.Runner.Reports.ExecutionLogAttachmentEncoding.Text">
12506 <summary>The attachment is encoded as a text string.</summary>
12507 </member>
12508 <member name="F:Gallio.Runner.Reports.ExecutionLogAttachmentEncoding.Base64">
12509 <summary>The attachment is encoded as base 64 text string.</summary>
12510 </member>
12511 <member name="T:Gallio.Runner.Workspaces.ResourcePath">
12512 <summary>Specifies a resource path as a list of backslash-delimited relative path segments.</summary>
12513 </member>
12514 <member name="F:Gallio.Runner.Workspaces.ResourcePath.Empty">
12515 <summary>Gets an empty path. This field is read-only.</summary>
12516 </member>
12517 <member name="F:Gallio.Runner.Workspaces.ResourcePath.Root">
12518 <summary>Gets the root path. This field is read-only.</summary>
12519 </member>
12520 <member name="P:Gallio.Runner.Workspaces.ResourcePath.Container">
12521 <summary>Gets the containing path, or an empty path if the path is the root.</summary>
12522 </member>
12523 <member name="P:Gallio.Runner.Workspaces.ResourcePath.IsAbsolute">
12524 <summary>Returns true if the path is absolute (has a leading backslash).</summary>
12525 </member>
12526 <member name="P:Gallio.Runner.Workspaces.ResourcePath.IsEmpty">
12527 <summary>Returns true if the path is empty.</summary>
12528 </member>
12529 <member name="P:Gallio.Runner.Workspaces.ResourcePath.Path">
12530 <summary>Returns the path as a backslash-delimited string.</summary>
12531 </member>
12532 <member name="P:Gallio.Runner.Workspaces.ResourcePath.Segments">
12533 <summary>Gets the separate path segments.</summary>
12534 </member>
12535 <member name="M:Gallio.Runner.Workspaces.ResourcePath.CombinedWith(Gallio.Runner.Workspaces.ResourcePath)">
12536 <summary>Combines this path with another one and returns the combination. If the other path is absolute then returns the other path otherwise appends the path to this one.</summary>
12537 <param name="other">The other path</param>
12538 <returns>The combined path</returns>
12539 </member>
12540 <member name="M:Gallio.Runner.Workspaces.ResourcePath.Equals(Gallio.Runner.Workspaces.ResourcePath)">
12541 <summary>Indicates whether this instance and a specified object are equal.</summary>
12542 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
12543 </member>
12544 <member name="M:Gallio.Runner.Workspaces.ResourcePath.Equals(System.Object)">
12545 <summary>Indicates whether this instance and a specified object are equal.</summary>
12546 <param name="obj">Another object to compare to.</param>
12547 <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
12548 </member>
12549 <member name="M:Gallio.Runner.Workspaces.ResourcePath.GetHashCode">
12550 <summary>Returns the hash code for this instance.</summary>
12551 <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
12552 </member>
12553 <member name="M:Gallio.Runner.Workspaces.ResourcePath.ToString">
12554 <summary>Returns the path.</summary>
12555 <returns>The path</returns>
12556 </member>
12557 <member name="M:Gallio.Runner.Workspaces.ResourcePath.op_Equality(Gallio.Runner.Workspaces.ResourcePath,Gallio.Runner.Workspaces.ResourcePath)">
12558 <summary>Returns true if the paths are equal.</summary>
12559 <param name="a">The first path</param>
12560 <param name="b">The second path</param>
12561 <returns>True if the paths are equal</returns>
12562 </member>
12563 <member name="M:Gallio.Runner.Workspaces.ResourcePath.op_Inequality(Gallio.Runner.Workspaces.ResourcePath,Gallio.Runner.Workspaces.ResourcePath)">
12564 <summary>Returns true if the paths are unequal.</summary>
12565 <param name="a">The first path</param>
12566 <param name="b">The second path</param>
12567 <returns>True if the paths are unequal</returns>
12568 </member>
12569 <member name="T:Gallio.Runtime.CorrelatedExceptionEventArgs">
12570 <summary>Describes an exception that is to be reported. This class cannot be inherited.</summary>
12571 </member>
12572 <member name="P:Gallio.Runtime.CorrelatedExceptionEventArgs.Exception">
12573 <summary>Gets the exception that occurred.</summary>
12574 </member>
12575 <member name="P:Gallio.Runtime.CorrelatedExceptionEventArgs.IsRecursive">
12576 <summary>Returns true if a second exception occurred while attempting to report a previous exception on the same thread.</summary>
12577 </member>
12578 <member name="P:Gallio.Runtime.CorrelatedExceptionEventArgs.Message">
12579 <summary>Gets the message associated with the exception.</summary>
12580 </member>
12581 <member name="P:Gallio.Runtime.CorrelatedExceptionEventArgs.ReporterStackTrace">
12582 <summary>Gets the stack trace of the code that called to report the exception or null if not available.</summary>
12583 </member>
12584 <member name="M:Gallio.Runtime.CorrelatedExceptionEventArgs.AddCorrelationMessage(System.String)">
12585 <summary>Adds a message that serves to describe the context in which the exception occurred. The <see cref="P:Gallio.Runtime.CorrelatedExceptionEventArgs.Message" /> will be augmented with these details.</summary>
12586 <param name="correlationMessage">The correlation message to append</param>
12587 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="correlationMessage" /> is null</exception>
12588 </member>
12589 <member name="M:Gallio.Runtime.CorrelatedExceptionEventArgs.GetDescription">
12590 <summary>Formats a description of the exception to a string like: "Message\nException\nReported by: ReporterStackTrace".</summary>
12591 <returns>The formatted string</returns>
12592 </member>
12593 <member name="T:Gallio.Runtime.GallioSectionHandler">
12594 <summary>A configuration section handler for Gallio used to register Gallio components in applications and in plugins.</summary>
12595 </member>
12596 <member name="F:Gallio.Runtime.GallioSectionHandler.SectionName">
12597 <summary>The name of the Gallio section: "gallio". This field is constant and read-only.</summary>
12598 </member>
12599 <member name="M:Gallio.Runtime.GallioSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
12600 <summary>Creates a configuration section handler.</summary>
12601 <param name="parent">Parent object.</param>
12602 <param name="configContext">Configuration context object.</param>
12603 <param name="section">Section XML node.</param>
12604 <returns>The created section handler object.</returns>
12605 </member>
12606 <member name="T:Gallio.Runtime.InstallationConfiguration">
12607 <summary>Describes the configuration of a Gallio installation.</summary>
12608 </member>
12609 <member name="P:Gallio.Runtime.InstallationConfiguration.AdditionalPluginDirectories">
12610 <summary>Gets the list of additional plugin directories.</summary>
12611 </member>
12612 <member name="M:Gallio.Runtime.InstallationConfiguration.LoadFromRegistry">
12613 <summary>Loads the configuration from the registry.</summary>
12614 <returns>The installed configuration</returns>
12615 </member>
12616 <member name="T:Gallio.Runtime.RuntimeAccessor">
12617 <summary>Provides functions for obtaining runtime services. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
12618 </member>
12619 <member name="P:Gallio.Runtime.RuntimeAccessor.InstallationPath">
12620 <summary>Gets the path of the Gallio installation.</summary>
12621 <value>The installation path</value>
12622 </member>
12623 <member name="P:Gallio.Runtime.RuntimeAccessor.Instance">
12624 <summary>Gets the runtime instance.</summary>
12625 <exception cref="T:System.InvalidOperationException">Thrown if the runtime has not been initialized</exception>
12626 </member>
12627 <member name="P:Gallio.Runtime.RuntimeAccessor.IsInitialized">
12628 <summary>Returns true if the runtime has been initialized.</summary>
12629 </member>
12630 <member name="P:Gallio.Runtime.RuntimeAccessor.Logger">
12631 <summary>Gets the runtime's logger, or a <see cref="T:Gallio.Runtime.Logging.NullLogger" /> if the runtime is not initialized.</summary>
12632 </member>
12633 <member name="M:Gallio.Runtime.RuntimeAccessor.SetRuntime(Gallio.Runtime.IRuntime)">
12634 <summary>
12635 <para> Sets the runtime instance. </para>
12636 <para> This method should only be used by applications that host Gallio and not generally by client code. </para>
12637 </summary>
12638 <param name="runtime">The runtime instance, or null if none</param>
12639 </member>
12640 <member name="E:Gallio.Runtime.RuntimeAccessor.InstanceChanged">
12641 <summary>The event dispatched when the value of the current runtime <see cref="P:Gallio.Runtime.RuntimeAccessor.Instance" /> changes.</summary>
12642 </member>
12643 <member name="T:Gallio.Runtime.RuntimeBootstrap">
12644 <summary>Initializes and shuts down the runtime. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
12645 </member>
12646 <member name="M:Gallio.Runtime.RuntimeBootstrap.Initialize(Gallio.Runtime.RuntimeSetup,Gallio.Runtime.Logging.ILogger)">
12647 <summary>
12648 <para> Initializes the runtime. </para>
12649 <para> Loads plugins and initalizes the runtime component model. The specifics of the system can be configured by editing the appropriate *.plugin files to register new components and facilities as required. </para>
12650 </summary>
12651 <param name="setup">The runtime setup parameters</param>
12652 <param name="logger">The runtime logging service</param>
12653 <returns>An object that when disposed automatically calls <see cref="M:Gallio.Runtime.RuntimeBootstrap.Shutdown" />. This is particularly useful in combination with the C# "using" statement or its equivalent.</returns>
12654 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="setup" /> or <paramref name="logger" /> is null</exception>
12655 <exception cref="T:System.InvalidOperationException">Thrown if the runtime has already been initialized</exception>
12656 </member>
12657 <member name="M:Gallio.Runtime.RuntimeBootstrap.Shutdown">
12658 <summary>Shuts down the runtime if it is currently initialized. Does nothing if the runtime has not been initialized.</summary>
12659 </member>
12660 <member name="T:Gallio.Runtime.RuntimeDetection">
12661 <summary>Provides functions for detecting CLR runtime parameters.</summary>
12662 </member>
12663 <member name="P:Gallio.Runtime.RuntimeDetection.IsUsingMono">
12664 <summary>Returns true if the application is running within the Mono runtime.</summary>
12665 </member>
12666 <member name="T:Gallio.Runtime.RuntimeRegisteredComponentResolver`1">
12667 <summary>A default implementation of <see cref="T:Gallio.Runtime.IRegisteredComponentResolver`1" /> based on <see cref="T:Gallio.Runtime.IRuntime" />.</summary>
12668 </member>
12669 <member name="M:Gallio.Runtime.RuntimeRegisteredComponentResolver`1.GetNames">
12670 <summary>Gets the names of all registered components.</summary>
12671 <returns>The list of registered component names</returns>
12672 </member>
12673 <member name="M:Gallio.Runtime.RuntimeRegisteredComponentResolver`1.Resolve(System.String)">
12674 <summary>Resolves a registered component by name.</summary>
12675 <param name="name">The name of the registered component, matched case-insensitively</param>
12676 <returns>The test runner factory, or null if none exist with the specified name</returns>
12677 </member>
12678 <member name="T:Gallio.Runtime.RuntimeSetup">
12679 <summary>Provides configuration parameters for setting up the <see cref="T:Gallio.Runtime.RuntimeAccessor" />. This class cannot be inherited.</summary>
12680 </member>
12681 <member name="P:Gallio.Runtime.RuntimeSetup.ConfigurationFilePath">
12682 <summary>Gets or sets the path of the primary configuration file to be loaded by the runtime (if it exists). This is useful when Gallio is launched by a library instead of as a standalone executable.</summary>
12683 <value>The primary configuration file path. Default is null to load the configuration from the <see cref="T:System.AppDomain" />.</value>
12684 </member>
12685 <member name="P:Gallio.Runtime.RuntimeSetup.InstallationConfiguration">
12686 <summary>Gets or sets the installation configuration, or null to determine it automatically.</summary>
12687 <value>The installation configuration. Default is <c>null</c>.</value>
12688 </member>
12689 <member name="P:Gallio.Runtime.RuntimeSetup.InstallationPath">
12690 <summary>Gets or sets the installation path, or null to determine it automatically based on the location of the primary runtime assemblies. The installation path specifies where the standard runtime plugins are located.</summary>
12691 <value>The installation path. Default is <c>null</c>.</value>
12692 </member>
12693 <member name="P:Gallio.Runtime.RuntimeSetup.PluginDirectories">
12694 <summary>Gets list of relative or absolute paths of directories to be searched for plugin configuration files in addition to the primary Gallio directories.</summary>
12695 </member>
12696 <member name="M:Gallio.Runtime.RuntimeSetup.Canonicalize(System.String)">
12697 <summary>Makes all paths in this instance absolute.</summary>
12698 <param name="baseDirectory">The base directory for resolving relative paths, or null to use the current directory</param>
12699 </member>
12700 <member name="M:Gallio.Runtime.RuntimeSetup.Copy">
12701 <summary>Creates a deep copy of the runtime setup parameters.</summary>
12702 <returns>The copy</returns>
12703 </member>
12704 <member name="M:Gallio.Runtime.RuntimeSetup.SetConfigurationFilePathFromAssembly(System.Reflection.Assembly)">
12705 <summary>Sets the configuration file path to the *.config file associated with an assembly.</summary>
12706 <param name="assembly">The assembly</param>
12707 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
12708 </member>
12709 <member name="T:Gallio.Runtime.UnhandledExceptionPolicy">
12710 <summary>
12711 <para> This class provides a mechanism for reporting unhandled exceptions when the infrastructure is otherwise unable to deal with them locally. </para>
12712 <para> The methods of this class should be considered as the last resort for reporting failures that might otherwise cause the system to crash. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
12713 </member>
12714 <member name="P:Gallio.Runtime.UnhandledExceptionPolicy.HasReportUnhandledExceptionHandler">
12715 <summary>
12716 <para> Returns true if there is at least one handler registered for <see cref="E:Gallio.Runtime.UnhandledExceptionPolicy.ReportUnhandledException" />. </para>
12717 <para> This property can be used to avoid duplicate exception reporting if some other system component has already registered a handler. </para>
12718 </summary>
12719 </member>
12720 <member name="M:Gallio.Runtime.UnhandledExceptionPolicy.Report(System.String,System.Exception)">
12721 <summary>Reports an unhandled exception.</summary>
12722 <param name="message">A message to explain how the exception was intercepted</param>
12723 <param name="unhandledException">The unhandled exception</param>
12724 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="message" /> or <paramref name="unhandledException" /> is null</exception>
12725 </member>
12726 <member name="E:Gallio.Runtime.UnhandledExceptionPolicy.CorrelateUnhandledException">
12727 <summary>Adds or removes an event handler that is notified when unhandled exceptions occur and is given a chance to add additional information the event about the context in which the exception occurred.</summary>
12728 </member>
12729 <member name="E:Gallio.Runtime.UnhandledExceptionPolicy.ReportUnhandledException">
12730 <summary>Adds or removes an event handler that is notified when unhandled exceptions occur.</summary>
12731 </member>
12732 <member name="T:Gallio.Runtime.IRegisteredComponent">
12733 <summary>A registered component is a component that has a name and description.</summary>
12734 </member>
12735 <member name="P:Gallio.Runtime.IRegisteredComponent.Description">
12736 <summary>Gets the human-readable description of the component.</summary>
12737 </member>
12738 <member name="P:Gallio.Runtime.IRegisteredComponent.Name">
12739 <summary>Gets the unique name of the component.</summary>
12740 </member>
12741 <member name="T:Gallio.Runtime.IRegisteredComponentResolver`1">
12742 <summary>A registered service resolver looks up <see cref="T:Gallio.Runtime.IRegisteredComponent" /> components by name.</summary>
12743 </member>
12744 <member name="M:Gallio.Runtime.IRegisteredComponentResolver`1.GetNames">
12745 <summary>Gets the names of all registered components.</summary>
12746 <returns>The list of registered component names</returns>
12747 </member>
12748 <member name="M:Gallio.Runtime.IRegisteredComponentResolver`1.Resolve(System.String)">
12749 <summary>Resolves a registered component by name.</summary>
12750 <param name="name">The name of the registered component, matched case-insensitively</param>
12751 <returns>The test runner factory, or null if none exist with the specified name</returns>
12752 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="name" /> is null</exception>
12753 </member>
12754 <member name="T:Gallio.Runtime.IRuntime">
12755 <summary>
12756 <para> The runtime is instantiated within the test runner to provide a suitable hosting environment for test enumeration and execution. </para>
12757 <para> The runtime provides services to support the Gallio test automation platform. New services are typically registered by adding them to plugin configuration files. </para>
12758 </summary>
12759 </member>
12760 <member name="M:Gallio.Runtime.IRuntime.GetRuntimeSetup">
12761 <summary>Gets a deep copy of the runtime setup used to configure this runtime.</summary>
12762 <returns>The runtime setup</returns>
12763 </member>
12764 <member name="M:Gallio.Runtime.IRuntime.Initialize(Gallio.Runtime.Logging.ILogger)">
12765 <summary>Initializes the runtime.</summary>
12766 <param name="logger">The runtime logging service</param>
12767 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="logger" /> is null</exception>
12768 </member>
12769 <member name="M:Gallio.Runtime.IRuntime.MapUriToLocalPath(System.Uri)">
12770 <summary>Maps a Uri to a local path.</summary>
12771 <param name="uri">The uri to map</param>
12772 <returns>The local path</returns>
12773 <exception cref="T:System.InvalidOperationException">Thrown if <paramref name="uri" /> cannot be mapped to a local path</exception>
12774 </member>
12775 <member name="M:Gallio.Runtime.IRuntime.Resolve``1">
12776 <summary>Resolves a reference to a component that implements the specified service.</summary>
12777 <typeparam name="T">The service type</typeparam>
12778 <returns>A component that implements the service</returns>
12779 </member>
12780 <member name="M:Gallio.Runtime.IRuntime.Resolve(System.Type)">
12781 <summary>Resolves a reference to a component that implements the specified service.</summary>
12782 <param name="service">The service type</param>
12783 <returns>A component that implements the service</returns>
12784 <exception cref="T:System.Exception">Thrown if the service could not be resolved</exception>
12785 </member>
12786 <member name="M:Gallio.Runtime.IRuntime.ResolveAll``1">
12787 <summary>Resolves references to all components that implement the specified service.</summary>
12788 <typeparam name="T">The service type</typeparam>
12789 <returns>An array of components that implement the service</returns>
12790 </member>
12791 <member name="T:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute">
12792 <summary>Allows control of command line parsing. Attach this attribute to instance fields of types used as the destination of command line argument parsing.</summary>
12793 </member>
12794 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.Description">
12795 <summary>The description of the argument.</summary>
12796 </member>
12797 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.Flags">
12798 <summary>The error checking to be done on the argument.</summary>
12799 </member>
12800 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.IsDefaultLongName">
12801 <summary>Returns true if the argument did not have an explicit long name specified.</summary>
12802 </member>
12803 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.IsDefaultShortName">
12804 <summary>Returns true if the argument did not have an explicit short name specified.</summary>
12805 </member>
12806 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.LongName">
12807 <summary>The long name of the argument.</summary>
12808 </member>
12809 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.ShortName">
12810 <summary>The short name of the argument.</summary>
12811 </member>
12812 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.Synonyms">
12813 <summary>Gets or sets an array of additional synonyms that are silently accepted.</summary>
12814 </member>
12815 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineArgumentAttribute.ValueLabel">
12816 <summary>The description of the argument value.</summary>
12817 </member>
12818 <member name="T:Gallio.Runtime.ConsoleSupport.CommandLineArgumentParser">
12819 <summary>Parser for command line arguments.</summary>
12820 </member>
12821 <member name="M:Gallio.Runtime.ConsoleSupport.CommandLineArgumentParser.Parse(System.String[],System.Object,Gallio.Runtime.ConsoleSupport.CommandLineErrorReporter)">
12822 <summary>Parses an argument list.</summary>
12823 <param name="args">The arguments to parse.</param>
12824 <param name="destination">The destination of the parsed arguments.</param>
12825 <param name="reporter">The error reporter</param>
12826 <returns>True if no parse errors were encountered.</returns>
12827 </member>
12828 <member name="M:Gallio.Runtime.ConsoleSupport.CommandLineArgumentParser.ShowUsage(Gallio.Runtime.ConsoleSupport.CommandLineOutput)">
12829 <summary>Prints a user friendly usage string describing the command line argument syntax.</summary>
12830 <param name="output">The command line output</param>
12831 </member>
12832 <member name="T:Gallio.Runtime.ConsoleSupport.CommandLineOutput">
12833 <summary>Responsible for creating output.</summary>
12834 </member>
12835 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineOutput.LineLength">
12836 <summary>Maximum line length allowed before the text will be wraped.</summary>
12837 </member>
12838 <member name="P:Gallio.Runtime.ConsoleSupport.CommandLineOutput.Output">
12839 <summary>Output Stream</summary>
12840 </member>
12841 <member name="M:Gallio.Runtime.ConsoleSupport.CommandLineOutput.NewLine">
12842 <summary>Prints out a new line.</summary>
12843 </member>
12844 <member name="M:Gallio.Runtime.ConsoleSupport.CommandLineOutput.PrintArgumentHelp(System.String,System.String,System.String,System.String,System.String,System.Type)">
12845 <summary>Prints help for a specified argument.</summary>
12846 <param name="prefix">The argument prefix, such as "/", or null or empty if none.</param>
12847 <param name="longName">The argument's long name, or null or empty if none.</param>
12848 <param name="shortName">The argument's short short name, or null or empty if none.</param>
12849 <param name="description">The argument's description, or null or empty if none.</param>
12850 <param name="valueLabel">The argument's value label such as "path", or null or empty if none.</param>
12851 <param name="valueType">The argument's value type, or null if none.</param>
12852 </member>
12853 <member name="M:Gallio.Runtime.ConsoleSupport.CommandLineOutput.PrintText(System.String,System.Int32)">
12854 <summary>Outputs text with specified indentation.</summary>
12855 <param name="text">Text to output possibly including newlines.</param>
12856 <param name="indentation">Number of blank spaces to indent the first line.</param>
12857 </member>
12858 <member name="M:Gallio.Runtime.ConsoleSupport.CommandLineOutput.PrintText(System.String,System.Int32,System.Int32)">
12859 <summary>Outputs text with specified indentation.</summary>
12860 <param name="text">Text to output possibly including newlines.</param>
12861 <param name="indentation">Number of blank spaces to indent all but the first line.</param>
12862 <param name="firstLineIndent">Number of blank spaces to indent the first line.</param>
12863 </member>
12864 <member name="T:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1">
12865 <summary>A base class for implementing robust console applications. The subclass should provide a Main method that creates an instance and calls <see cref="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.Run(Gallio.Runtime.ConsoleSupport.IRichConsole,System.String[])" />. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
12866 </member>
12867 <member name="P:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.ArgumentParser">
12868 <summary>Gets the argument parser.</summary>
12869 </member>
12870 <member name="P:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.Arguments">
12871 <summary>Gets or sets the parsed command-line arguments. These argument may be modified prior to calling <see cref="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.ParseArguments(System.String[])" /> to override the initial argument settings.</summary>
12872 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
12873 </member>
12874 <member name="P:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.CommandLineOutput">
12875 <summary>Gets the command-line output formatter, or null if the program is not running.</summary>
12876 </member>
12877 <member name="P:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.Console">
12878 <summary>Gets the console, or null if the program is not running.</summary>
12879 </member>
12880 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.Dispose">
12881 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
12882 </member>
12883 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.HandleFatalException(System.Exception)">
12884 <summary>Handles a fatal exception that escaped the <see cref="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.RunImpl(System.String[])" /> method.</summary>
12885 <param name="ex">The exception</param>
12886 <returns>The exit code to return</returns>
12887 </member>
12888 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.ParseArguments(System.String[])">
12889 <summary>Parses the arguments.</summary>
12890 <param name="args">The command-line arguments</param>
12891 <returns>True if the arguments were parsed successfully</returns>
12892 </member>
12893 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.Run(Gallio.Runtime.ConsoleSupport.IRichConsole,System.String[])">
12894 <summary>Runs the program.</summary>
12895 <param name="console">The console</param>
12896 <param name="args">The command-line arguments</param>
12897 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="console" /> or <paramref name="args" /> is null</exception>
12898 <exception cref="T:System.InvalidOperationException">Thrown if the program has already started running</exception>
12899 </member>
12900 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.RunImpl(System.String[])">
12901 <summary>Runs the program.</summary>
12902 <param name="args">The command-line arguments</param>
12903 <returns>The program exit code</returns>
12904 </member>
12905 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.ShowErrorMessage(System.String)">
12906 <summary>Displays an error message to the console.</summary>
12907 <param name="message">The error message</param>
12908 </member>
12909 <member name="M:Gallio.Runtime.ConsoleSupport.ConsoleProgram`1.ShowHelp">
12910 <summary>Displays help text to the console.</summary>
12911 </member>
12912 <member name="T:Gallio.Runtime.ConsoleSupport.DefaultCommandLineArgumentAttribute">
12913 <summary>Indicates that this argument is the default argument. '/' or '-' prefix only the argument value is specified.</summary>
12914 </member>
12915 <member name="T:Gallio.Runtime.ConsoleSupport.NativeConsole">
12916 <summary>
12917 <para> An implementation of <see cref="T:Gallio.Runtime.ConsoleSupport.IRichConsole" /> that targets the native <see cref="T:System.Console" />. </para>
12918 <para> This implementation offers protection against redirection of the <see cref="P:System.Console.Out" /> and <see cref="P:System.Console.Error" /> streams. This object will continue to refer to the standard output and error streams even if they are redirected after its initialization. </para>This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
12919 </member>
12920 <member name="F:Gallio.Runtime.ConsoleSupport.NativeConsole.ForceQuitKeyPressRepetitions">
12921 <summary>The application will forcibly terminate if the cancel key is pressed <see cref="F:Gallio.Runtime.ConsoleSupport.NativeConsole.ForceQuitKeyPressRepetitions" /> times within no more than <see cref="F:Gallio.Runtime.ConsoleSupport.NativeConsole.ForceQuitKeyPressTimeoutMilliseconds" /> milliseconds. This field is constant and read-only.</summary>
12922 </member>
12923 <member name="F:Gallio.Runtime.ConsoleSupport.NativeConsole.ForceQuitKeyPressTimeoutMilliseconds">
12924 <summary>The application will forcibly terminate if the cancel key is pressed <see cref="F:Gallio.Runtime.ConsoleSupport.NativeConsole.ForceQuitKeyPressRepetitions" /> times within no more than <see cref="F:Gallio.Runtime.ConsoleSupport.NativeConsole.ForceQuitKeyPressTimeoutMilliseconds" /> milliseconds. This field is constant and read-only.</summary>
12925 </member>
12926 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.CursorLeft">
12927 <summary>Gets the zero-based column index the cursor is located at.</summary>
12928 </member>
12929 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.CursorTop">
12930 <summary>Gets the zero-based row index the cursor is located at.</summary>
12931 </member>
12932 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.Error">
12933 <summary>Gets the error stream writer.</summary>
12934 </member>
12935 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.FooterVisible">
12936 <summary>Gets or sets whether the footer is visible.</summary>
12937 </member>
12938 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.ForegroundColor">
12939 <summary>Gets or sets the foreground color of the console.</summary>
12940 </member>
12941 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.Instance">
12942 <summary>Gets the singleton instance of the native console.</summary>
12943 </member>
12944 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsCancelationEnabled">
12945 <summary>Gets or sets whether the cancelation function is enabled. If false, cancelation events will not be sent.</summary>
12946 </member>
12947 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsCanceled">
12948 <summary>
12949 <para> Gets or sets whether cancelation has occurred. </para>
12950 <para> The <see cref="E:Gallio.Runtime.ConsoleSupport.NativeConsole.Cancel" /> event handlers will be called when the value of <see cref="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsCanceled" /> transitions from false to true. The value will remain true unless it is reset. </para>
12951 </summary>
12952 </member>
12953 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsRedirected">
12954 <summary>Returns true if the console is being redirected and therefore the output should be as simple as possible. In particular, it may not be possible to set the cursor position, console color or other properties.</summary>
12955 </member>
12956 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.Out">
12957 <summary>Gets the output stream writer.</summary>
12958 </member>
12959 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.SyncRoot">
12960 <summary>Gets a synchronization object that a task can lock to ensure that it is the only thread currently accessing the console.</summary>
12961 </member>
12962 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.Title">
12963 <summary>Gets or sets the console's title.</summary>
12964 </member>
12965 <member name="P:Gallio.Runtime.ConsoleSupport.NativeConsole.Width">
12966 <summary>Gets the width of the console. Returns 80 if the console is being redirected.</summary>
12967 </member>
12968 <member name="M:Gallio.Runtime.ConsoleSupport.NativeConsole.ResetColor">
12969 <summary>Resets the console colors.</summary>
12970 </member>
12971 <member name="M:Gallio.Runtime.ConsoleSupport.NativeConsole.SetFooter(Gallio.Action,Gallio.Action)">
12972 <summary>Sets a pair of delegates that together display a footer at the bottom of the console. The footer can be hidden so that new text can be written from that point. Removes the previous footer and displays the new one automatically if the footer is visible.</summary>
12973 <param name="showFooter">A delegate to display the footer</param>
12974 <param name="hideFooter">A delegate to hide the footer, leaving the custor at the beginning of the line where the footer used to begin</param>
12975 </member>
12976 <member name="M:Gallio.Runtime.ConsoleSupport.NativeConsole.Write(System.Char)">
12977 <summary>Writes a character.</summary>
12978 <param name="c">The character to write</param>
12979 </member>
12980 <member name="M:Gallio.Runtime.ConsoleSupport.NativeConsole.Write(System.String)">
12981 <summary>Writes a string.</summary>
12982 <param name="str">The string to write</param>
12983 </member>
12984 <member name="M:Gallio.Runtime.ConsoleSupport.NativeConsole.WriteLine">
12985 <summary>Writes a new line.</summary>
12986 </member>
12987 <member name="M:Gallio.Runtime.ConsoleSupport.NativeConsole.WriteLine(System.String)">
12988 <summary>Writes a string followed by a new line.</summary>
12989 <param name="str">The string to write</param>
12990 </member>
12991 <member name="E:Gallio.Runtime.ConsoleSupport.NativeConsole.Cancel">
12992 <summary>
12993 <para> The event raised when console cancelation occurs. </para>
12994 <para> If the console cancelation signal is already set when an event handler is added, the event handler will be automatically invoked. </para>
12995 </summary>
12996 </member>
12997 <member name="T:Gallio.Runtime.ConsoleSupport.RichConsoleLogger">
12998 <summary>A logger that sends all output to the console and displays messages in color according to their status.</summary>
12999 </member>
13000 <member name="M:Gallio.Runtime.ConsoleSupport.RichConsoleLogger.LogImpl(Gallio.Runtime.Logging.LogSeverity,System.String,System.Exception)">
13001 <summary>Logs a message.</summary>
13002 <param name="severity">The log message severity</param>
13003 <param name="message">The log message, not null</param>
13004 <param name="exception">The associated exception, or null if none</param>
13005 </member>
13006 <member name="T:Gallio.Runtime.ConsoleSupport.IRichConsole">
13007 <summary>
13008 <para> A rich console provides a number of services that enable a console to be shared among several cooperating tasks that are independently updating different portions of the display. One task can be writing to the main body of text while another updates a footer. </para>
13009 <para> The rich console also supports intelligent cancelation of tasks. When the user presses control-C, a cancelation flag is set and an event handler is invoked. Tasks can check for the presence of the cancelation flag even if they started execution after the control-C itself occurred. This provides protection against dropped cancelation requests due to race conditions. If the user presses control-C 3 times within a short interval the rich console assumes that the program has become non-responsive and terminates it. </para>
13010 <para> Finally, the rich console interface can be mocked for testing purposes unlike the standard <see cref="T:System.Console" /> API. </para>
13011 </summary>
13012 </member>
13013 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.CursorLeft">
13014 <summary>Gets the zero-based column index the cursor is located at.</summary>
13015 <exception cref="T:System.IO.IOException">Thrown if <see cref="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsRedirected" /> is true</exception>
13016 </member>
13017 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.CursorTop">
13018 <summary>Gets the zero-based row index the cursor is located at.</summary>
13019 <exception cref="T:System.IO.IOException">Thrown if <see cref="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsRedirected" /> is true</exception>
13020 </member>
13021 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.Error">
13022 <summary>Gets the error stream writer.</summary>
13023 </member>
13024 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.FooterVisible">
13025 <summary>Gets or sets whether the footer is visible.</summary>
13026 </member>
13027 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.ForegroundColor">
13028 <summary>Gets or sets the foreground color of the console.</summary>
13029 </member>
13030 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.IsCancelationEnabled">
13031 <summary>Gets or sets whether the cancelation function is enabled. If false, cancelation events will not be sent.</summary>
13032 </member>
13033 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.IsCanceled">
13034 <summary>
13035 <para> Gets or sets whether cancelation has occurred. </para>
13036 <para> The <see cref="E:Gallio.Runtime.ConsoleSupport.NativeConsole.Cancel" /> event handlers will be called when the value of <see cref="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsCanceled" /> transitions from false to true. The value will remain true unless it is reset. </para>
13037 </summary>
13038 </member>
13039 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.IsRedirected">
13040 <summary>Returns true if the console is being redirected and therefore the output should be as simple as possible. In particular, it may not be possible to set the cursor position, console color or other properties.</summary>
13041 </member>
13042 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.Out">
13043 <summary>Gets the output stream writer.</summary>
13044 </member>
13045 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.SyncRoot">
13046 <summary>Gets a synchronization object that a task can lock to ensure that it is the only thread currently accessing the console.</summary>
13047 </member>
13048 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.Title">
13049 <summary>Gets or sets the console's title.</summary>
13050 <exception cref="T:System.IO.IOException">Thrown if <see cref="P:Gallio.Runtime.ConsoleSupport.NativeConsole.IsRedirected" /> is true</exception>
13051 </member>
13052 <member name="P:Gallio.Runtime.ConsoleSupport.IRichConsole.Width">
13053 <summary>Gets the width of the console. Returns 80 if the console is being redirected.</summary>
13054 </member>
13055 <member name="M:Gallio.Runtime.ConsoleSupport.IRichConsole.ResetColor">
13056 <summary>Resets the console colors.</summary>
13057 </member>
13058 <member name="M:Gallio.Runtime.ConsoleSupport.IRichConsole.SetFooter(Gallio.Action,Gallio.Action)">
13059 <summary>Sets a pair of delegates that together display a footer at the bottom of the console. The footer can be hidden so that new text can be written from that point. Removes the previous footer and displays the new one automatically if the footer is visible.</summary>
13060 <param name="showFooter">A delegate to display the footer</param>
13061 <param name="hideFooter">A delegate to hide the footer, leaving the custor at the beginning of the line where the footer used to begin</param>
13062 </member>
13063 <member name="M:Gallio.Runtime.ConsoleSupport.IRichConsole.Write(System.Char)">
13064 <summary>Writes a character.</summary>
13065 <param name="c">The character to write</param>
13066 </member>
13067 <member name="M:Gallio.Runtime.ConsoleSupport.IRichConsole.Write(System.String)">
13068 <summary>Writes a string.</summary>
13069 <param name="str">The string to write</param>
13070 </member>
13071 <member name="M:Gallio.Runtime.ConsoleSupport.IRichConsole.WriteLine">
13072 <summary>Writes a new line.</summary>
13073 </member>
13074 <member name="M:Gallio.Runtime.ConsoleSupport.IRichConsole.WriteLine(System.String)">
13075 <summary>Writes a string followed by a new line.</summary>
13076 <param name="str">The string to write</param>
13077 </member>
13078 <member name="E:Gallio.Runtime.ConsoleSupport.IRichConsole.Cancel">
13079 <summary>
13080 <para> The event raised when console cancelation occurs. </para>
13081 <para> If the console cancelation signal is already set when an event handler is added, the event handler will be automatically invoked. </para>
13082 </summary>
13083 </member>
13084 <member name="T:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags">
13085 <summary>Used to control parsing of command line arguments.</summary>
13086 </member>
13087 <member name="F:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags.Required">
13088 <summary>Indicates that this field is required. An error will be displayed if it is not present when parsing arguments.</summary>
13089 </member>
13090 <member name="F:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags.Unique">
13091 <summary>Only valid in conjunction with Multiple. Duplicate values will result in an error.</summary>
13092 </member>
13093 <member name="F:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags.Multiple">
13094 <summary>Inidicates that the argument may be specified more than once. Only valid if the argument is a collection</summary>
13095 </member>
13096 <member name="F:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags.AtMostOnce">
13097 <summary>The default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once.</summary>
13098 </member>
13099 <member name="F:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags.LastOccurrenceWins">
13100 <summary>For non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list.</summary>
13101 </member>
13102 <member name="F:Gallio.Runtime.ConsoleSupport.CommandLineArgumentFlags.MultipleUnique">
13103 <summary>The default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported.</summary>
13104 </member>
13105 <member name="T:Gallio.Runtime.ConsoleSupport.CommandLineErrorReporter">
13106 <summary>A delegate used in error reporting.</summary>
13107 </member>
13108 <member name="T:Gallio.Runtime.ConsoleSupport.ResponseFileReader">
13109 <summary>Reads the contents of a response file.</summary>
13110 <param name="responseFileName">The response file name, never null</param>
13111 </member>
13112 <member name="T:Gallio.Runtime.Hosting.AppDomainUtils">
13113 <summary>Utilities for working with AppDomains. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13114 </member>
13115 <member name="M:Gallio.Runtime.Hosting.AppDomainUtils.CreateAppDomain(System.String,System.String,System.String,System.Boolean)">
13116 <summary>Creates an AppDomain.</summary>
13117 <param name="applicationName">The application name for the new AppDomain, or null if none</param>
13118 <param name="applicationBaseDirectory">The application base directory for the new AppDomain, or null to use the current one</param>
13119 <param name="configurationFile">The configuration file for the new AppDomain, or null to use the current one</param>
13120 <param name="enableShadowCopy">If true, enables shadow copying within the AppDomain</param>
13121 <returns>The new AppDomain</returns>
13122 </member>
13123 <member name="T:Gallio.Runtime.Hosting.BaseHost">
13124 <summary>Base implementation of <see cref="T:Gallio.Runtime.Hosting.IHost" /> that performs argument validation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13125 </member>
13126 <member name="P:Gallio.Runtime.Hosting.BaseHost.HostService">
13127 <summary>Gets an reference to the host service, or null if not connected.</summary>
13128 </member>
13129 <member name="P:Gallio.Runtime.Hosting.BaseHost.HostSetup">
13130 <summary>Gets the internal host setup information without copying it.</summary>
13131 </member>
13132 <member name="P:Gallio.Runtime.Hosting.BaseHost.IsConnected">
13133 <summary>Returns true if the host is connected.</summary>
13134 </member>
13135 <member name="P:Gallio.Runtime.Hosting.BaseHost.IsLocal">
13136 <summary>Returns true if the host is local to the creating AppDomain, false if it must be accessed across a remote channel. A local host might not support all configuration options.</summary>
13137 </member>
13138 <member name="P:Gallio.Runtime.Hosting.BaseHost.Logger">
13139 <summary>Gets the logger.</summary>
13140 </member>
13141 <member name="M:Gallio.Runtime.Hosting.BaseHost.AcquireHostService">
13142 <summary>Gets the host service.</summary>
13143 <returns>The host service, or null if the host service was not available</returns>
13144 </member>
13145 <member name="M:Gallio.Runtime.Hosting.BaseHost.Connect">
13146 <summary>Initializes the host and connects to the host service.</summary>
13147 <exception cref="T:System.InvalidOperationException">Thrown if the host has already been initialized</exception>
13148 <exception cref="T:System.ObjectDisposedException">Thrown if the host has been disposed</exception>
13149 <exception cref="T:Gallio.Runtime.Hosting.HostException">Thrown if an exception occurred while connecting to the host</exception>
13150 </member>
13151 <member name="M:Gallio.Runtime.Hosting.BaseHost.Disconnect">
13152 <summary>Disconnects the host.</summary>
13153 </member>
13154 <member name="M:Gallio.Runtime.Hosting.BaseHost.Dispose">
13155 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
13156 </member>
13157 <member name="M:Gallio.Runtime.Hosting.BaseHost.Dispose(System.Boolean)">
13158 <summary>Disposes the host.</summary>
13159 <param name="disposing">True if disposing</param>
13160 </member>
13161 <member name="M:Gallio.Runtime.Hosting.BaseHost.GetHostService">
13162 <summary>Gets a host service that can be used to perform operations within the host's environment.</summary>
13163 </member>
13164 <member name="M:Gallio.Runtime.Hosting.BaseHost.GetHostSetup">
13165 <summary>Gets a deep copy of the host setup information.</summary>
13166 </member>
13167 <member name="M:Gallio.Runtime.Hosting.BaseHost.NotifyDisconnected">
13168 <summary>Sets the state of the host to disconnected and notifies clients.</summary>
13169 </member>
13170 <member name="M:Gallio.Runtime.Hosting.BaseHost.ReleaseHostService(Gallio.Runtime.Hosting.IHostService)">
13171 <summary>Releases the host service.</summary>
13172 <param name="hostService">The host service that is being released, not null</param>
13173 </member>
13174 <member name="M:Gallio.Runtime.Hosting.BaseHost.ThrowIfDisposed">
13175 <summary>Throws an exception if the host has been disposed.</summary>
13176 </member>
13177 <member name="E:Gallio.Runtime.Hosting.BaseHost.Disconnected">
13178 <summary>An event that is raised when the host is disconnected. If the host has already been disconnected, the event is fired immediately.</summary>
13179 </member>
13180 <member name="T:Gallio.Runtime.Hosting.BaseHostFactory">
13181 <summary>An abstract base class for host factories. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13182 </member>
13183 <member name="M:Gallio.Runtime.Hosting.BaseHostFactory.CreateHost(Gallio.Runtime.Hosting.HostSetup,Gallio.Runtime.Logging.ILogger)">
13184 <summary>Creates a host instance.</summary>
13185 <param name="hostSetup">The host setup</param>
13186 <param name="logger">The logger for host message output</param>
13187 <returns>The newly created host</returns>
13188 </member>
13189 <member name="M:Gallio.Runtime.Hosting.BaseHostFactory.CreateHostImpl(Gallio.Runtime.Hosting.HostSetup,Gallio.Runtime.Logging.ILogger)">
13190 <summary>Creates the host.</summary>
13191 <param name="hostSetup">The canonicalized host setup, non-null</param>
13192 <param name="logger">The logger, non-null</param>
13193 <returns>The host</returns>
13194 </member>
13195 <member name="T:Gallio.Runtime.Hosting.BaseHostService">
13196 <summary>Base implementation of <see cref="T:Gallio.Runtime.Hosting.IHostService" /> that performs argument validation. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13197 </member>
13198 <member name="M:Gallio.Runtime.Hosting.BaseHostService.CreateInstance(System.String,System.String)">
13199 <summary>Creates an instance of a remote object given an assembly name and type name.</summary>
13200 <param name="assemblyName">The name of assembly that contains the type</param>
13201 <param name="typeName">The full name of the type</param>
13202 <returns>The object handle of the instance</returns>
13203 </member>
13204 <member name="M:Gallio.Runtime.Hosting.BaseHostService.CreateInstanceFrom(System.String,System.String)">
13205 <summary>Creates an instance of a remote object given an assembly path and type name.</summary>
13206 <param name="assemblyPath">The path of assembly that contains the type</param>
13207 <param name="typeName">The full name of the type</param>
13208 <returns>The object handle of the instance</returns>
13209 </member>
13210 <member name="M:Gallio.Runtime.Hosting.BaseHostService.CreateInstanceFromImpl(System.String,System.String)">
13211 <summary>Internal implementation of <see cref="M:Gallio.Runtime.Hosting.BaseHostService.CreateInstanceFrom(System.String,System.String)" />.</summary>
13212 <param name="assemblyPath">The assembly path, not null</param>
13213 <param name="typeName">The type name, not null</param>
13214 <returns>The created object handle</returns>
13215 </member>
13216 <member name="M:Gallio.Runtime.Hosting.BaseHostService.CreateInstanceImpl(System.String,System.String)">
13217 <summary>Internal implementation of <see cref="M:Gallio.Runtime.Hosting.BaseHostService.CreateInstance(System.String,System.String)" />.</summary>
13218 <param name="assemblyName">The assembly name, not null</param>
13219 <param name="typeName">The type name, not null</param>
13220 <returns>The created object handle</returns>
13221 </member>
13222 <member name="M:Gallio.Runtime.Hosting.BaseHostService.Dispose">
13223 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
13224 </member>
13225 <member name="M:Gallio.Runtime.Hosting.BaseHostService.Dispose(System.Boolean)">
13226 <summary>Disposes the host service.</summary>
13227 <param name="disposing">True if disposing</param>
13228 </member>
13229 <member name="M:Gallio.Runtime.Hosting.BaseHostService.Do``2(Gallio.Func{``0,``1},``0)">
13230 <summary>
13231 <para> Asks the host to perform the specified action remotely. </para>
13232 <para> The action must be a serializable delegate so that it can be sent to the host and executed. Generally speaking, this means it must either be a delegate for a static method or its target object must be serializable. The argument and result values must also be serializable (or null). </para>
13233 </summary>
13234 <param name="func">The action to perform</param>
13235 <param name="arg">The argument value, if any</param>
13236 <returns>The result value, if any</returns>
13237 </member>
13238 <member name="M:Gallio.Runtime.Hosting.BaseHostService.DoImpl``2(Gallio.Func{``0,``1},``0)">
13239 <summary>Internal implementation of <see cref="M:Gallio.Runtime.Hosting.BaseHostService.Do``2(Gallio.Func{``0,``1},``0)" />.</summary>
13240 <typeparam name="TArg">The argument type</typeparam>
13241 <typeparam name="TResult">The result type</typeparam>
13242 <param name="func">The action to perform, not null</param>
13243 <param name="arg">The argument value, if any</param>
13244 <returns>The result value, if any</returns>
13245 </member>
13246 <member name="M:Gallio.Runtime.Hosting.BaseHostService.Ping">
13247 <summary>Pings the host to verify and maintain connectivity.</summary>
13248 </member>
13249 <member name="M:Gallio.Runtime.Hosting.BaseHostService.PingImpl">
13250 <summary>Internal implementation of <see cref="M:Gallio.Runtime.Hosting.BaseHostService.Ping" />.</summary>
13251 </member>
13252 <member name="M:Gallio.Runtime.Hosting.BaseHostService.ThrowIfDisposed">
13253 <summary>Throws an exception if the host service has been disposed.</summary>
13254 </member>
13255 <member name="T:Gallio.Runtime.Hosting.HostAssemblyResolverHook">
13256 <summary>Attaches to a <see cref="T:Gallio.Runtime.Hosting.IHost" /> to provide assembly resolution services. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13257 </member>
13258 <member name="M:Gallio.Runtime.Hosting.HostAssemblyResolverHook.Bootstrap(Gallio.Runtime.Hosting.IHost,System.String)">
13259 <summary>
13260 <para> Installs an assembly resolver that provides access to the installation path using the <see cref="T:Gallio.Runtime.Loader.AssemblyResolverBootstrap" />. </para>
13261 <para> Does nothing if the host is local. </para>
13262 </summary>
13263 <param name="host">The host</param>
13264 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="host" /> or <param name="installationPath" /> is null</exception>
13265 </member>
13266 <member name="M:Gallio.Runtime.Hosting.HostAssemblyResolverHook.InstallCallback(Gallio.Runtime.Hosting.IHost)">
13267 <summary>
13268 <para> Installs an assembly resolver that delegates to the creating <see cref="T:System.AppDomain" />'s assembly resolver to locate assemblies whenever the host is unable to find them. </para>
13269 <para> Does nothing if the host is local. </para>
13270 </summary>
13271 <param name="host">The host</param>
13272 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="host" /> is null</exception>
13273 </member>
13274 <member name="T:Gallio.Runtime.Hosting.HostConfiguration">
13275 <summary>Describes the runtime configuration of a <see cref="T:Gallio.Runtime.Hosting.IHost" />. This class cannot be inherited.</summary>
13276 </member>
13277 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependencies">
13278 <summary>Gets a mutable list of assembly dependencies.</summary>
13279 </member>
13280 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualifications">
13281 <summary>Gets a mutable list of assembly qualifications.</summary>
13282 </member>
13283 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssertUiEnabled">
13284 <summary>Gets or sets whether the <see cref="M:System.Diagnostics.Debug.Assert(System.Boolean)" /> failure dialog is enabled.</summary>
13285 <value>The default value is <c>false</c> which prevents the assertion dialog from appearing when an assertion fails.</value>
13286 </member>
13287 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.ConfigurationXml">
13288 <summary>Gets or sets the primary Xml configuration data, or null if none.</summary>
13289 <value>The default value is <c>null</c>.</value>
13290 </member>
13291 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.LegacyUnhandledExceptionPolicyEnabled">
13292 <summary>Gets or sets whether the legacy unhandled exception policy is enabled.</summary>
13293 <value>The default value is <c>true</c> which prevents the application from terminating abruptly when an unhandled exception occurs.</value>
13294 </member>
13295 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.RemotingCustomErrorsEnabled">
13296 <summary>Gets or sets whether remoting exceptions are substituted with custom errors instead of being passed through to the remote client.</summary>
13297 <value>The default value is <c>false</c> which ensures that the remote client receives all exception details.</value>
13298 </member>
13299 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.SupportedRuntimeVersions">
13300 <summary>Gets a mutable list of supported runtime versions in order of preference. When the list is empty, the runtime version used to build the application is used. Otherwise one of the supported runtimes in the list is used.</summary>
13301 </member>
13302 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AddAssemblyBinding(System.Reflection.Assembly,System.Boolean)">
13303 <summary>Adds a binding to the configuration for the specified assembly.</summary>
13304 <param name="assembly">The assembly</param>
13305 <param name="bindingRedirect">True if a catch-all binding redirect should be used to ensure that this exact version of the assembly is loaded no matter which version was originally requested</param>
13306 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assembly" /> is null</exception>
13307 </member>
13308 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AddAssemblyBinding(System.Reflection.AssemblyName,System.String,System.Boolean)">
13309 <summary>Adds a binding to the configuration for the specified assembly.</summary>
13310 <param name="assemblyName">The assembly name</param>
13311 <param name="codeBase">The assembly code base Uri</param>
13312 <param name="bindingRedirect">True if a catch-all binding redirect should be used to ensure that this exact version of the assembly is loaded no matter which version was originally requested</param>
13313 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyName" /> or <paramref name="codeBase" /> is null</exception>
13314 </member>
13315 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.Copy">
13316 <summary>Creates a copy of the host configuration information.</summary>
13317 <returns>The copy</returns>
13318 </member>
13319 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.Equals(System.Object)">
13320 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13321 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
13322 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13323 </member>
13324 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.Equals(Gallio.Runtime.Hosting.HostConfiguration)">
13325 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13326 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13327 </member>
13328 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.GetHashCode">
13329 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
13330 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
13331 </member>
13332 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.ToString">
13333 <summary>Overlays the <see cref="P:Gallio.Runtime.Hosting.HostConfiguration.ConfigurationXml" /> with the additional configuration entries necessary to enable the features described by this instance and returns the combined Xml configuration.</summary>
13334 <returns>The combined Xml configuration</returns>
13335 </member>
13336 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.WriteTo(System.IO.TextWriter)">
13337 <summary>Overlays the <see cref="P:Gallio.Runtime.Hosting.HostConfiguration.ConfigurationXml" /> with the additional configuration entries necessary to enable the features described by this instance and writes the combined Xml configuration.</summary>
13338 <param name="textWriter">The TextWriter where the Xml configuration will be written to.</param>
13339 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="textWriter" /> is null.</exception>
13340 </member>
13341 <member name="T:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect">
13342 <summary>Describes an assembly binding redirection from an old version range to a new version. This class cannot be inherited.</summary>
13343 </member>
13344 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect.NewVersion">
13345 <summary>Gets or sets the new version to which the binding should be redirected such as "1.2.3.4"</summary>
13346 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13347 </member>
13348 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect.OldVersionRange">
13349 <summary>Gets or sets the range of old versions to redirect, specified either as a single version such as "1.2.3.4" or as a range such as "1.2.3.4-10.11.12.13"</summary>
13350 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13351 </member>
13352 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect.Copy">
13353 <summary>Creates a copy of the assembly binding redirect information.</summary>
13354 <returns>The copy</returns>
13355 </member>
13356 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect.Equals(System.Object)">
13357 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13358 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
13359 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13360 </member>
13361 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect.Equals(Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect)">
13362 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13363 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13364 </member>
13365 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyBindingRedirect.GetHashCode">
13366 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
13367 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
13368 </member>
13369 <member name="T:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase">
13370 <summary>Describes the location of the codebase of a particular assembly version.</summary>
13371 </member>
13372 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase.Uri">
13373 <summary>Gets or sets the Uri that specifies the location of the assembly.</summary>
13374 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13375 </member>
13376 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase.Version">
13377 <summary>Gets or sets the assembly version to which this element applies such as "1.2.3.4".</summary>
13378 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13379 </member>
13380 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase.Copy">
13381 <summary>Creates a copy of the assembly binding redirect information.</summary>
13382 <returns>The copy</returns>
13383 </member>
13384 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase.Equals(System.Object)">
13385 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13386 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
13387 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13388 </member>
13389 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase.Equals(Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase)">
13390 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13391 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13392 </member>
13393 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyCodeBase.GetHashCode">
13394 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
13395 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
13396 </member>
13397 <member name="T:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency">
13398 <summary>Describes a dependent assembly configuration entry that optionally specifies the codebase, a publisher policy and binding redirects. This class cannot be inherited.</summary>
13399 </member>
13400 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.ApplyPublisherPolicy">
13401 <summary>Gets or sets whether to apply the publisher policy for this assembly.</summary>
13402 <value>The default value is true.</value>
13403 </member>
13404 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.AssemblyCulture">
13405 <summary>Gets or sets the assembly culture, or null if none.</summary>
13406 </member>
13407 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.AssemblyName">
13408 <summary>Gets or sets assembly name.</summary>
13409 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13410 </member>
13411 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.AssemblyProcessorArchitecture">
13412 <summary>Gets or sets the assembly processor architecture, or null if none.</summary>
13413 </member>
13414 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.AssemblyPublicKeyToken">
13415 <summary>Gets or sets the assembly public key token, or null if none.</summary>
13416 </member>
13417 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.BindingRedirects">
13418 <summary>Gets a mutable list of assembly binding redirect elements.</summary>
13419 </member>
13420 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.CodeBases">
13421 <summary>Gets a mutable list of assembly code base elements.</summary>
13422 </member>
13423 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.Copy">
13424 <summary>Creates a copy of the assembly dependency information.</summary>
13425 <returns>The copy</returns>
13426 </member>
13427 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.Equals(System.Object)">
13428 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13429 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
13430 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13431 </member>
13432 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.Equals(Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency)">
13433 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13434 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13435 </member>
13436 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyDependency.GetHashCode">
13437 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
13438 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
13439 </member>
13440 <member name="T:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification">
13441 <summary>Describes an assembly name qualification configuration entry that maps an assembly partial name to its full name. This class cannot be inherited.</summary>
13442 </member>
13443 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification.FullName">
13444 <summary>Gets or sets the assembly full name to use.</summary>
13445 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13446 </member>
13447 <member name="P:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification.PartialName">
13448 <summary>Gets or sets the assembly partial name to qualify.</summary>
13449 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13450 </member>
13451 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification.Copy">
13452 <summary>Creates a copy of the assembly qualification information.</summary>
13453 <returns>The copy</returns>
13454 </member>
13455 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification.Equals(System.Object)">
13456 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13457 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
13458 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13459 </member>
13460 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification.Equals(Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification)">
13461 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13462 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13463 </member>
13464 <member name="M:Gallio.Runtime.Hosting.HostConfiguration.AssemblyQualification.GetHashCode">
13465 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
13466 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
13467 </member>
13468 <member name="T:Gallio.Runtime.Hosting.HostException">
13469 <summary>The type of exception thrown when hosting operations fail.</summary>
13470 </member>
13471 <member name="T:Gallio.Runtime.Hosting.HostServiceChannelInterop">
13472 <summary>Provides utilities to interact with a <see cref="T:Gallio.Runtime.Hosting.RemoteHostService" /> over a <see cref="T:Gallio.Runtime.Remoting.IClientChannel" /> or <see cref="T:Gallio.Runtime.Remoting.IServerChannel" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13473 </member>
13474 <member name="F:Gallio.Runtime.Hosting.HostServiceChannelInterop.ServiceName">
13475 <summary>Gets the name used to register the <see cref="T:Gallio.Runtime.Hosting.RemoteHostService" />. This field is constant and read-only.</summary>
13476 </member>
13477 <member name="M:Gallio.Runtime.Hosting.HostServiceChannelInterop.GetRemoteHostService(Gallio.Runtime.Remoting.IClientChannel)">
13478 <summary>Gets a remote host service using the specified channel.</summary>
13479 <param name="channel">The channel</param>
13480 <returns>The remote host service</returns>
13481 </member>
13482 <member name="M:Gallio.Runtime.Hosting.HostServiceChannelInterop.RegisterWithChannel(Gallio.Runtime.Hosting.RemoteHostService,Gallio.Runtime.Remoting.IServerChannel)">
13483 <summary>Registers the host service with a channel.</summary>
13484 <param name="hostService">The remote host service</param>
13485 <param name="channel">The channel</param>
13486 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="hostService" /> or <paramref name="channel" /> is null</exception>
13487 </member>
13488 <member name="T:Gallio.Runtime.Hosting.HostSetup">
13489 <summary>Specifies a collection of parameters for setting up a <see cref="T:Gallio.Runtime.Hosting.IHost" />. This class cannot be inherited.</summary>
13490 </member>
13491 <member name="P:Gallio.Runtime.Hosting.HostSetup.ApplicationBaseDirectory">
13492 <summary>
13493 <para> Gets or sets the relative or absolute path of the application base directory. </para>
13494 <para> If relative, the path is based on the current working directory, so a value of "" causes the current working directory to be used. </para>
13495 </summary>
13496 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13497 </member>
13498 <member name="P:Gallio.Runtime.Hosting.HostSetup.Configuration">
13499 <summary>Gets or sets the host configuration information.</summary>
13500 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13501 </member>
13502 <member name="P:Gallio.Runtime.Hosting.HostSetup.ShadowCopy">
13503 <summary>Gets or sets whether assembly shadow copying is enabled.</summary>
13504 </member>
13505 <member name="P:Gallio.Runtime.Hosting.HostSetup.WorkingDirectory">
13506 <summary>
13507 <para> Gets or sets the relative or absolute path of the working directory. </para>
13508 <para> If relative, the path is based on the current working directory, so a value of "" causes the current working directory to be used. </para>
13509 </summary>
13510 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="value" /> is null</exception>
13511 </member>
13512 <member name="M:Gallio.Runtime.Hosting.HostSetup.Canonicalize(System.String)">
13513 <summary>Makes all paths in this instance absolute.</summary>
13514 <param name="baseDirectory">The base directory for resolving relative paths, or null to use the current directory</param>
13515 </member>
13516 <member name="M:Gallio.Runtime.Hosting.HostSetup.Copy">
13517 <summary>Creates a copy of the host setup information.</summary>
13518 <returns>The copy</returns>
13519 </member>
13520 <member name="M:Gallio.Runtime.Hosting.HostSetup.Equals(System.Object)">
13521 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13522 <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" nolink="true" />.</param>
13523 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13524 </member>
13525 <member name="M:Gallio.Runtime.Hosting.HostSetup.Equals(Gallio.Runtime.Hosting.HostSetup)">
13526 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />.</summary>
13527 <returns>true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" nolink="true" />; otherwise, false.</returns>
13528 </member>
13529 <member name="M:Gallio.Runtime.Hosting.HostSetup.GetHashCode">
13530 <summary>Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode" /> is suitable for use in hashing algorithms and data structures like a hash table.</summary>
13531 <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
13532 </member>
13533 <member name="T:Gallio.Runtime.Hosting.HostUtils">
13534 <summary>Provides utilities for working with hosts. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13535 </member>
13536 <member name="M:Gallio.Runtime.Hosting.HostUtils.CreateInstance``1(Gallio.Runtime.Hosting.IHost)">
13537 <summary>Creates an instance of an object within a host.</summary>
13538 <typeparam name="T">The type of object to create</typeparam>
13539 <param name="host">The host in which to create the object</param>
13540 <returns>The object instance</returns>
13541 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="host" /> is null</exception>
13542 </member>
13543 <member name="M:Gallio.Runtime.Hosting.HostUtils.CreateInstance(Gallio.Runtime.Hosting.IHost,System.Type)">
13544 <summary>Creates an instance of an object within</summary>
13545 <param name="host">The host in which to create the object</param>
13546 <param name="type">The type of object to create</param>
13547 <returns>The object instance</returns>
13548 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="host" /> or <paramref name="type" /> is null</exception>
13549 </member>
13550 <member name="T:Gallio.Runtime.Hosting.IsolatedAppDomainHost">
13551 <summary>An isolated app domain host is a <see cref="T:Gallio.Runtime.Hosting.IHost" /> the runs code within an isolated <see cref="T:System.AppDomain" /> of this process. Communication with the <see cref="T:System.AppDomain" nolink="true" /> occurs over an inter-<see cref="T:System.AppDomain" nolink="true" /> .Net remoting channel.</summary>
13552 </member>
13553 <member name="M:Gallio.Runtime.Hosting.IsolatedAppDomainHost.AcquireRemoteHostService">
13554 <summary>Connects to the remote host service.</summary>
13555 <returns>The remote host service</returns>
13556 </member>
13557 <member name="M:Gallio.Runtime.Hosting.IsolatedAppDomainHost.Dispose(System.Boolean)">
13558 <summary>Disposes the host.</summary>
13559 <param name="disposing">True if disposing</param>
13560 </member>
13561 <member name="T:Gallio.Runtime.Hosting.IsolatedAppDomainHostFactory">
13562 <summary>A factory for initialized <see cref="T:Gallio.Runtime.Hosting.IsolatedAppDomainHost" /> hosts.</summary>
13563 </member>
13564 <member name="M:Gallio.Runtime.Hosting.IsolatedAppDomainHostFactory.CreateHostImpl(Gallio.Runtime.Hosting.HostSetup,Gallio.Runtime.Logging.ILogger)">
13565 <summary>Creates the host.</summary>
13566 <param name="hostSetup">The canonicalized host setup, non-null</param>
13567 <param name="logger">The logger, non-null</param>
13568 <returns>The host</returns>
13569 </member>
13570 <member name="T:Gallio.Runtime.Hosting.IsolatedProcessHost">
13571 <summary>
13572 <para> An isolated process host is a <see cref="T:Gallio.Runtime.Hosting.IHost" /> that runs code within a new external process. Communication with the external process occurs over an inter-process communication channel. </para>
13573 <para> The host application is copied to a unique temporary folder and configured in place according to the <see cref="T:Gallio.Runtime.Hosting.HostSetup" />. Then it is launched and connected to with inter-process communication. The process is pinged periodically by the <see cref="T:Gallio.Runtime.Remoting.BinaryIpcClientChannel" />. Therefore it can be configured to self-terminate when it looks like the connection has been severed. </para>
13574 </summary>
13575 </member>
13576 <member name="M:Gallio.Runtime.Hosting.IsolatedProcessHost.AcquireRemoteHostService">
13577 <summary>Connects to the remote host service.</summary>
13578 <returns>The remote host service</returns>
13579 </member>
13580 <member name="M:Gallio.Runtime.Hosting.IsolatedProcessHost.CreateProcessTask(System.String,System.String,System.String)">
13581 <summary>Creates the process task to start the process.</summary>
13582 <param name="executablePath">The executable path</param>
13583 <param name="arguments">The command-line arguments</param>
13584 <param name="workingDirectory">The working directory</param>
13585 <returns>The process task</returns>
13586 </member>
13587 <member name="M:Gallio.Runtime.Hosting.IsolatedProcessHost.Dispose(System.Boolean)">
13588 <summary>Disposes the host.</summary>
13589 <param name="disposing">True if disposing</param>
13590 </member>
13591 <member name="M:Gallio.Runtime.Hosting.IsolatedProcessHost.PrepareConnection(System.String,System.String@,Gallio.Func{Gallio.Runtime.Remoting.IClientChannel}@,Gallio.Func{Gallio.Runtime.Remoting.IServerChannel}@)">
13592 <summary>Prepares the parameters for the remote connection.</summary>
13593 <param name="uniqueId">The unique id of the host</param>
13594 <param name="hostConnectionArguments">Set to the host application arguments used to configure its server channel</param>
13595 <param name="clientChannelFactory">Set to a factory used to create the local client channel</param>
13596 <param name="callbackChannelFactory">Set to a factory used to create the local server channel to allow the remote host to call back to this one</param>
13597 </member>
13598 <member name="T:Gallio.Runtime.Hosting.IsolatedProcessHostFactory">
13599 <summary>A factory for initialized <see cref="T:Gallio.Runtime.Hosting.IsolatedProcessHost" /> hosts.</summary>
13600 </member>
13601 <member name="P:Gallio.Runtime.Hosting.IsolatedProcessHostFactory.InstallationPath">
13602 <summary>Gets the installation path of the host executable.</summary>
13603 </member>
13604 <member name="M:Gallio.Runtime.Hosting.IsolatedProcessHostFactory.CreateHostImpl(Gallio.Runtime.Hosting.HostSetup,Gallio.Runtime.Logging.ILogger)">
13605 <summary>Creates the host.</summary>
13606 <param name="hostSetup">The canonicalized host setup, non-null</param>
13607 <param name="logger">The logger, non-null</param>
13608 <returns>The host</returns>
13609 </member>
13610 <member name="T:Gallio.Runtime.Hosting.LocalHost">
13611 <summary>An implementation of <see cref="T:Gallio.Runtime.Hosting.IHost" /> that runs code locally within the current AppDomain.</summary>
13612 </member>
13613 <member name="P:Gallio.Runtime.Hosting.LocalHost.IsLocal">
13614 <summary>Returns true if the host is local to the creating AppDomain, false if it must be accessed across a remote channel. A local host might not support all configuration options.</summary>
13615 </member>
13616 <member name="M:Gallio.Runtime.Hosting.LocalHost.AcquireHostService">
13617 <summary>Gets the host service.</summary>
13618 <returns>The host service, or null if the host service was not available</returns>
13619 </member>
13620 <member name="M:Gallio.Runtime.Hosting.LocalHost.Dispose(System.Boolean)">
13621 <summary>Disposes the host.</summary>
13622 <param name="disposing">True if disposing</param>
13623 </member>
13624 <member name="M:Gallio.Runtime.Hosting.LocalHost.ReleaseHostService(Gallio.Runtime.Hosting.IHostService)">
13625 <summary>Releases the host service.</summary>
13626 <param name="hostService">The host service that is being released, not null</param>
13627 </member>
13628 <member name="T:Gallio.Runtime.Hosting.LocalHostFactory">
13629 <summary>A factory for initialized <see cref="T:Gallio.Runtime.Hosting.LocalHost" /> hosts.</summary>
13630 </member>
13631 <member name="M:Gallio.Runtime.Hosting.LocalHostFactory.CreateHostImpl(Gallio.Runtime.Hosting.HostSetup,Gallio.Runtime.Logging.ILogger)">
13632 <summary>Creates the host.</summary>
13633 <param name="hostSetup">The canonicalized host setup, non-null</param>
13634 <param name="logger">The logger, non-null</param>
13635 <returns>The host</returns>
13636 </member>
13637 <member name="T:Gallio.Runtime.Hosting.RemoteHost" />
13638 <member name="P:Gallio.Runtime.Hosting.RemoteHost.IsLocal">
13639 <summary>Returns true if the host is local to the creating AppDomain, false if it must be accessed across a remote channel. A local host might not support all configuration options.</summary>
13640 </member>
13641 <member name="M:Gallio.Runtime.Hosting.RemoteHost.AcquireHostService">
13642 <summary>Gets the host service.</summary>
13643 <returns>The host service, or null if the host service was not available</returns>
13644 </member>
13645 <member name="M:Gallio.Runtime.Hosting.RemoteHost.AcquireRemoteHostService">
13646 <summary>Connects to the remote host service.</summary>
13647 <returns>The remote host service</returns>
13648 </member>
13649 <member name="M:Gallio.Runtime.Hosting.RemoteHost.Dispose(System.Boolean)">
13650 <summary>Disposes the host.</summary>
13651 <param name="disposing">True if disposing</param>
13652 </member>
13653 <member name="M:Gallio.Runtime.Hosting.RemoteHost.ReleaseHostService(Gallio.Runtime.Hosting.IHostService)">
13654 <summary>Releases the host service.</summary>
13655 <param name="hostService">The host service that is being released, not null</param>
13656 </member>
13657 <member name="T:Gallio.Runtime.Hosting.RemoteHostService">
13658 <summary>A remotely accessible host service.</summary>
13659 </member>
13660 <member name="P:Gallio.Runtime.Hosting.RemoteHostService.WatchdogTimerExpired">
13661 <summary>Returns true if the watchdog timer expired.</summary>
13662 </member>
13663 <member name="M:Gallio.Runtime.Hosting.RemoteHostService.Dispose(System.Boolean)">
13664 <summary>Disposes the host service.</summary>
13665 <param name="disposing">True if disposing</param>
13666 </member>
13667 <member name="M:Gallio.Runtime.Hosting.RemoteHostService.PingImpl">
13668 <summary>Internal implementation of <see cref="M:Gallio.Runtime.Hosting.BaseHostService.Ping" />.</summary>
13669 </member>
13670 <member name="M:Gallio.Runtime.Hosting.RemoteHostService.Shutdown">
13671 <summary>Remotely shuts down the host service.</summary>
13672 </member>
13673 <member name="M:Gallio.Runtime.Hosting.RemoteHostService.WaitUntilShutdown">
13674 <summary>Waits until the host service is shutdown or a ping timeout occurs.</summary>
13675 </member>
13676 <member name="T:Gallio.Runtime.Hosting.IHost">
13677 <summary>
13678 <para> A host represents an environment that may be used to perform various services in isolation. </para>
13679 <para> For example, a host might provide the ability to run code in an isolated <see cref="T:System.AppDomain" /> of the current process, or it might run code in an isolated process, or connect to an existing remote process. </para>
13680 </summary>
13681 </member>
13682 <member name="P:Gallio.Runtime.Hosting.IHost.IsConnected">
13683 <summary>Returns true if the host is connected.</summary>
13684 <exception cref="T:System.ObjectDisposedException">Thrown if the host has been disposed</exception>
13685 </member>
13686 <member name="P:Gallio.Runtime.Hosting.IHost.IsLocal">
13687 <summary>Returns true if the host is local to the creating AppDomain, false if it must be accessed across a remote channel. A local host might not support all configuration options.</summary>
13688 </member>
13689 <member name="M:Gallio.Runtime.Hosting.IHost.Disconnect">
13690 <summary>Disconnects the host.</summary>
13691 <exception cref="T:System.ObjectDisposedException">Thrown if the host has been disposed</exception>
13692 </member>
13693 <member name="M:Gallio.Runtime.Hosting.IHost.GetHostService">
13694 <summary>Gets a host service that can be used to perform operations within the host's environment.</summary>
13695 <exception cref="T:System.InvalidOperationException">Thrown if the host has been disconnected</exception>
13696 <exception cref="T:System.ObjectDisposedException">Thrown if the host has been disposed</exception>
13697 </member>
13698 <member name="M:Gallio.Runtime.Hosting.IHost.GetHostSetup">
13699 <summary>Gets a deep copy of the host setup information.</summary>
13700 <exception cref="T:System.ObjectDisposedException">Thrown if the host has been disposed</exception>
13701 </member>
13702 <member name="E:Gallio.Runtime.Hosting.IHost.Disconnected">
13703 <summary>An event that is raised when the host is disconnected. If the host has already been disconnected, the event is fired immediately.</summary>
13704 <exception cref="T:System.ObjectDisposedException">Thrown if the host has been disposed</exception>
13705 </member>
13706 <member name="T:Gallio.Runtime.Hosting.IHostFactory">
13707 <summary>A host factory encapsulates a policy for creating new <see cref="T:Gallio.Runtime.Hosting.IHost" /> instances.</summary>
13708 </member>
13709 <member name="M:Gallio.Runtime.Hosting.IHostFactory.CreateHost(Gallio.Runtime.Hosting.HostSetup,Gallio.Runtime.Logging.ILogger)">
13710 <summary>Creates a host instance.</summary>
13711 <param name="hostSetup">The host setup</param>
13712 <param name="logger">The logger for host message output</param>
13713 <returns>The newly created host</returns>
13714 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="hostSetup" /> or <paramref name="logger" /> is null</exception>
13715 </member>
13716 <member name="T:Gallio.Runtime.Hosting.IHostService">
13717 <summary>
13718 <para> A host service enables a local client to interact with a remotely executing hosting environment. </para>
13719 <para> A host service implementation may choose to implement a keep-alive mechanism to automatically shut itself down when the service is disposed or when it has not received a ping within a set period of time. </para>
13720 </summary>
13721 </member>
13722 <member name="M:Gallio.Runtime.Hosting.IHostService.CreateInstance(System.String,System.String)">
13723 <summary>Creates an instance of a remote object given an assembly name and type name.</summary>
13724 <param name="assemblyName">The name of assembly that contains the type</param>
13725 <param name="typeName">The full name of the type</param>
13726 <returns>The object handle of the instance</returns>
13727 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyName" /> or <paramref name="typeName" /> is null</exception>
13728 </member>
13729 <member name="M:Gallio.Runtime.Hosting.IHostService.CreateInstanceFrom(System.String,System.String)">
13730 <summary>Creates an instance of a remote object given an assembly path and type name.</summary>
13731 <param name="assemblyPath">The path of assembly that contains the type</param>
13732 <param name="typeName">The full name of the type</param>
13733 <returns>The object handle of the instance</returns>
13734 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyPath" /> or <paramref name="typeName" /> is null</exception>
13735 </member>
13736 <member name="M:Gallio.Runtime.Hosting.IHostService.Do``2(Gallio.Func{``0,``1},``0)">
13737 <summary>
13738 <para> Asks the host to perform the specified action remotely. </para>
13739 <para> The action must be a serializable delegate so that it can be sent to the host and executed. Generally speaking, this means it must either be a delegate for a static method or its target object must be serializable. The argument and result values must also be serializable (or null). </para>
13740 </summary>
13741 <typeparam name="TArg">The argument type</typeparam>
13742 <typeparam name="TResult">The result type</typeparam>
13743 <param name="func">The action to perform</param>
13744 <param name="arg">The argument value, if any</param>
13745 <returns>The result value, if any</returns>
13746 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="func" /> is null</exception>
13747 </member>
13748 <member name="M:Gallio.Runtime.Hosting.IHostService.Ping">
13749 <summary>Pings the host to verify and maintain connectivity.</summary>
13750 <exception cref="T:Gallio.Runtime.Hosting.HostException">Thrown if the remote host is unreachable</exception>
13751 </member>
13752 <member name="T:Gallio.Runtime.Hosting.IRemoteHostService">
13753 <summary>A specialization of host service designed for hosts that are remotely managed.</summary>
13754 </member>
13755 <member name="M:Gallio.Runtime.Hosting.IRemoteHostService.Shutdown">
13756 <summary>Remotely shuts down the host service.</summary>
13757 </member>
13758 <member name="T:Gallio.Runtime.Loader.AssemblyResolverBootstrap">
13759 <summary>Bootstraps a globally reachable assembly resolver manager within the Gallio installation path. May be used by clients to ensure that Gallio assemblies can be resolved assuming we were able to load the main assembly and access the bootstrap. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13760 </member>
13761 <member name="P:Gallio.Runtime.Loader.AssemblyResolverBootstrap.AssemblyResolverManager">
13762 <summary>Gets the bootstrapped assembly resolver manager.</summary>
13763 <exception cref="T:System.InvalidOperationException">Thrown if the bootstrap resolver has not been initialized</exception>
13764 </member>
13765 <member name="M:Gallio.Runtime.Loader.AssemblyResolverBootstrap.Initialize(System.String)">
13766 <summary>Initializes a global assembly resolver given the specified installation path.</summary>
13767 <param name="installationPath">The Gallio installation path</param>
13768 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="installationPath" /> is null</exception>
13769 </member>
13770 <member name="T:Gallio.Runtime.Loader.DefaultAssemblyResolverManager">
13771 <summary>Resolves assemblies using hint paths and custom resolvers.</summary>
13772 </member>
13773 <member name="M:Gallio.Runtime.Loader.DefaultAssemblyResolverManager.AddAssemblyResolver(Gallio.Runtime.Loader.IAssemblyResolver)">
13774 <summary>Adds a custom assembly resolver to use when standard assembly resolution fails.</summary>
13775 <param name="assemblyResolver">The assembly resolver</param>
13776 </member>
13777 <member name="M:Gallio.Runtime.Loader.DefaultAssemblyResolverManager.AddHintDirectory(System.String)">
13778 <summary>Adds an assembly load hint directory to search when standard assembly resolution fails.</summary>
13779 <param name="hintDirectory">The hint directory</param>
13780 </member>
13781 <member name="M:Gallio.Runtime.Loader.DefaultAssemblyResolverManager.Dispose">
13782 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
13783 </member>
13784 <member name="T:Gallio.Runtime.Loader.DefaultLoader">
13785 <summary>Default implementation of a loader.</summary>
13786 </member>
13787 <member name="P:Gallio.Runtime.Loader.DefaultLoader.AssemblyResolverManager">
13788 <summary>Gets the assembly resolver manager used to resolve referenced assemblies.</summary>
13789 </member>
13790 <member name="M:Gallio.Runtime.Loader.DefaultLoader.LoadAssemblyFrom(System.String)">
13791 <summary>Loads an assembly from the specified file.</summary>
13792 <param name="assemblyFile">The assembly file</param>
13793 <returns>The loaded assembly</returns>
13794 </member>
13795 <member name="T:Gallio.Runtime.Loader.IAssemblyResolver">
13796 <summary>A custom assembly resolver participates in assembly resolution when standard assembly resolution fails to load the desired assembly but before assembly load paths are considered.</summary>
13797 </member>
13798 <member name="M:Gallio.Runtime.Loader.IAssemblyResolver.Resolve(System.String,System.Boolean)">
13799 <summary>Resolves the assembly with the specified name.</summary>
13800 <param name="assemblyName">The full name of the assembly as was provided to <see cref="M:System.Reflection.Assembly.Load(System.String)" /></param>
13801 <param name="reflectionOnly">True if the assembly is to be resolved in the reflection-only context</param>
13802 <returns>The assembly, or null if it could not be resolved</returns>
13803 </member>
13804 <member name="T:Gallio.Runtime.Loader.IAssemblyResolverManager">
13805 <summary>Provides support for resolving assemblies using hint paths and custom resolvers.</summary>
13806 </member>
13807 <member name="M:Gallio.Runtime.Loader.IAssemblyResolverManager.AddAssemblyResolver(Gallio.Runtime.Loader.IAssemblyResolver)">
13808 <summary>Adds a custom assembly resolver to use when standard assembly resolution fails.</summary>
13809 <param name="assemblyResolver">The assembly resolver</param>
13810 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="assemblyResolver" /> is null</exception>
13811 </member>
13812 <member name="M:Gallio.Runtime.Loader.IAssemblyResolverManager.AddHintDirectory(System.String)">
13813 <summary>Adds an assembly load hint directory to search when standard assembly resolution fails.</summary>
13814 <param name="hintDirectory">The hint directory</param>
13815 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="hintDirectory" /> is null</exception>
13816 </member>
13817 <member name="T:Gallio.Runtime.Loader.ILoader">
13818 <summary>Provides services to assist with loading tests and dependent resources.</summary>
13819 </member>
13820 <member name="P:Gallio.Runtime.Loader.ILoader.AssemblyResolverManager">
13821 <summary>Gets the assembly resolver manager used to resolve referenced assemblies.</summary>
13822 </member>
13823 <member name="M:Gallio.Runtime.Loader.ILoader.LoadAssemblyFrom(System.String)">
13824 <summary>Loads an assembly from the specified file.</summary>
13825 <param name="assemblyFile">The assembly file</param>
13826 <returns>The loaded assembly</returns>
13827 <exception cref="T:System.Exception">Thrown if the assembly could not be loaded</exception>
13828 </member>
13829 <member name="T:Gallio.Runtime.Logging.BaseLogger">
13830 <summary>Base implementation of <see cref="T:Gallio.Runtime.Logging.ILogger" /> that performs argument validation and supports convenience methods. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13831 </member>
13832 <member name="M:Gallio.Runtime.Logging.BaseLogger.Log(Gallio.Runtime.Logging.LogSeverity,System.String)">
13833 <summary>Logs a message.</summary>
13834 <param name="severity">The log message severity</param>
13835 <param name="message">The log message</param>
13836 </member>
13837 <member name="M:Gallio.Runtime.Logging.BaseLogger.Log(Gallio.Runtime.Logging.LogSeverity,System.String,System.Exception)">
13838 <summary>Logs a message.</summary>
13839 <param name="severity">The log message severity</param>
13840 <param name="message">The log message</param>
13841 <param name="exception">The associated exception, or null if none</param>
13842 </member>
13843 <member name="M:Gallio.Runtime.Logging.BaseLogger.LogImpl(Gallio.Runtime.Logging.LogSeverity,System.String,System.Exception)">
13844 <summary>Logs a message.</summary>
13845 <param name="severity">The log message severity</param>
13846 <param name="message">The log message, not null</param>
13847 <param name="exception">The associated exception, or null if none</param>
13848 </member>
13849 <member name="T:Gallio.Runtime.Logging.FilteredLogger">
13850 <summary>Filters another logger to exclude messages below a given level of severity.</summary>
13851 </member>
13852 <member name="M:Gallio.Runtime.Logging.FilteredLogger.LogImpl(Gallio.Runtime.Logging.LogSeverity,System.String,System.Exception)">
13853 <summary>Logs a message.</summary>
13854 <param name="severity">The log message severity</param>
13855 <param name="message">The log message, not null</param>
13856 <param name="exception">The associated exception, or null if none</param>
13857 </member>
13858 <member name="T:Gallio.Runtime.Logging.NullLogger">
13859 <summary>A null implementation of <see cref="T:Gallio.Runtime.Logging.ILogger" /> that does nothing. This class cannot be inherited.</summary>
13860 </member>
13861 <member name="F:Gallio.Runtime.Logging.NullLogger.Instance">
13862 <summary>Gets a singleton instance of the null logger. This field is read-only.</summary>
13863 </member>
13864 <member name="T:Gallio.Runtime.Logging.RemoteLogger">
13865 <summary>Wraps a logger so that it can be accessed remotely.</summary>
13866 </member>
13867 <member name="M:Gallio.Runtime.Logging.RemoteLogger.LogImpl(Gallio.Runtime.Logging.LogSeverity,System.String,System.Exception)">
13868 <summary>Logs a message.</summary>
13869 <param name="severity">The log message severity</param>
13870 <param name="message">The log message, not null</param>
13871 <param name="exception">The associated exception, or null if none</param>
13872 </member>
13873 <member name="T:Gallio.Runtime.Logging.ILogger">
13874 <summary>Provides support for logging messages from system components.</summary>
13875 </member>
13876 <member name="M:Gallio.Runtime.Logging.ILogger.Log(Gallio.Runtime.Logging.LogSeverity,System.String)">
13877 <summary>Logs a message.</summary>
13878 <param name="severity">The log message severity</param>
13879 <param name="message">The log message</param>
13880 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="message" /> is null</exception>
13881 </member>
13882 <member name="M:Gallio.Runtime.Logging.ILogger.Log(Gallio.Runtime.Logging.LogSeverity,System.String,System.Exception)">
13883 <summary>Logs a message.</summary>
13884 <param name="severity">The log message severity</param>
13885 <param name="message">The log message</param>
13886 <param name="exception">The associated exception, or null if none</param>
13887 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="message" /> is null</exception>
13888 </member>
13889 <member name="T:Gallio.Runtime.Logging.LogSeverity">
13890 <summary>Describes the severity of a log message.</summary>
13891 </member>
13892 <member name="F:Gallio.Runtime.Logging.LogSeverity.Debug">
13893 <summary>The severity used for debug messages.</summary>
13894 </member>
13895 <member name="F:Gallio.Runtime.Logging.LogSeverity.Info">
13896 <summary>The severity used for informational messages.</summary>
13897 </member>
13898 <member name="F:Gallio.Runtime.Logging.LogSeverity.Warning">
13899 <summary>The severity used for warning messages.</summary>
13900 </member>
13901 <member name="F:Gallio.Runtime.Logging.LogSeverity.Error">
13902 <summary>The severity used for error messages.</summary>
13903 </member>
13904 <member name="T:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorPresenter">
13905 <summary>Abstract base class for objects whose purpose is to present progress information to the user. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13906 </member>
13907 <member name="P:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorPresenter.ProgressMonitor">
13908 <summary>Gets the attached progress monitor.</summary>
13909 </member>
13910 <member name="M:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorPresenter.Initialize">
13911 <summary>Initializes the presenter after a progress monitor has been attached.</summary>
13912 </member>
13913 <member name="M:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorPresenter.Present(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
13914 <summary>Presents an observable progress monitor.</summary>
13915 <param name="progressMonitor">The progress monitor to present</param>
13916 </member>
13917 <member name="T:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorProvider">
13918 <summary>An abstract base class to assist with the implementation of conformant <see cref="T:Gallio.Runtime.ProgressMonitoring.IProgressMonitorProvider" /> classes. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13919 </member>
13920 <member name="M:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorProvider.GetPresenter">
13921 <summary>Gets a presenter for the progress monitor.</summary>
13922 <returns>The presenter</returns>
13923 </member>
13924 <member name="M:Gallio.Runtime.ProgressMonitoring.BaseProgressMonitorProvider.Run(Gallio.Runtime.ProgressMonitoring.TaskWithProgress)">
13925 <summary>Runs a task with a progress monitor. Throws <see cref="T:System.OperationCanceledException" /> if the task is canceled.</summary>
13926 <param name="task">The task to run, never null</param>
13927 </member>
13928 <member name="T:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor">
13929 <summary>An abstract base class for progress monitors that implements the cancelation semantics only. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
13930 </member>
13931 <member name="P:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.IsCanceled">
13932 <summary>Returns true if the operation has been canceled. Clients should poll this value periodically or listen for the <see cref="E:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Canceled" /> event to ensure the operation is canceled in a timely fashion.</summary>
13933 </member>
13934 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.BeginTask(System.String,System.Double)">
13935 <summary>Notifies that the main task is starting. Must be called at most once on the progress monitor.</summary>
13936 <param name="taskName">The name of the task being monitored</param>
13937 <param name="totalWorkUnits">The total number of work units to perform. Must be greater than 0, or <see cref="F:System.Double.NaN" /> if an indeterminate amount of work is to be performed.</param>
13938 </member>
13939 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Cancel">
13940 <summary>Notifies that the operation is to be canceled. The method always causes the <see cref="P:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.IsCanceled" /> flag to be set, even if the operation is already done.</summary>
13941 </member>
13942 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.CreateSubProgressMonitor(System.Double)">
13943 <summary>
13944 <para> Creates a sub-progress monitor that represents a given number of work-units as a sub-task of this progress monitor. </para>
13945 <para> Using sub-tasks allows multiple tasks to be composed into longer sequences that each contribute a predetermined portion of the total work. </para>
13946 <para> As the sub-task performs work its parent task is notified of progress in proportion to the number of work units that it represents. Likewise the parent is notified of cancelation if the child is canceled and vice-versa. </para>
13947 </summary>
13948 <param name="parentWorkUnits">The total number of work units of the parent task that are to be represented by the sub-task. When the sub-task completes, this much work will have been performed on the parent. Must be a finite value greater than or equal to 0.</param>
13949 </member>
13950 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Done">
13951 <summary>Notifies that the work is done, either the main task is completed was cancelled by the user. If already done, the method has no effect.</summary>
13952 </member>
13953 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.NotifyCanceled">
13954 <summary>Notifies that the task has actually been canceled. If this is the first time <see cref="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.NotifyCanceled" /> has been called, sets <see cref="P:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.IsCanceled" /> to true and fires the <see cref="E:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Canceled" /> event. Otherwise does nothing.</summary>
13955 <returns>True if cancelation has just occurred, false if no state change was performed</returns>
13956 </member>
13957 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.OnCancel">
13958 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Cancel" /> performs its updates.</summary>
13959 </member>
13960 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.SetStatus(System.String)">
13961 <summary>Sets detailed status information for the current task or subtask. A status message is an optional fine-grained description of the current activity being performed. For instance, a status message might specify the name of a file being copied as part of a task that copies many files.</summary>
13962 <param name="status">The name of the current subtask</param>
13963 </member>
13964 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.ThrowIfCanceled">
13965 <summary>Throws an <see cref="T:System.OperationCanceledException" /> if the operation has been canceled.</summary>
13966 </member>
13967 <member name="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Worked(System.Double)">
13968 <summary>Notifies that a given number of work units of the main task have been completed. Note that this amount represents an installment, as opposed to a cumulative amount of work done to date. If the sum of this value and the currently completed work units exceeds the total work units to be performed, the excess portion is discarded.</summary>
13969 <param name="workUnits">The number of work units completed so far. Must be a finite value greater than or equal to 0.</param>
13970 </member>
13971 <member name="E:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Canceled">
13972 <summary>Adds or removes an event handler to be called when the operation is canceled. If the operation has already been canceled, then the event handler will be called immediately.</summary>
13973 </member>
13974 <member name="T:Gallio.Runtime.ProgressMonitoring.LogProgressMonitorPresenter">
13975 <summary>Displays progress by writing a series of messages to an <see cref="T:Gallio.Runtime.Logging.ILogger" /> as the name of the current task changes.</summary>
13976 </member>
13977 <member name="M:Gallio.Runtime.ProgressMonitoring.LogProgressMonitorPresenter.Initialize">
13978 <summary>Initializes the presenter after a progress monitor has been attached.</summary>
13979 </member>
13980 <member name="T:Gallio.Runtime.ProgressMonitoring.LogProgressMonitorProvider">
13981 <summary>Displays progress by writing a series of messages to an <see cref="T:Gallio.Runtime.Logging.ILogger" /> as the name of the current task changes.</summary>
13982 </member>
13983 <member name="M:Gallio.Runtime.ProgressMonitoring.LogProgressMonitorProvider.GetPresenter">
13984 <summary>Gets a presenter for the progress monitor.</summary>
13985 <returns>The presenter</returns>
13986 </member>
13987 <member name="T:Gallio.Runtime.ProgressMonitoring.NullProgressMonitor">
13988 <summary>Creates instances of null progress monitors that do nothing. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13989 </member>
13990 <member name="M:Gallio.Runtime.ProgressMonitoring.NullProgressMonitor.CreateInstance">
13991 <summary>Creates a null progress monitor.</summary>
13992 <returns>The null progress monitor</returns>
13993 </member>
13994 <member name="T:Gallio.Runtime.ProgressMonitoring.NullProgressMonitorPresenter">
13995 <summary>A null progress monitor presenter simply does nothing. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
13996 </member>
13997 <member name="F:Gallio.Runtime.ProgressMonitoring.NullProgressMonitorPresenter.Instance">
13998 <summary>Gets the singleton instance of the presenter. This field is read-only.</summary>
13999 </member>
14000 <member name="M:Gallio.Runtime.ProgressMonitoring.NullProgressMonitorPresenter.Present(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14001 <summary>Presents an observable progress monitor.</summary>
14002 <param name="progressMonitor">The progress monitor to present</param>
14003 </member>
14004 <member name="T:Gallio.Runtime.ProgressMonitoring.NullProgressMonitorProvider">
14005 <summary>Runs tasks without reporting any progress. Argument validation and state changes are still noted but they do not have any outward effect. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14006 </member>
14007 <member name="P:Gallio.Runtime.ProgressMonitoring.NullProgressMonitorProvider.Instance">
14008 <summary>Gets the singleton instance of the provider.</summary>
14009 </member>
14010 <member name="T:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor">
14011 <summary>An observable progress monitor tracks validates arguments and tracks the state of the progress monitor but it does not implement any of its own behavior in response to the notifications received. Instead, it is intended to be observed by a presenter that translates state change events into changes of the view.</summary>
14012 </member>
14013 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Child">
14014 <summary>Gets the active child sub-progress monitor, or null if none.</summary>
14015 </member>
14016 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.CompletedWorkUnits">
14017 <summary>Gets the number of work units completed so far. It is the sum of all values passed to the <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Worked(System.Double)" /> method while the task has been running. This value is never NaN because at each step a finite amount of work must be recorded.</summary>
14018 </member>
14019 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.IsDone">
14020 <summary>Returns true if <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Done" /> has been called.</summary>
14021 </member>
14022 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.IsRunning">
14023 <summary>Returns true if <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.BeginTask(System.String,System.Double)" /> has been called and <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Done" /> has not yet also been called.</summary>
14024 </member>
14025 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Leaf">
14026 <summary>Gets the currently active leaf sub-progress monitor, or this one if there are no sub-progress monitors.</summary>
14027 </member>
14028 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.LeafSubTaskName">
14029 <summary>Gets the name of the most deeply nested sub-task, or an empty string if there are no sub-progress monitors.</summary>
14030 </member>
14031 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.RemainingWorkUnits">
14032 <summary>Gets the number of remaining work units to perform, or NaN to indicate that an indeterminate amount of work remains to be performed because <see cref="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.TotalWorkUnits" /> is NaN and the operation is not done.</summary>
14033 </member>
14034 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Status">
14035 <summary>Gets the current status message set by <see cref="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.SetStatus(System.String)" /> or an empty string by default.</summary>
14036 </member>
14037 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.TaskName">
14038 <summary>Gets the name of the task or an empty string if <see cref="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.BeginTask(System.String,System.Double)" /> has not been called.</summary>
14039 </member>
14040 <member name="P:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.TotalWorkUnits">
14041 <summary>Gets the total number of work units to perform, or NaN to indicate that an indeterminate amount of work is to be performed.</summary>
14042 </member>
14043 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.BeginSubTask(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14044 <summary>Begins a sub-task in a sub-progress monitor.</summary>
14045 <param name="subProgressMonitor">The sub-progress monitor</param>
14046 </member>
14047 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.BeginTask(System.String,System.Double)">
14048 <summary>Notifies that the main task is starting. Must be called at most once on the progress monitor.</summary>
14049 <param name="taskName">The name of the task being monitored</param>
14050 <param name="totalWorkUnits">The total number of work units to perform. Must be greater than 0, or <see cref="F:System.Double.NaN" /> if an indeterminate amount of work is to be performed.</param>
14051 </member>
14052 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.CreateSubProgressMonitor(System.Double)">
14053 <summary>
14054 <para> Creates a sub-progress monitor that represents a given number of work-units as a sub-task of this progress monitor. </para>
14055 <para> Using sub-tasks allows multiple tasks to be composed into longer sequences that each contribute a predetermined portion of the total work. </para>
14056 <para> As the sub-task performs work its parent task is notified of progress in proportion to the number of work units that it represents. Likewise the parent is notified of cancelation if the child is canceled and vice-versa. </para>
14057 </summary>
14058 <param name="parentWorkUnits">The total number of work units of the parent task that are to be represented by the sub-task. When the sub-task completes, this much work will have been performed on the parent. Must be a finite value greater than or equal to 0.</param>
14059 </member>
14060 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Done">
14061 <summary>Notifies that the work is done, either the main task is completed was cancelled by the user. If already done, the method has no effect.</summary>
14062 </member>
14063 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.EndSubTask(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14064 <summary>Ends a sub-task in a sub-progress monitor.</summary>
14065 <param name="subProgressMonitor">The sub-progress monitor</param>
14066 </member>
14067 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.NotifyRecursiveSubTaskChanged(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14068 <summary>Called when a subtask changes in any way, including one of its own subtasks changing.</summary>
14069 <param name="subProgressMonitor">The sub-progress monitor</param>
14070 </member>
14071 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnBeginSubTask(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14072 <summary>Called when the active sub-task <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.BeginSubTask(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)" /> performs its updates.</summary>
14073 <param name="subProgressMonitor">The sub-task's progress monitor</param>
14074 </member>
14075 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnBeginTask(System.String,System.Double)">
14076 <summary>Called after <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.BeginTask(System.String,System.Double)" /> performs its updates.</summary>
14077 <param name="taskName">The task name</param>
14078 <param name="totalWorkUnits">The total number of work units</param>
14079 </member>
14080 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnCancel">
14081 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Cancel" /> performs its updates.</summary>
14082 </member>
14083 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnChange">
14084 <summary>Called when a state change occurs.</summary>
14085 </member>
14086 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnDone">
14087 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Done" /> performs its updates.</summary>
14088 </member>
14089 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnEndSubTask(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14090 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.EndSubTask(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)" /> performs its updates.</summary>
14091 <param name="subProgressMonitor">The sub-task's progress monitor</param>
14092 </member>
14093 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnRecursiveSubTaskChange(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14094 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.NotifyRecursiveSubTaskChanged(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)" /> performs its updates.</summary>
14095 <param name="subProgressMonitor">The sub-task's progress monitor</param>
14096 </member>
14097 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnSetStatus(System.String)">
14098 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SetStatus(System.String)" /> performs its updates.</summary>
14099 <param name="status">The status message</param>
14100 </member>
14101 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnSubProgressMonitorCreated(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14102 <summary>Called when a new progress monitor is created.</summary>
14103 </member>
14104 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.OnWorked(System.Double)">
14105 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Worked(System.Double)" /> performs its updates.</summary>
14106 </member>
14107 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SetStatus(System.String)">
14108 <summary>Sets detailed status information for the current task or subtask. A status message is an optional fine-grained description of the current activity being performed. For instance, a status message might specify the name of a file being copied as part of a task that copies many files.</summary>
14109 <param name="status">The name of the current subtask</param>
14110 </member>
14111 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Worked(System.Double)">
14112 <summary>Notifies that a given number of work units of the main task have been completed. Note that this amount represents an installment, as opposed to a cumulative amount of work done to date. If the sum of this value and the currently completed work units exceeds the total work units to be performed, the excess portion is discarded.</summary>
14113 <param name="workUnits">The number of work units completed so far. Must be a finite value greater than or equal to 0.</param>
14114 </member>
14115 <member name="E:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Changed">
14116 <summary>Adds or removes an event handler that is called whenever the state of the progress monitor changes in any way.</summary>
14117 </member>
14118 <member name="E:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitorCreated">
14119 <summary>Adds or removes an event handler that is called whenever a new sub-progress monitor is created so that the observer can attach its event handlers.</summary>
14120 </member>
14121 <member name="E:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.TaskFinished">
14122 <summary>Adds or removes an event handler that is called when the task is finished.</summary>
14123 </member>
14124 <member name="E:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.TaskStarting">
14125 <summary>Adds or removes an event handler that is called when the task is starting.</summary>
14126 </member>
14127 <member name="T:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitor">
14128 <summary>A standard sub-progress monitor implementation that notifies its parent as work is performed.</summary>
14129 </member>
14130 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitor.OnBeginTask(System.String,System.Double)">
14131 <summary>Called after <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.BeginTask(System.String,System.Double)" /> performs its updates.</summary>
14132 <param name="taskName">The task name</param>
14133 <param name="totalWorkUnits">The total number of work units</param>
14134 </member>
14135 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitor.OnCancel">
14136 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.CancelableProgressMonitor.Cancel" /> performs its updates.</summary>
14137 </member>
14138 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitor.OnChange">
14139 <summary>Called when a state change occurs.</summary>
14140 </member>
14141 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitor.OnDone">
14142 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Done" /> performs its updates.</summary>
14143 </member>
14144 <member name="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.SubProgressMonitor.OnWorked(System.Double)">
14145 <summary>Called when <see cref="M:Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor.Worked(System.Double)" /> performs its updates.</summary>
14146 </member>
14147 <member name="T:Gallio.Runtime.ProgressMonitoring.RemoteProgressMonitor">
14148 <summary>A remote progress monitor is a serializable wrapper for another progress monitor. The wrapper can be passed to another AppDomain and communication occurs over .Net remoting. This class cannot be inherited.</summary>
14149 </member>
14150 <member name="M:Gallio.Runtime.ProgressMonitoring.RemoteProgressMonitor.BeginTask(System.String,System.Double)">
14151 <summary>Notifies that the main task is starting. Must be called at most once on the progress monitor.</summary>
14152 <param name="taskName">The name of the task being monitored</param>
14153 <param name="totalWorkUnits">The total number of work units to perform. Must be greater than 0, or <see cref="F:System.Double.NaN" /> if an indeterminate amount of work is to be performed.</param>
14154 </member>
14155 <member name="M:Gallio.Runtime.ProgressMonitoring.RemoteProgressMonitor.CreateSubProgressMonitor(System.Double)">
14156 <summary>
14157 <para> Creates a sub-progress monitor that represents a given number of work-units as a sub-task of this progress monitor. </para>
14158 <para> Using sub-tasks allows multiple tasks to be composed into longer sequences that each contribute a predetermined portion of the total work. </para>
14159 <para> As the sub-task performs work its parent task is notified of progress in proportion to the number of work units that it represents. Likewise the parent is notified of cancelation if the child is canceled and vice-versa. </para>
14160 </summary>
14161 <param name="parentWorkUnits">The total number of work units of the parent task that are to be represented by the sub-task. When the sub-task completes, this much work will have been performed on the parent. Must be a finite value greater than or equal to 0.</param>
14162 </member>
14163 <member name="M:Gallio.Runtime.ProgressMonitoring.RemoteProgressMonitor.Done">
14164 <summary>Notifies that the work is done, either the main task is completed was cancelled by the user. If already done, the method has no effect.</summary>
14165 </member>
14166 <member name="M:Gallio.Runtime.ProgressMonitoring.RemoteProgressMonitor.SetStatus(System.String)">
14167 <summary>Sets detailed status information for the current task or subtask. A status message is an optional fine-grained description of the current activity being performed. For instance, a status message might specify the name of a file being copied as part of a task that copies many files.</summary>
14168 <param name="status">The name of the current subtask</param>
14169 </member>
14170 <member name="M:Gallio.Runtime.ProgressMonitoring.RemoteProgressMonitor.Worked(System.Double)">
14171 <summary>Notifies that a given number of work units of the main task have been completed. Note that this amount represents an installment, as opposed to a cumulative amount of work done to date. If the sum of this value and the currently completed work units exceeds the total work units to be performed, the excess portion is discarded.</summary>
14172 <param name="workUnits">The number of work units completed so far. Must be a finite value greater than or equal to 0.</param>
14173 </member>
14174 <member name="T:Gallio.Runtime.ProgressMonitoring.RichConsoleProgressMonitorPresenter">
14175 <summary>A console progress monitor presenter displays a simple tally of the amount of work to be done on the main task as a bar chart. The progress monitor responds to cancelation events at the console.</summary>
14176 </member>
14177 <member name="M:Gallio.Runtime.ProgressMonitoring.RichConsoleProgressMonitorPresenter.Initialize">
14178 <summary>Initializes the presenter after a progress monitor has been attached.</summary>
14179 </member>
14180 <member name="T:Gallio.Runtime.ProgressMonitoring.RichConsoleProgressMonitorProvider">
14181 <summary>A console progress monitor displays a simple tally of the amount of work to be done on the main task as a bar chart. The progress monitor responds to cancelation events at the console.</summary>
14182 </member>
14183 <member name="M:Gallio.Runtime.ProgressMonitoring.RichConsoleProgressMonitorProvider.GetPresenter">
14184 <summary>Gets a presenter for the progress monitor.</summary>
14185 <returns>The presenter</returns>
14186 </member>
14187 <member name="T:Gallio.Runtime.ProgressMonitoring.SubProgressMonitorCreatedEventArgs">
14188 <summary>Provides a reference to the newly created sub-progress monitor.</summary>
14189 </member>
14190 <member name="P:Gallio.Runtime.ProgressMonitoring.SubProgressMonitorCreatedEventArgs.SubProgressMonitor">
14191 <summary>Gets the newly created sub-progress monitor.</summary>
14192 </member>
14193 <member name="T:Gallio.Runtime.ProgressMonitoring.IProgressMonitor">
14194 <summary>A progress monitor provides facilities for core functionality to report progress of a long running operation. The interface is typically implemented by a UI component such as a progress dialog.</summary>
14195 </member>
14196 <member name="P:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.IsCanceled">
14197 <summary>Returns true if the operation has been canceled. Clients should poll this value periodically or listen for the <see cref="E:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Canceled" /> event to ensure the operation is canceled in a timely fashion.</summary>
14198 </member>
14199 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.BeginTask(System.String,System.Double)">
14200 <summary>Notifies that the main task is starting. Must be called at most once on the progress monitor.</summary>
14201 <param name="taskName">The name of the task being monitored</param>
14202 <param name="totalWorkUnits">The total number of work units to perform. Must be greater than 0, or <see cref="F:System.Double.NaN" /> if an indeterminate amount of work is to be performed.</param>
14203 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="taskName" /> is null</exception>
14204 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="totalWorkUnits" /> is not valid</exception>
14205 <exception cref="T:System.InvalidOperationException">Thrown if <see cref="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.BeginTask(System.String,System.Double)" /> or <see cref="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Done" /> have already been called</exception>
14206 </member>
14207 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Cancel">
14208 <summary>Notifies that the operation is to be canceled. The method always causes the <see cref="P:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.IsCanceled" /> flag to be set, even if the operation is already done.</summary>
14209 </member>
14210 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.CreateSubProgressMonitor(System.Double)">
14211 <summary>
14212 <para> Creates a sub-progress monitor that represents a given number of work-units as a sub-task of this progress monitor. </para>
14213 <para> Using sub-tasks allows multiple tasks to be composed into longer sequences that each contribute a predetermined portion of the total work. </para>
14214 <para> As the sub-task performs work its parent task is notified of progress in proportion to the number of work units that it represents. Likewise the parent is notified of cancelation if the child is canceled and vice-versa. </para>
14215 </summary>
14216 <param name="parentWorkUnits">The total number of work units of the parent task that are to be represented by the sub-task. When the sub-task completes, this much work will have been performed on the parent. Must be a finite value greater than or equal to 0.</param>
14217 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="parentWorkUnits" /> is not valid</exception>
14218 </member>
14219 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Done">
14220 <summary>Notifies that the work is done, either the main task is completed was cancelled by the user. If already done, the method has no effect.</summary>
14221 </member>
14222 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.SetStatus(System.String)">
14223 <summary>Sets detailed status information for the current task or subtask. A status message is an optional fine-grained description of the current activity being performed. For instance, a status message might specify the name of a file being copied as part of a task that copies many files.</summary>
14224 <param name="status">The name of the current subtask</param>
14225 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="status" /> is null</exception>
14226 <exception cref="T:System.InvalidOperationException">Thrown if the task is not running</exception>
14227 </member>
14228 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.ThrowIfCanceled">
14229 <summary>Throws an <see cref="T:System.OperationCanceledException" /> if the operation has been canceled.</summary>
14230 <exception cref="T:System.OperationCanceledException">Thrown if <see cref="P:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.IsCanceled" /> is true</exception>
14231 </member>
14232 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Worked(System.Double)">
14233 <summary>Notifies that a given number of work units of the main task have been completed. Note that this amount represents an installment, as opposed to a cumulative amount of work done to date. If the sum of this value and the currently completed work units exceeds the total work units to be performed, the excess portion is discarded.</summary>
14234 <param name="workUnits">The number of work units completed so far. Must be a finite value greater than or equal to 0.</param>
14235 <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="workUnits" /> is not valid</exception>
14236 <exception cref="T:System.InvalidOperationException">Thrown if the task is not running</exception>
14237 </member>
14238 <member name="E:Gallio.Runtime.ProgressMonitoring.IProgressMonitor.Canceled">
14239 <summary>Adds or removes an event handler to be called when the operation is canceled. If the operation has already been canceled, then the event handler will be called immediately.</summary>
14240 </member>
14241 <member name="T:Gallio.Runtime.ProgressMonitoring.IProgressMonitorPresenter">
14242 <summary>A progress monitor presenter attaches a progress monitor to a view.</summary>
14243 </member>
14244 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitorPresenter.Present(Gallio.Runtime.ProgressMonitoring.ObservableProgressMonitor)">
14245 <summary>Presents an observable progress monitor.</summary>
14246 <param name="progressMonitor">The progress monitor to present</param>
14247 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="progressMonitor" /> is null</exception>
14248 <exception cref="T:System.InvalidOperationException">Thrown if the presenter does not support being reused to present multiple progress monitors</exception>
14249 </member>
14250 <member name="T:Gallio.Runtime.ProgressMonitoring.IProgressMonitorProvider">
14251 <summary>A progress monitor provider runs a task with progress monitoring and provides clear notification of cancelation in the form of an <see cref="T:System.OperationCanceledException" />.</summary>
14252 </member>
14253 <member name="M:Gallio.Runtime.ProgressMonitoring.IProgressMonitorProvider.Run(Gallio.Runtime.ProgressMonitoring.TaskWithProgress)">
14254 <summary>Runs a task with a progress monitor. Throws <see cref="T:System.OperationCanceledException" /> if the task is canceled.</summary>
14255 <param name="task">The task to run, never null</param>
14256 <exception cref="T:System.OperationCanceledException">Thrown if the task is canceled</exception>
14257 </member>
14258 <member name="T:Gallio.Runtime.ProgressMonitoring.TaskWithProgress">
14259 <summary>Represents a task to be executed with a progress monitor.</summary>
14260 <param name="progressMonitor">The progress monitor, never null</param>
14261 </member>
14262 <member name="T:Gallio.Runtime.Remoting.BaseChannel">
14263 <summary>Abstract base class for channels implemented using the .Net remoting infrastructure. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
14264 </member>
14265 <member name="P:Gallio.Runtime.Remoting.BaseChannel.Channel">
14266 <summary>Gets the associated .Net remoting channel.</summary>
14267 </member>
14268 <member name="P:Gallio.Runtime.Remoting.BaseChannel.ChannelUri">
14269 <summary>Gets the root Uri associated with the channel.</summary>
14270 </member>
14271 <member name="M:Gallio.Runtime.Remoting.BaseChannel.Dispose">
14272 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
14273 </member>
14274 <member name="M:Gallio.Runtime.Remoting.BaseChannel.GetServiceUri(System.String)">
14275 <summary>Gets the Uri of a service with the given name that can be accessed using this channel.</summary>
14276 <param name="serviceName">The service name</param>
14277 <returns>The service uri</returns>
14278 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="serviceName" /> is null</exception>
14279 </member>
14280 <member name="T:Gallio.Runtime.Remoting.BaseClientChannel">
14281 <summary>Abstract base class for client channels implemented using the .Net remoting infrastructure. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
14282 </member>
14283 <member name="M:Gallio.Runtime.Remoting.BaseClientChannel.GetService(System.Type,System.String)">
14284 <summary>Gets a well-known remote service with the specified name.</summary>
14285 <param name="serviceType">The type of the service</param>
14286 <param name="serviceName">The name of the service</param>
14287 <returns>The component or a proxy that provides the service</returns>
14288 </member>
14289 <member name="T:Gallio.Runtime.Remoting.BaseServerChannel">
14290 <summary>Abstract base class for client channels implemented using the .Net remoting infrastructure. This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
14291 </member>
14292 <member name="M:Gallio.Runtime.Remoting.BaseServerChannel.RegisterService(System.String,System.MarshalByRefObject)">
14293 <summary>Registers a well-known service with the specified name.</summary>
14294 <param name="serviceName">The name of the service</param>
14295 <param name="component">The component that provides the service</param>
14296 </member>
14297 <member name="T:Gallio.Runtime.Remoting.BinaryIpcClientChannel">
14298 <summary>A client channel based on an <see cref="T:System.Runtime.Remoting.Channels.Ipc.IpcClientChannel" /> that uses a <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider" />.</summary>
14299 </member>
14300 <member name="T:Gallio.Runtime.Remoting.BinaryIpcServerChannel">
14301 <summary>A server channel based on an <see cref="T:System.Runtime.Remoting.Channels.Ipc.IpcServerChannel" /> that uses a <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" />.</summary>
14302 </member>
14303 <member name="T:Gallio.Runtime.Remoting.BinaryTcpClientChannel">
14304 <summary>A client channel based on an <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" /> that uses a <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider" />.</summary>
14305 </member>
14306 <member name="T:Gallio.Runtime.Remoting.BinaryTcpServerChannel">
14307 <summary>A server channel based on an <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> that uses a <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" />.</summary>
14308 </member>
14309 <member name="T:Gallio.Runtime.Remoting.LongLivedMarshalByRefObject">
14310 <summary>
14311 <para> A <see cref="T:Gallio.Runtime.Remoting.LongLivedMarshalByRefObject" /> represents a remote object whose lifetime is managed explicitly. It ensures that long-lived services are not inadvertently disconnected by the remoting infrastructure and remain accessible until the application discards them. </para>
14312 <para> However, it is important to keep a reference to the marshalled object to ensure it does not get garbage collected prematurely. A marshalled object can also be explicitly disconnected via <see cref="M:System.Runtime.Remoting.RemotingServices.Disconnect(System.MarshalByRefObject)" />. </para>This class is <see langword="abstract" /> and so cannot be instantiated.</summary>
14313 </member>
14314 <member name="M:Gallio.Runtime.Remoting.LongLivedMarshalByRefObject.InitializeLifetimeService">
14315 <summary>Obtains a lifetime service object to control the lifetime policy for this instance.</summary>
14316 <returns>An object of type <see cref="T:System.Runtime.Remoting.Lifetime.ILease" /> used to control the lifetime policy for this instance. This is the current lifetime service object for this instance if one exists; otherwise, a new lifetime service object initialized to the value of the <see cref="P:System.Runtime.Remoting.Lifetime.LifetimeServices.LeaseManagerPollTime" /> property.</returns>
14317 </member>
14318 <member name="T:Gallio.Runtime.Remoting.IClientChannel">
14319 <summary>A client channel manages the client side of a remoting channel.</summary>
14320 </member>
14321 <member name="M:Gallio.Runtime.Remoting.IClientChannel.GetService(System.Type,System.String)">
14322 <summary>Gets a well-known remote service with the specified name.</summary>
14323 <param name="serviceType">The type of the service</param>
14324 <param name="serviceName">The name of the service</param>
14325 <returns>The component or a proxy that provides the service</returns>
14326 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="serviceType" /> or <paramref name="serviceName" /> is null</exception>
14327 </member>
14328 <member name="T:Gallio.Runtime.Remoting.IServerChannel">
14329 <summary>A server channel manages the server side of a remoting channel.</summary>
14330 </member>
14331 <member name="M:Gallio.Runtime.Remoting.IServerChannel.RegisterService(System.String,System.MarshalByRefObject)">
14332 <summary>Registers a well-known service with the specified name.</summary>
14333 <param name="serviceName">The name of the service</param>
14334 <param name="component">The component that provides the service</param>
14335 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="serviceName" /> or <paramref name="component" /> is null</exception>
14336 </member>
14337 <member name="T:Gallio.Runtime.Windsor.WindsorRuntime">
14338 <summary>Default implementation of <see cref="T:Gallio.Runtime.IRuntime" /> based on the Castle inversion of control microkernel.</summary>
14339 </member>
14340 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.Dispose">
14341 <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
14342 </member>
14343 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.GetRuntimeSetup">
14344 <summary>Gets a deep copy of the runtime setup used to configure this runtime.</summary>
14345 <returns>The runtime setup</returns>
14346 </member>
14347 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.Initialize(Gallio.Runtime.Logging.ILogger)">
14348 <summary>Initializes the runtime.</summary>
14349 <param name="logger">The runtime logging service</param>
14350 </member>
14351 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.MapUriToLocalPath(System.Uri)">
14352 <summary>Maps a Uri to a local path.</summary>
14353 <param name="uri">The uri to map</param>
14354 <returns>The local path</returns>
14355 </member>
14356 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.Resolve``1">
14357 <summary>Resolves a reference to a component that implements the specified service.</summary>
14358 <returns>A component that implements the service</returns>
14359 </member>
14360 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.Resolve(System.Type)">
14361 <summary>Resolves a reference to a component that implements the specified service.</summary>
14362 <param name="service">The service type</param>
14363 <returns>A component that implements the service</returns>
14364 </member>
14365 <member name="M:Gallio.Runtime.Windsor.WindsorRuntime.ResolveAll``1">
14366 <summary>Resolves references to all components that implement the specified service.</summary>
14367 <returns>An array of components that implement the service</returns>
14368 </member>
14369 <member name="T:Gallio.Utilities.CurrentDirectorySwitcher">
14370 <summary>Sets <see cref="P:System.Environment.CurrentDirectory" /> when created, then restores it when disposed.</summary>
14371 </member>
14372 <member name="M:Gallio.Utilities.CurrentDirectorySwitcher.Dispose">
14373 <summary>Resets the current directory to its original saved value.</summary>
14374 <exception cref="T:System.IO.IOException">Thrown if the current directory could not be reset</exception>
14375 </member>
14376 <member name="T:Gallio.Utilities.EventHandlerUtils">
14377 <summary>Provides a few functions for working with <see cref="T:System.EventHandler" /> and <see cref="T:System.EventHandler`1" />. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14378 </member>
14379 <member name="M:Gallio.Utilities.EventHandlerUtils.SafeInvoke``1(System.EventHandler{``0},System.Object,``0)">
14380 <summary>Safely invokes each delegate in the invocation list of an event handler. Sends any exceptions thrown by the handler to <see cref="M:Gallio.Runtime.UnhandledExceptionPolicy.Report(System.String,System.Exception)" />.</summary>
14381 <param name="handlerChain">The event handler chain</param>
14382 <param name="sender">The sender</param>
14383 <param name="e">The event arguments</param>
14384 </member>
14385 <member name="M:Gallio.Utilities.EventHandlerUtils.SafeInvoke(System.EventHandler,System.Object,System.EventArgs)">
14386 <summary>Safely invokes each delegate in the invocation list of an event handler. Sends any exceptions thrown by the handler to <see cref="M:Gallio.Runtime.UnhandledExceptionPolicy.Report(System.String,System.Exception)" />.</summary>
14387 <param name="handlerChain">The event handler chain</param>
14388 <param name="sender">The sender</param>
14389 <param name="e">The event arguments</param>
14390 </member>
14391 <member name="T:Gallio.Utilities.ExceptionUtils">
14392 <summary>Provides helper functions for manipulating <see cref="T:System.Exception" />s. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14393 </member>
14394 <member name="M:Gallio.Utilities.ExceptionUtils.InvokeMethodWithoutTargetInvocationException(System.Reflection.MethodBase,System.Object,System.Object[])">
14395 <summary>Invokes a method without producing a <see cref="T:System.Reflection.TargetInvocationException" /></summary>
14396 <param name="method">The method to invoke</param>
14397 <param name="obj">The instance on which to invoke the method, or null if none</param>
14398 <param name="args">The method arguments, or null if none</param>
14399 <returns>The method return value, or null if none</returns>
14400 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="method" /> is null</exception>
14401 </member>
14402 <member name="M:Gallio.Utilities.ExceptionUtils.RethrowWithNoStackTraceLoss(System.Exception)">
14403 <summary>Rethrows an exception without discarding its stack trace. This enables the inner exception of <see cref="T:System.Reflection.TargetInvocationException" /> to be unwrapped.</summary>
14404 <param name="ex">The exception to rethrow</param>
14405 </member>
14406 <member name="M:Gallio.Utilities.ExceptionUtils.SafeToString(System.Exception)">
14407 <summary>
14408 <para> Safely converts an exception to a string. </para>
14409 <para> This method protects the caller from unexpected failures that may occur while reporting an exception of untrusted origin. If an error occurs while converting the exception to a string, this method returns a generic description of the exception that can be used instead of the real thing. </para>
14410 <para> It can happen that converting an exception to a string produces a secondary exception because the <see cref="M:System.Exception.ToString" /> method has been overridden or because the stack frames associated with the exception are malformed. For example, we observed one case of a <see cref="T:System.TypeLoadException" /> being thrown while printing an exception because one of the stack frames referred to a dynamic method with incorrect metadata. </para>
14411 </summary>
14412 <param name="ex">The exception</param>
14413 <returns>The string contents</returns>
14414 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="ex" /> is null</exception>
14415 </member>
14416 <member name="T:Gallio.Utilities.FileUtils">
14417 <summary>Utilities for manipulating files. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14418 </member>
14419 <member name="M:Gallio.Utilities.FileUtils.CanonicalizePath(System.String,System.String)">
14420 <summary>Makes an absolute path.</summary>
14421 <param name="baseDirectory">The base directory for resolving relative paths, or null to use the current directory</param>
14422 <param name="path">The path to canonicalize, or null if none</param>
14423 <returns>The absolute path, or null if none</returns>
14424 </member>
14425 <member name="M:Gallio.Utilities.FileUtils.CanonicalizePaths(System.String,System.Collections.Generic.IList{System.String})">
14426 <summary>Makes all paths in the list absolute.</summary>
14427 <param name="baseDirectory">The base directory for resolving relative paths, or null to use the current directory</param>
14428 <param name="paths">The list of paths to canonicalize in place</param>
14429 </member>
14430 <member name="M:Gallio.Utilities.FileUtils.CopyAll(System.String,System.String,System.Boolean)">
14431 <summary>Recursively copies files and folders from the source path to the destination.</summary>
14432 <param name="sourcePath">The source file or directory path</param>
14433 <param name="destPath">The destination file or directory path</param>
14434 <param name="overwrite">If true, overwrites existing files in the destination</param>
14435 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sourcePath" /> or <paramref name="destPath" /> is null</exception>
14436 </member>
14437 <member name="M:Gallio.Utilities.FileUtils.CopyAllIndirect(System.String,System.String,System.Action{System.String},Gallio.Action{System.String,System.String})">
14438 <summary>Recursively copies files and folders from the source path to the destination using an indirect mechanism to actually create a file or folder.</summary>
14439 <param name="sourcePath">The source file or directory path</param>
14440 <param name="destPath">The destination file or directory path</param>
14441 <param name="createDirectoryAction">A delegate used to create a directory with a given destination directory path, or null to do nothing</param>
14442 <param name="copyFileAction">A delegate used to copy a source file to a given destination file path, or null to do nothing</param>
14443 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sourcePath" /> or <paramref name="destPath" /> is null</exception>
14444 </member>
14445 <member name="M:Gallio.Utilities.FileUtils.CopyStreamContents(System.IO.Stream,System.IO.Stream)">
14446 <summary>Copies the contents of a source stream to a destination stream.</summary>
14447 <param name="sourceStream">The source stream</param>
14448 <param name="destStream">The destination stream</param>
14449 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="sourceStream" /> or <paramref name="destStream" /> is null</exception>
14450 </member>
14451 <member name="M:Gallio.Utilities.FileUtils.DeleteAll(System.String)">
14452 <summary>Recursively deletes a file or directory. Does nothing if the file or directory does not exist.</summary>
14453 <param name="path">The path</param>
14454 </member>
14455 <member name="M:Gallio.Utilities.FileUtils.EncodeFileName(System.String)">
14456 <summary>Replaces invalid characters in a file or directory name with underscores and trims it if it is too long.</summary>
14457 <param name="fileName">The file or directory name</param>
14458 <returns>The encoded file or directory name</returns>
14459 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="fileName" /> is null</exception>
14460 </member>
14461 <member name="M:Gallio.Utilities.FileUtils.GetFullPathOfParentDirectory(System.String)">
14462 <summary>Gets the full path of the containing directory.</summary>
14463 <param name="path">The path</param>
14464 <returns>The full path of the parent directory or null if it is at the root</returns>
14465 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="path" /> is null</exception>
14466 </member>
14467 <member name="M:Gallio.Utilities.FileUtils.StripTrailingBackslash(System.String)">
14468 <summary>Strips the trailing backslash off of a directory path, if present.</summary>
14469 <param name="path">The path to strip, or null if none</param>
14470 <returns>The stripped path, or null if none</returns>
14471 </member>
14472 <member name="T:Gallio.Utilities.MimeTypes">
14473 <summary>Defines constants for commonly used mime types. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14474 </member>
14475 <member name="F:Gallio.Utilities.MimeTypes.Binary">
14476 <summary>Binary data. This field is constant and read-only.</summary>
14477 </member>
14478 <member name="F:Gallio.Utilities.MimeTypes.Css">
14479 <summary>Cascading Style Sheet. This field is constant and read-only.</summary>
14480 </member>
14481 <member name="F:Gallio.Utilities.MimeTypes.Gif">
14482 <summary>GIF image. This field is constant and read-only.</summary>
14483 </member>
14484 <member name="F:Gallio.Utilities.MimeTypes.Html">
14485 <summary>HTML. This field is constant and read-only.</summary>
14486 </member>
14487 <member name="F:Gallio.Utilities.MimeTypes.JavaScript">
14488 <summary>JavaScript This field is constant and read-only.</summary>
14489 </member>
14490 <member name="F:Gallio.Utilities.MimeTypes.MHtml">
14491 <summary>MHTML web archive. This field is constant and read-only.</summary>
14492 </member>
14493 <member name="F:Gallio.Utilities.MimeTypes.PlainText">
14494 <summary>Plain text data. This field is constant and read-only.</summary>
14495 </member>
14496 <member name="F:Gallio.Utilities.MimeTypes.Png">
14497 <summary>PNG image. This field is constant and read-only.</summary>
14498 </member>
14499 <member name="F:Gallio.Utilities.MimeTypes.XHtml">
14500 <summary>Well-formed XHTML. This field is constant and read-only.</summary>
14501 </member>
14502 <member name="F:Gallio.Utilities.MimeTypes.Xml">
14503 <summary>Xml data. This field is constant and read-only.</summary>
14504 </member>
14505 <member name="M:Gallio.Utilities.MimeTypes.GetMimeTypeByExtension(System.String)">
14506 <summary>Guesses the mime type given a well-known extension.</summary>
14507 <param name="extension">The extension</param>
14508 <returns>The mime type, or null if not known</returns>
14509 <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="extension" /> is null</exception>
14510 </member>
14511 <member name="T:Gallio.Utilities.StringUtils">
14512 <summary>Provides utility functions for working with strings. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14513 </member>
14514 <member name="M:Gallio.Utilities.StringUtils.ToCharLiteral(System.Char)">
14515 <summary>Formats a character value as "'x'" or "'\n'" with support for escaped characters as a valid literal value. Encloses the char in single quotes (').</summary>
14516 <param name="value">The character value to format</param>
14517 <returns>The formatted character</returns>
14518 </member>
14519 <member name="M:Gallio.Utilities.StringUtils.ToHexDigit(System.Int32)">
14520 <summary>Gets a lowercase hexadecimal digit corresponding to the least significant nybble of the specified value.</summary>
14521 <param name="value">The value, only the last 4 bits of which are used</param>
14522 <returns>The hexadecimal digit</returns>
14523 </member>
14524 <member name="M:Gallio.Utilities.StringUtils.ToStringLiteral(System.String)">
14525 <summary>Formats a string value as ""abc\ndef"" with support for escaped characters as a valid literal value. Encloses the string in quotes (").</summary>
14526 <param name="value">The string value to format</param>
14527 <returns>The formatted string</returns>
14528 </member>
14529 <member name="M:Gallio.Utilities.StringUtils.ToUnquotedCharLiteral(System.Char)">
14530 <summary>Escapes a character value as "x" or "\n". Unlike <see cref="M:Gallio.Utilities.StringUtils.ToCharLiteral(System.Char)" />, does not enclose the literal in single quotes (').</summary>
14531 <param name="value">The character value to format</param>
14532 <returns>The unquoted char literal</returns>
14533 </member>
14534 <member name="M:Gallio.Utilities.StringUtils.ToUnquotedStringLiteral(System.String)">
14535 <summary>Escapes a string value such as "abc\ndef". Unlike <see cref="M:Gallio.Utilities.StringUtils.ToStringLiteral(System.String)" />, does not enclose the literal in quotes (").</summary>
14536 <param name="value">The string value to format</param>
14537 <returns>The unquoted string literal</returns>
14538 </member>
14539 <member name="M:Gallio.Utilities.StringUtils.Truncate(System.String,System.Int32)">
14540 <summary>Truncates the string to the specified maximum length. Discards characters at the end of the string with indices greater than or equal to <paramref name="maxLength" />.</summary>
14541 <param name="str">The string to truncate</param>
14542 <param name="maxLength">The maximum length of the string to retain</param>
14543 <returns>The truncated string</returns>
14544 </member>
14545 <member name="M:Gallio.Utilities.StringUtils.TruncateWithEllipsis(System.String,System.Int32)">
14546 <summary>If the string is longer than the specified maximum length, truncates it and appends an ellipsis mark ("..."). If the maximum length is less than or equal to 3, omits the ellipsis mark on truncation.</summary>
14547 <param name="str">The string to truncate</param>
14548 <param name="maxLength">The maximum length of the string to retain including the ellipsis mark when used</param>
14549 <returns>The truncated string</returns>
14550 </member>
14551 <member name="T:Gallio.Utilities.Sync">
14552 <summary>Provides helpers for cross-thread synchronization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14553 </member>
14554 <member name="M:Gallio.Utilities.Sync.Invoke``1(System.ComponentModel.ISynchronizeInvoke,Gallio.Func{``0})">
14555 <summary>Synchronizes a function that returns a value.</summary>
14556 <typeparam name="T">The function return type</typeparam>
14557 <param name="invoker">The invoker, such as a WinForms control</param>
14558 <param name="func">The function</param>
14559 <returns>The value returned by the function</returns>
14560 <exception cref="T:System.Exception">The exception thrown by the function</exception>
14561 </member>
14562 <member name="M:Gallio.Utilities.Sync.Invoke(System.ComponentModel.ISynchronizeInvoke,Gallio.Action)">
14563 <summary>Synchronizes an action.</summary>
14564 <param name="invoker">The invoker, such as a WinForms control</param>
14565 <param name="action">The action</param>
14566 <exception cref="T:System.Exception">The exception thrown by the action</exception>
14567 </member>
14568 <member name="T:Gallio.Utilities.XmlSerializationUtils">
14569 <summary>Utilities and constants used for serialization. This is a <see langword="static class" /> and so cannot be inherited or instantiated.</summary>
14570 </member>
14571 <member name="F:Gallio.Utilities.XmlSerializationUtils.GallioNamespace">
14572 <summary>The XML namespace for all Gallio XML types. This field is constant and read-only.</summary>
14573 </member>
14574 <member name="M:Gallio.Utilities.XmlSerializationUtils.LoadFromXml``1(System.String)">
14575 <summary>Loads an object graph from an Xml file using <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
14576 <typeparam name="T">The root object type</typeparam>
14577 <param name="filename">The filename</param>
14578 <returns>The root object</returns>
14579 </member>
14580 <member name="M:Gallio.Utilities.XmlSerializationUtils.SaveToXml``1(``0,System.String)">
14581 <summary>Saves an object graph to a pretty-printed Xml file using <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
14582 <typeparam name="T">The root object type</typeparam>
14583 <param name="root">The root object</param>
14584 <param name="filename">The filename</param>
14585 </member>
14586 <member name="T:Gallio.Utilities.Hash64">
14587 <summary>A 64bit hash code value type. Provides somewhat more protection against collisions than 32 bit hashes.</summary>
14588 </member>
14589 <member name="M:Gallio.Utilities.Hash64.Add(System.String)">
14590 <summary>Produces a new hash code by combining information from the specified string with this hash code.</summary>
14591 <param name="str">The string, may be null if none</param>
14592 <returns>The augmented hash code</returns>
14593 </member>
14594 <member name="M:Gallio.Utilities.Hash64.CreateUniqueHash">
14595 <summary>Creates a proabilistically unique 64bit hash code.</summary>
14596 </member>
14597 <member name="M:Gallio.Utilities.Hash64.ToString">
14598 <summary>Returns the fully qualified type name of this instance.</summary>
14599 <returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
14600 </member>
14601 <member name="T:Gallio.Utilities.Memoizer`1">
14602 <summary>A structure that memoizes the result of some computation for later reuse.</summary>
14603 <typeparam name="T">The value type</typeparam>
14604 </member>
14605 <member name="M:Gallio.Utilities.Memoizer`1.Memoize(Gallio.Func{`0})">
14606 <summary>Gets the memoized value if available, otherwise populates it using the specified populator function and stores it for later reuse.</summary>
14607 <param name="populator">The populator</param>
14608 <returns>The value returned by the populator, possibly memoized</returns>
14609 </member>
14610 <member name="T:System.Runtime.CompilerServices.ExtensionAttribute">
14611 <summary>Internal implementation of the .Net 3.5 ExtensionAttribute. This class cannot be inherited.</summary>
14612 </member>
14613 </members>
14614</doc>