forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Common.xml
More file actions
410 lines (401 loc) · 17.8 KB
/
ServiceStack.Common.xml
File metadata and controls
410 lines (401 loc) · 17.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Common</name>
</assembly>
<members>
<member name="T:ServiceStack.MiniProfiler.Data.ExecuteType">
<summary>
Categories of sql statements.
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.Data.ExecuteType.None">
<summary>
Unknown
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.Data.ExecuteType.NonQuery">
<summary>
DML statements that alter database state, e.g. INSERT, UPDATE
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.Data.ExecuteType.Scalar">
<summary>
Statements that return a single record
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.Data.ExecuteType.Reader">
<summary>
Statements that iterate over a result set
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.Data.IDbProfiler">
<summary>
A callback for ProfiledDbConnection and family
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.IDbProfiler.ExecuteStart(System.Data.Common.DbCommand,ServiceStack.MiniProfiler.Data.ExecuteType)">
<summary>
Called when a command starts executing
</summary>
<param name="profiledDbCommand"></param>
<param name="executeType"></param>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.IDbProfiler.ExecuteFinish(System.Data.Common.DbCommand,ServiceStack.MiniProfiler.Data.ExecuteType,System.Data.Common.DbDataReader)">
<summary>
Called when a reader finishes executing
</summary>
<param name="profiledDbCommand"></param>
<param name="executeType"></param>
<param name="reader"></param>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.IDbProfiler.ReaderFinish(System.Data.Common.DbDataReader)">
<summary>
Called when a reader is done iterating through the data
</summary>
<param name="reader"></param>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.IDbProfiler.OnError(System.Data.Common.DbCommand,ServiceStack.MiniProfiler.Data.ExecuteType,System.Exception)">
<summary>
Called when an error happens during execution of a command
</summary>
<param name="profiledDbCommand"></param>
<param name="executeType"></param>
<param name="exception"></param>
</member>
<member name="P:ServiceStack.MiniProfiler.Data.IDbProfiler.IsActive">
<summary>
True if the profiler instance is active
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.Data.ProfiledConnection">
<summary>
Wraps a database connection, allowing sql execution timings to be collected when a <see cref="T:ServiceStack.MiniProfiler.Data.IDbProfiler"/> session is started.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledConnection.#ctor(System.Data.Common.DbConnection,ServiceStack.MiniProfiler.Data.IDbProfiler,System.Boolean)">
<summary>
Returns a new <see cref="T:ServiceStack.MiniProfiler.Data.ProfiledConnection"/> that wraps <paramref name="connection"/>,
providing query execution profiling. If profiler is null, no profiling will occur.
</summary>
<param name="connection">Your provider-specific flavor of connection, e.g. SqlConnection, OracleConnection</param>
<param name="profiler">The currently started <see cref="T:ServiceStack.MiniProfiler.Data.IDbProfiler"/> or null.</param>
<param name="autoDisposeConnection">Determines whether the ProfiledDbConnection will dispose the underlying connection.</param>
</member>
<member name="P:ServiceStack.MiniProfiler.Data.ProfiledConnection.InnerConnection">
<summary>
The underlying, real database connection to your db provider.
</summary>
</member>
<member name="P:ServiceStack.MiniProfiler.Data.ProfiledConnection.Profiler">
<summary>
The current profiler instance; could be null.
</summary>
</member>
<member name="P:ServiceStack.MiniProfiler.Data.ProfiledConnection.WrappedConnection">
<summary>
The raw connection this is wrapping
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory">
<summary>
Wrapper for a db provider factory to enable profiling
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.Instance">
<summary>
Every provider factory must have an Instance public field
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.InitProfiledDbProviderFactory(ServiceStack.MiniProfiler.Data.IDbProfiler,System.Data.Common.DbProviderFactory)">
<summary>
Allow to re-init the provider factory.
</summary>
<param name="profiler"></param>
<param name="wrappedFactory"></param>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.#ctor(ServiceStack.MiniProfiler.Data.IDbProfiler,System.Data.Common.DbProviderFactory)">
<summary>
proxy
</summary>
<param name="profiler"></param>
<param name="wrappedFactory"></param>
</member>
<member name="P:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CanCreateDataSourceEnumerator">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateDataSourceEnumerator">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateCommand">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateConnection">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateParameter">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateConnectionStringBuilder">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateCommandBuilder">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreateDataAdapter">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Data.ProfiledProviderFactory.CreatePermission(System.Security.Permissions.PermissionState)">
<summary>
proxy
</summary>
</member>
<member name="M:ServiceStack.EnumerableExtensions.Safe``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Return T[0] when enumerable is null, safe to use in enumerations like foreach
</summary>
</member>
<member name="M:ServiceStack.EnumExtensions.ToDescription(System.Enum)">
<summary>
Gets the textual description of the enum if it has one. e.g.
<code>
enum UserColors
{
[Description("Bright Red")]
BrightRed
}
UserColors.BrightRed.ToDescription();
</code>
</summary>
<param name="enum"></param>
<returns></returns>
</member>
<member name="T:ServiceStack.Logging.ConsoleLogFactory">
<summary>
Creates a Console Logger, that logs all messages to: System.Console
Made public so its testable
</summary>
</member>
<member name="T:ServiceStack.Logging.ConsoleLogger">
<summary>
Default logger is to Console.WriteLine
Made public so its testable
</summary>
</member>
<member name="M:ServiceStack.Logging.ConsoleLogger.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:ServiceStack.Logging.DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.ConsoleLogger.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:ServiceStack.Logging.DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.ConsoleLogger.Log(System.Object,System.Exception)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="M:ServiceStack.Logging.ConsoleLogger.LogFormat(System.Object,System.Object[])">
<summary>
Logs the format.
</summary>
</member>
<member name="M:ServiceStack.Logging.ConsoleLogger.Log(System.Object)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="T:ServiceStack.Logging.DebugLogFactory">
<summary>
Creates a Debug Logger, that logs all messages to: System.Diagnostics.Debug
Made public so its testable
</summary>
</member>
<member name="T:ServiceStack.Logging.DebugLogger">
<summary>
Default logger is to System.Diagnostics.Debug.WriteLine
Made public so its testable
</summary>
</member>
<member name="M:ServiceStack.Logging.DebugLogger.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:ServiceStack.Logging.DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.DebugLogger.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:ServiceStack.Logging.DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.DebugLogger.Log(System.Object,System.Exception)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="M:ServiceStack.Logging.DebugLogger.LogFormat(System.Object,System.Object[])">
<summary>
Logs the format.
</summary>
</member>
<member name="M:ServiceStack.Logging.DebugLogger.Log(System.Object)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="M:ServiceStack.Reflection.PropertyAccessor`1.TypedGetPropertyFn``1">
<summary>
Func to get the Strongly-typed field
</summary>
</member>
<member name="M:ServiceStack.Reflection.PropertyAccessor`1.ValueTypedGetPropertyFn``1">
<summary>
Required to cast the return ValueType to an object for caching
</summary>
</member>
<member name="M:ServiceStack.Reflection.PropertyAccessor`1.TypedSetPropertyFn``1">
<summary>
Func to set the Strongly-typed field
</summary>
</member>
<member name="M:ServiceStack.Reflection.PropertyAccessor`1.ValueTypesSetPropertyFn``1">
<summary>
Required to cast the ValueType to an object for caching
</summary>
</member>
<member name="M:ServiceStack.Reflection.PropertyAccessor`1.UnTypedSetPropertyFn``1">
<summary>
Required to cast the ValueType to an object for caching
</summary>
</member>
<member name="M:ServiceStack.Reflection.StaticAccessors`1.TypedGetPropertyFn``1(System.Reflection.PropertyInfo)">
<summary>
Func to get the Strongly-typed field
</summary>
</member>
<member name="M:ServiceStack.Reflection.StaticAccessors`1.ValueUnTypedGetPropertyFn``1(System.Reflection.PropertyInfo)">
<summary>
Required to cast the return ValueType to an object for caching
</summary>
</member>
<member name="M:ServiceStack.Reflection.StaticAccessors`1.TypedSetPropertyFn``1(System.Reflection.PropertyInfo)">
<summary>
Func to set the Strongly-typed field
</summary>
</member>
<member name="M:ServiceStack.Reflection.StaticAccessors`1.ValueUnTypedSetPropertyFn``1(System.Reflection.PropertyInfo)">
<summary>
Required to cast the ValueType to an object for caching
</summary>
</member>
<member name="M:ServiceStack.Reflection.StaticAccessors`1.UnTypedSetPropertyFn``1(System.Reflection.PropertyInfo)">
<summary>
Required to cast the ValueType to an object for caching
</summary>
</member>
<member name="T:ServiceStack.IPAddressExtensions">
<summary>
Useful IPAddressExtensions from:
http://blogs.msdn.com/knom/archive/2008/12/31/ip-address-calculations-with-c-subnetmasks-networks.aspx
</summary>
</member>
<member name="M:ServiceStack.IPAddressExtensions.GetAllNetworkInterfaceIpv4Addresses">
<summary>
Gets the ipv4 addresses from all Network Interfaces that have Subnet masks.
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.IPAddressExtensions.GetAllNetworkInterfaceIpv6Addresses">
<summary>
Gets the ipv6 addresses from all Network Interfaces.
</summary>
<returns></returns>
</member>
<member name="T:ServiceStack.Support.AdapterBase">
<summary>
Common functionality when creating adapters
</summary>
</member>
<member name="M:ServiceStack.Support.AdapterBase.Execute``1(System.Func{``0})">
<summary>
Executes the specified expression.
</summary>
<typeparam name="T"></typeparam>
<param name="action">The action.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Support.AdapterBase.Execute(System.Action)">
<summary>
Executes the specified action (for void methods).
</summary>
<param name="action">The action.</param>
</member>
<member name="T:ServiceStack.Support.InMemoryLogFactory">
<summary>
Note: InMemoryLog keeps all logs in memory, so don't use it long running exceptions
Returns a thread-safe InMemoryLog which you can use while *TESTING*
to provide a detailed analysis of your logs.
</summary>
</member>
<member name="T:ServiceStack.UrnId">
<summary>
Creates a Unified Resource Name (URN) with the following formats:
- urn:{TypeName}:{IdFieldValue} e.g. urn:UserSession:1
- urn:{TypeName}:{IdFieldName}:{IdFieldValue} e.g. urn:UserSession:UserId:1
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:ServiceStack.AssertUtils.AreNotNull(System.Collections.Generic.IDictionary{System.String,System.Object})" -->
<member name="M:ServiceStack.CommandsUtils.ExecuteAsyncCommandExec(System.Collections.Generic.IEnumerable{ServiceStack.Commands.ICommandExec})">
<summary>
Provide the an option for the callee to block until all commands are executed
</summary>
<param name="commands"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.FuncUtils.TryExec(System.Action)">
<summary>
Invokes the action provided and returns true if no excpetion was thrown.
Otherwise logs the exception and returns false if an exception was thrown.
</summary>
<param name="action">The action.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.PerfUtils.MeasureFor(System.Action,System.Int32)">
<summary>
Runs an action for a minimum of runForMs
</summary>
<param name="fn">What to run</param>
<param name="runForMs">Minimum ms to run for</param>
<returns>time elapsed in micro seconds</returns>
</member>
<member name="M:ServiceStack.PerfUtils.Measure(System.Action,System.Int32,System.Int32,System.Action,System.Action,System.Action)">
<summary>
Returns average microseconds an action takes when run for the specified runForMs
</summary>
<param name="fn">What to run</param>
<param name="times">How many times to run for each iteration</param>
<param name="runForMs">Minimum ms to run for</param>
<param name="setup"></param>
<param name="warmup"></param>
<param name="teardown"></param>
<returns></returns>
</member>
</members>
</doc>