forked from SolrNet/SolrNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGallio35.xml
293 lines (293 loc) · 14.7 KB
/
Gallio35.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<?xml version="1.0"?>
<doc>
<assembly>
<name>Gallio35</name>
</assembly>
<members>
<member name="T:Gallio.Common.Linq.ActionExtensions">
<summary>
Extension methods for <see cref="T:Gallio.Common.Action"/> delegates.
</summary>
</member>
<member name="M:Gallio.Common.Linq.ActionExtensions.AsUnitFunc(System.Action)">
<summary>
Wraps an action as a function that returns a dummy <see cref="T:Gallio.Common.Unit"/> value.
</summary>
<returns>The function.</returns>
</member>
<member name="T:Gallio.Common.Linq.ExpressionExtensions">
<summary>
Extension methods for <see cref="T:System.Linq.Expressions.Expression`1"/>.
</summary>
</member>
<member name="M:Gallio.Common.Linq.ExpressionExtensions.Bind``2(System.Linq.Expressions.Expression{System.Func{``0,``1}},``0)">
<summary>
Binds the arguments of a function expression.
</summary>
<typeparam name="T">The parameter type.</typeparam>
<typeparam name="TResult">The result type.</typeparam>
<param name="expr">The expression.</param>
<param name="arg">The argument value.</param>
<returns>The bound function.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionExtensions.Bind``3(System.Linq.Expressions.Expression{System.Func{``0,``2}},``0,``1)">
<summary>
Binds the arguments of a function expression.
</summary>
<typeparam name="T1">The first parameter type.</typeparam>
<typeparam name="T2">The second parameter type.</typeparam>
<typeparam name="TResult">The result type.</typeparam>
<param name="expr">The expression.</param>
<param name="arg1">The first argument value.</param>
<param name="arg2">The second argument value.</param>
<returns>The bound function.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionExtensions.IsCapturedVariable(System.Linq.Expressions.Expression)">
<summary>
Returns true if the expression represents a captured variable within a closure.
</summary>
<param name="expr">The expression.</param>
<returns>True if the expression represents a captured variable.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionExtensions.IsCapturedVariable(System.Linq.Expressions.MemberExpression)">
<summary>
Returns true if the expression represents a captured variable within a closure.
</summary>
<param name="expr">The expression.</param>
<returns>True if the expression represents a captured variable.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionExtensions.IsCapturedVariableOrParameter(System.Linq.Expressions.Expression)">
<summary>
Returns true if the expression represents a captured variable or a parameter.
</summary>
<param name="expr">The expression.</param>
<returns>True if the expression represents a captured variable or a parameter.</returns>
</member>
<member name="T:Gallio.Common.Linq.ExpressionInstrumentor">
<summary>
Instuments an <see cref="T:System.Linq.Expressions.Expression`1"/> to intercept intermediate results
from each sub-expression.
</summary>
</member>
<member name="M:Gallio.Common.Linq.ExpressionInstrumentor.Compile``1(System.Linq.Expressions.Expression{``0})">
<summary>
Compiles an expression to introduce trace points.
</summary>
<typeparam name="T">The expression type.</typeparam>
<param name="expr">The expression tree.</param>
<returns>The compiled delegate representing expression.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expr"/> is null.</exception>
</member>
<member name="M:Gallio.Common.Linq.ExpressionInstrumentor.Rewrite``1(System.Linq.Expressions.Expression{``0})">
<summary>
Rewrites an expression tree to introduce trace points.
</summary>
<typeparam name="T">The expression type.</typeparam>
<param name="expr">The expression tree.</param>
<returns>The compiled delegate representing expression.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="expr"/> is null.</exception>
</member>
<member name="M:Gallio.Common.Linq.ExpressionInstrumentor.Intercept``1(System.Linq.Expressions.Expression,System.Func{``0})">
<summary>
Evaluates a sub-expression and collects trace information.
</summary>
<typeparam name="T">The return type of the sub-expression.</typeparam>
<param name="expr">The sub-expression to evaluate.</param>
<param name="continuation">The continuation that evaluates the sub-expression.</param>
<returns>The result of the evaluation.</returns>
</member>
<member name="T:Gallio.Common.Linq.ExpressionVisitor`1">
<summary>
Performs different actions depending on the type of <see cref="T:System.Linq.Expressions.Expression"/> visited.
</summary>
<typeparam name="T">The visitor result type.</typeparam>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.Visit(System.Linq.Expressions.Expression)">
<summary>
Visits the expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitBinary(System.Linq.Expressions.BinaryExpression)">
<summary>
Visits a binary expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitUnary(System.Linq.Expressions.UnaryExpression)">
<summary>
Visits a unary expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
<summary>
Visits a call expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitConditional(System.Linq.Expressions.ConditionalExpression)">
<summary>
Visits a conditional expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitConstant(System.Linq.Expressions.ConstantExpression)">
<summary>
Visits a constant expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitInvocation(System.Linq.Expressions.InvocationExpression)">
<summary>
Visits an invocation expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitLambda(System.Linq.Expressions.LambdaExpression)">
<summary>
Visits a lambda expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitListInit(System.Linq.Expressions.ListInitExpression)">
<summary>
Visits an list init expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitMember(System.Linq.Expressions.MemberExpression)">
<summary>
Visits a member access expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitMemberInit(System.Linq.Expressions.MemberInitExpression)">
<summary>
Visits a member init expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitNew(System.Linq.Expressions.NewExpression)">
<summary>
Visits a new expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitNewArray(System.Linq.Expressions.NewArrayExpression)">
<summary>
Visits a new array expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitParameter(System.Linq.Expressions.ParameterExpression)">
<summary>
Visits a parameter expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitTypeBinary(System.Linq.Expressions.TypeBinaryExpression)">
<summary>
Visits a type binary expression.
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="M:Gallio.Common.Linq.ExpressionVisitor`1.VisitAny(System.Linq.Expressions.Expression)">
<summary>
<para>
Visits an expression of any type that does not have other special behavior.
</para>
<para>
The default implementation throws <see cref="T:System.NotSupportedException"/>.
</para>
</summary>
<param name="expr">The expression.</param>
<returns>The result.</returns>
</member>
<member name="T:Gallio.Common.Linq.NamespaceDoc">
<summary>
The Gallio.Common.Linq namespace contains types for manipulating Linq expressions.
</summary>
</member>
<member name="T:Gallio.Framework.Assertions.AssertionConditionEvaluator">
<summary>
Evaluates a conditional expression. If the condition evaluates differently
than expected, returns a detailed <see cref="T:Gallio.Framework.Assertions.AssertionFailure"/> that
describes the formatted values of relevant sub-expressions within the condtion.
</summary>
</member>
<member name="M:Gallio.Framework.Assertions.AssertionConditionEvaluator.Eval(System.Linq.Expressions.Expression{System.Func{System.Boolean}},System.Boolean,System.String,System.Object[])">
<summary>
Evaluates a conditional expression.
</summary>
<param name="condition">The conditional expression.</param>
<param name="expectedResult">The expected result.</param>
<param name="messageFormat">The custom assertion message format, or null if none.</param>
<param name="messageArgs">The custom assertion message arguments, or null if none.</param>
<returns>The assertion failure if the conditional expression evaluated
to a different result than was expected or threw an exception, otherwise null.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="condition"/> is null.</exception>
</member>
<member name="T:Gallio.Runtime.Formatting.ExpressionFormattingRule">
<summary>
A formatting rule for <see cref="T:System.Linq.Expressions.Expression"/>.
</summary>
<remarks>
<para>
Formats expression trees using a more familiar C#-like syntax than
the default. Also recognizes captured variables and displays them
naturally to conceal the implied field access to an anonymous class.
</para>
<para>
Made-up syntax for nodes that cannot be directly represented in C#.
<list type="bullet">
<item>Power operator: **, as in a ** b</item>
<item>Quote expression: `...`, as in `a + b`</item>
<item>Constants: formatted recursively using other formatters, which may yield unusual syntax</item>
</list>
</para>
</remarks>
</member>
<member name="M:Gallio.Runtime.Formatting.ExpressionFormattingRule.GetPriority(System.Type)">
<inheritdoc />
</member>
<member name="M:Gallio.Runtime.Formatting.ExpressionFormattingRule.Format(System.Object,Gallio.Runtime.Formatting.IFormatter)">
<inheritdoc />
</member>
<member name="T:Gallio.Runtime.Formatting.FormatterExtensions">
<summary>
Extensions methods for formatting.
</summary>
</member>
<member name="M:Gallio.Runtime.Formatting.FormatterExtensions.Format(System.Object)">
<summary>
Formats an object using the default <see cref="T:Gallio.Runtime.Formatting.IFormatter"/>.
</summary>
<param name="obj">The object to format.</param>
<returns>The formatted object.</returns>
</member>
<member name="M:Gallio.Runtime.Formatting.FormatterExtensions.Format(System.Object,Gallio.Runtime.Formatting.IFormatter)">
<summary>
Formats an object using the specified <see cref="T:Gallio.Runtime.Formatting.IFormatter"/>.
</summary>
<param name="obj">The object to format.</param>
<param name="formatter">The formatter to use, or null for the default.</param>
<returns>The formatted object.</returns>
</member>
</members>
</doc>