elmah 1.1.11517.0.20100822

Sign up to get free protection for your applications and to get access to all the features.
Binary file
Binary file
@@ -0,0 +1,1604 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>Elmah</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Elmah.Assertions.AssertionFactoryHandler">
8
+ <summary>
9
+ Represents the method that will be responsible for creating an
10
+ assertion object and initializing it from an XML configuration
11
+ element.
12
+ </summary>
13
+ </member>
14
+ <member name="T:Elmah.Assertions.AssertionFactory">
15
+ <summary>
16
+ Holds factory methods for creating configured assertion objects.
17
+ </summary>
18
+ </member>
19
+ <member name="M:Elmah.Assertions.AssertionFactory.DecodeClrTypeNamespaceFromXmlNamespace(System.String,System.String@,System.String@)">
20
+ <remarks>
21
+ Ideally, we would be able to use SoapServices.DecodeXmlNamespaceForClrTypeNamespace
22
+ but that requires a link demand permission that will fail in partially trusted
23
+ environments such as ASP.NET medium trust.
24
+ </remarks>
25
+ </member>
26
+ <member name="T:Elmah.Assertions.ComparisonAssertion">
27
+ <summary>
28
+ An assertion implementation whose test is based on whether
29
+ the result of an input expression evaluated against a context
30
+ matches a regular expression pattern or not.
31
+ </summary>
32
+ </member>
33
+ <member name="T:Elmah.Assertions.IAssertion">
34
+ <summary>
35
+ Provides evaluation of a context to determine whether it matches
36
+ certain criteria or not.
37
+ </summary>
38
+ </member>
39
+ <member name="M:Elmah.Assertions.IAssertion.Test(System.Object)">
40
+ <remarks>
41
+ The context is typed generically as System.Object when it could have
42
+ been restricted to System.Web.HttpContext and also avoid unnecessary
43
+ casting downstream. However, using object allows simple
44
+ assertions to be unit-tested without having to stub out a lot of
45
+ the classes from System.Web (most of which cannot be stubbed anyhow
46
+ due to lack of virtual and instance methods).
47
+ </remarks>
48
+ </member>
49
+ <member name="T:Elmah.Assertions.CompositeAssertion">
50
+ <summary>
51
+ Read-only collection of <see cref="T:Elmah.Assertions.IAssertion"/> instances.
52
+ </summary>
53
+ </member>
54
+ <member name="T:Elmah.DataBinder">
55
+ <summary>
56
+ Provides data expression evaluation facilites similar to
57
+ <see cref="T:System.Web.UI.DataBinder"/> in ASP.NET.
58
+ </summary>
59
+ </member>
60
+ <member name="T:Elmah.Assertions.JScriptAssertion">
61
+ <summary>
62
+ An assertion implementation that uses a JScript expression to
63
+ determine the outcome.
64
+ </summary>
65
+ <remarks>
66
+ Each instance of this type maintains a separate copy of the JScript
67
+ engine so use it sparingly. For example, instead of creating several
68
+ objects, each with different a expression, try and group all
69
+ expressions that apply to particular context into a single compound
70
+ JScript expression using the conditional-OR (||) operator.
71
+ </remarks>
72
+ </member>
73
+ <member name="T:Elmah.Assertions.JScriptAssertion.PartialTrustEvaluationStrategy">
74
+ <summary>
75
+ Uses the JScript eval function to compile and evaluate the
76
+ expression against the context on each evaluation.
77
+ </summary>
78
+ </member>
79
+ <member name="T:Elmah.Assertions.JScriptAssertion.FullTrustEvaluationStrategy">
80
+ <summary>
81
+ Compiles the given expression into a JScript function at time of
82
+ construction and then simply invokes it during evaluation, using
83
+ the context as a parameter.
84
+ </summary>
85
+ </member>
86
+ <member name="T:Elmah.Assertions.RegexMatchAssertion">
87
+ <summary>
88
+ An assertion implementation whose test is based on whether
89
+ the result of an input expression evaluated against a context
90
+ matches a regular expression pattern or not.
91
+ </summary>
92
+ </member>
93
+ <member name="T:Elmah.Assertions.StaticAssertion">
94
+ <summary>
95
+ An static assertion implementation that always evaluates to
96
+ a preset value.
97
+ </summary>
98
+ </member>
99
+ <member name="T:Elmah.Assertions.TypeAssertion">
100
+ <summary>
101
+ An assertion implementation whose test is based on whether
102
+ the result of an input expression evaluated against a context
103
+ matches a regular expression pattern or not.
104
+ </summary>
105
+ </member>
106
+ <member name="T:Elmah.AboutPage">
107
+ <summary>
108
+ Renders an HTML page that presents information about the version,
109
+ build configuration, source files as well as a method to check
110
+ for updates.
111
+ </summary>
112
+ </member>
113
+ <member name="T:Elmah.ErrorPageBase">
114
+ <summary>
115
+ Provides the base implementation and layout for most pages that render
116
+ HTML for the error log.
117
+ </summary>
118
+ </member>
119
+ <member name="T:Elmah.AccessErrorLog">
120
+ <summary>
121
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses Microsoft Access
122
+ as its backing store.
123
+ </summary>
124
+ <remarks>
125
+ The MDB file is automatically created at the path specified in the
126
+ connection string if it does not already exist.
127
+ </remarks>
128
+ </member>
129
+ <member name="T:Elmah.ErrorLog">
130
+ <summary>
131
+ Represents an error log capable of storing and retrieving errors
132
+ generated in an ASP.NET Web application.
133
+ </summary>
134
+ </member>
135
+ <member name="M:Elmah.ErrorLog.Log(Elmah.Error)">
136
+ <summary>
137
+ Logs an error in log for the application.
138
+ </summary>
139
+ </member>
140
+ <member name="M:Elmah.ErrorLog.BeginLog(Elmah.Error,System.AsyncCallback,System.Object)">
141
+ <summary>
142
+ When overridden in a subclass, begins an asynchronous version
143
+ of <see cref="M:Elmah.ErrorLog.Log(Elmah.Error)"/>.
144
+ </summary>
145
+ </member>
146
+ <member name="M:Elmah.ErrorLog.EndLog(System.IAsyncResult)">
147
+ <summary>
148
+ When overridden in a subclass, ends an asynchronous version
149
+ of <see cref="M:Elmah.ErrorLog.Log(Elmah.Error)"/>.
150
+ </summary>
151
+ </member>
152
+ <member name="M:Elmah.ErrorLog.GetError(System.String)">
153
+ <summary>
154
+ Retrieves a single application error from log given its
155
+ identifier, or null if it does not exist.
156
+ </summary>
157
+ </member>
158
+ <member name="M:Elmah.ErrorLog.BeginGetError(System.String,System.AsyncCallback,System.Object)">
159
+ <summary>
160
+ When overridden in a subclass, begins an asynchronous version
161
+ of <see cref="M:Elmah.ErrorLog.GetError(System.String)"/>.
162
+ </summary>
163
+ </member>
164
+ <member name="M:Elmah.ErrorLog.EndGetError(System.IAsyncResult)">
165
+ <summary>
166
+ When overridden in a subclass, ends an asynchronous version
167
+ of <see cref="M:Elmah.ErrorLog.GetError(System.String)"/>.
168
+ </summary>
169
+ </member>
170
+ <member name="M:Elmah.ErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
171
+ <summary>
172
+ Retrieves a page of application errors from the log in
173
+ descending order of logged time.
174
+ </summary>
175
+ </member>
176
+ <member name="M:Elmah.ErrorLog.BeginGetErrors(System.Int32,System.Int32,System.Collections.IList,System.AsyncCallback,System.Object)">
177
+ <summary>
178
+ When overridden in a subclass, begins an asynchronous version
179
+ of <see cref="M:Elmah.ErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)"/>.
180
+ </summary>
181
+ </member>
182
+ <member name="M:Elmah.ErrorLog.EndGetErrors(System.IAsyncResult)">
183
+ <summary>
184
+ When overridden in a subclass, ends an asynchronous version
185
+ of <see cref="M:Elmah.ErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)"/>.
186
+ </summary>
187
+ </member>
188
+ <member name="M:Elmah.ErrorLog.GetDefault(System.Web.HttpContext)">
189
+ <summary>
190
+ Gets the default error log implementation specified in the
191
+ configuration file, or the in-memory log implemention if
192
+ none is configured.
193
+ </summary>
194
+ </member>
195
+ <member name="P:Elmah.ErrorLog.Name">
196
+ <summary>
197
+ Get the name of this log.
198
+ </summary>
199
+ </member>
200
+ <member name="P:Elmah.ErrorLog.ApplicationName">
201
+ <summary>
202
+ Gets the name of the application to which the log is scoped.
203
+ </summary>
204
+ </member>
205
+ <member name="P:Elmah.ErrorLog.Default">
206
+ <summary>
207
+ Gets the default error log implementation specified in the
208
+ configuration file, or the in-memory log implemention if
209
+ none is configured.
210
+ </summary>
211
+ </member>
212
+ <member name="M:Elmah.AccessErrorLog.#ctor(System.Collections.IDictionary)">
213
+ <summary>
214
+ Initializes a new instance of the <see cref="T:Elmah.AccessErrorLog"/> class
215
+ using a dictionary of configured settings.
216
+ </summary>
217
+ </member>
218
+ <member name="M:Elmah.AccessErrorLog.#ctor(System.String)">
219
+ <summary>
220
+ Initializes a new instance of the <see cref="T:Elmah.AccessErrorLog"/> class
221
+ to use a specific connection string for connecting to the database.
222
+ </summary>
223
+ </member>
224
+ <member name="M:Elmah.AccessErrorLog.Log(Elmah.Error)">
225
+ <summary>
226
+ Logs an error to the database.
227
+ </summary>
228
+ <remarks>
229
+ Use the stored procedure called by this implementation to set a
230
+ policy on how long errors are kept in the log. The default
231
+ implementation stores all errors for an indefinite time.
232
+ </remarks>
233
+ </member>
234
+ <member name="M:Elmah.AccessErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
235
+ <summary>
236
+ Returns a page of errors from the databse in descending order
237
+ of logged time.
238
+ </summary>
239
+ </member>
240
+ <member name="M:Elmah.AccessErrorLog.GetError(System.String)">
241
+ <summary>
242
+ Returns the specified error from the database, or null
243
+ if it does not exist.
244
+ </summary>
245
+ </member>
246
+ <member name="P:Elmah.AccessErrorLog.Name">
247
+ <summary>
248
+ Gets the name of this error log implementation.
249
+ </summary>
250
+ </member>
251
+ <member name="P:Elmah.AccessErrorLog.ConnectionString">
252
+ <summary>
253
+ Gets the connection string used by the log to connect to the database.
254
+ </summary>
255
+ </member>
256
+ <member name="T:Elmah.ApplicationException">
257
+ <summary>
258
+ The exception that is thrown when a non-fatal error occurs.
259
+ This exception also serves as the base for all exceptions thrown by
260
+ this library.
261
+ </summary>
262
+ </member>
263
+ <member name="M:Elmah.ApplicationException.#ctor">
264
+ <summary>
265
+ Initializes a new instance of the <see cref="T:Elmah.ApplicationException"/> class.
266
+ </summary>
267
+ </member>
268
+ <member name="M:Elmah.ApplicationException.#ctor(System.String)">
269
+ <summary>
270
+ Initializes a new instance of the <see cref="T:Elmah.ApplicationException"/> class
271
+ with a specified error message.
272
+ </summary>
273
+ </member>
274
+ <member name="M:Elmah.ApplicationException.#ctor(System.String,System.Exception)">
275
+ <summary>
276
+ Initializes a new instance of the <see cref="T:Elmah.ApplicationException"/>
277
+ class with a specified error message and a reference to the
278
+ inner exception that is the cause of this exception.
279
+ </summary>
280
+ </member>
281
+ <member name="M:Elmah.ApplicationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
282
+ <summary>
283
+ Initializes a new instance of the <see cref="T:Elmah.ApplicationException"/> class
284
+ with serialized data.
285
+ </summary>
286
+ </member>
287
+ <member name="F:Elmah.Build.Status">
288
+ <summary>
289
+ This is the status or milestone of the build. Examples are
290
+ M1, M2, ..., Mn, BETA1, BETA2, RC1, RC2, RTM.
291
+ </summary>
292
+ </member>
293
+ <member name="P:Elmah.Build.ImageRuntimeVersion">
294
+ <summary>
295
+ Gets a string representing the version of the CLR saved in
296
+ the file containing the manifest. Under 1.0, this returns
297
+ the hard-wired string "v1.0.3705".
298
+ </summary>
299
+ </member>
300
+ <member name="T:Elmah.ConfigurationSectionHelper">
301
+ <summary>
302
+ Helper class for handling values in configuration sections.
303
+ </summary>
304
+ </member>
305
+ <member name="T:Elmah.ConnectionStringHelper">
306
+ <summary>
307
+ Helper class for resolving connection strings.
308
+ </summary>
309
+ </member>
310
+ <member name="M:Elmah.ConnectionStringHelper.GetConnectionString(System.Collections.IDictionary)">
311
+ <summary>
312
+ Gets the connection string from the given configuration
313
+ dictionary.
314
+ </summary>
315
+ </member>
316
+ <member name="M:Elmah.ConnectionStringHelper.GetDataSourceFilePath(System.String)">
317
+ <summary>
318
+ Extracts the Data Source file path from a connection string
319
+ </summary>
320
+ <param name="connectionString">The connection string</param>
321
+ <returns>File path to the Data Source element of a connection string</returns>
322
+ </member>
323
+ <member name="T:Elmah.Debug">
324
+ <summary>
325
+ Provides methods for assertions and debugging help that is mostly
326
+ applicable during development.
327
+ </summary>
328
+ </member>
329
+ <member name="T:Elmah.Error">
330
+ <summary>
331
+ Represents a logical application error (as opposed to the actual
332
+ exception it may be representing).
333
+ </summary>
334
+ </member>
335
+ <member name="M:Elmah.Error.#ctor">
336
+ <summary>
337
+ Initializes a new instance of the <see cref="T:Elmah.Error"/> class.
338
+ </summary>
339
+ </member>
340
+ <member name="M:Elmah.Error.#ctor(System.Exception)">
341
+ <summary>
342
+ Initializes a new instance of the <see cref="T:Elmah.Error"/> class
343
+ from a given <see cref="P:Elmah.Error.Exception"/> instance.
344
+ </summary>
345
+ </member>
346
+ <member name="M:Elmah.Error.#ctor(System.Exception,System.Web.HttpContext)">
347
+ <summary>
348
+ Initializes a new instance of the <see cref="T:Elmah.Error"/> class
349
+ from a given <see cref="P:Elmah.Error.Exception"/> instance and
350
+ <see cref="T:System.Web.HttpContext"/> instance representing the HTTP
351
+ context during the exception.
352
+ </summary>
353
+ </member>
354
+ <member name="M:Elmah.Error.ToString">
355
+ <summary>
356
+ Returns the value of the <see cref="P:Elmah.Error.Message"/> property.
357
+ </summary>
358
+ </member>
359
+ <member name="M:Elmah.Error.System#ICloneable#Clone">
360
+ <summary>
361
+ Creates a new object that is a copy of the current instance.
362
+ </summary>
363
+ </member>
364
+ <member name="P:Elmah.Error.Exception">
365
+ <summary>
366
+ Gets the <see cref="P:Elmah.Error.Exception"/> instance used to initialize this
367
+ instance.
368
+ </summary>
369
+ <remarks>
370
+ This is a run-time property only that is not written or read
371
+ during XML serialization via <see cref="M:Elmah.ErrorXml.Decode(System.Xml.XmlReader)"/> and
372
+ <see cref="M:Elmah.ErrorXml.Encode(Elmah.Error,System.Xml.XmlWriter)"/>.
373
+ </remarks>
374
+ </member>
375
+ <member name="P:Elmah.Error.ApplicationName">
376
+ <summary>
377
+ Gets or sets the name of application in which this error occurred.
378
+ </summary>
379
+ </member>
380
+ <member name="P:Elmah.Error.HostName">
381
+ <summary>
382
+ Gets or sets name of host machine where this error occurred.
383
+ </summary>
384
+ </member>
385
+ <member name="P:Elmah.Error.Type">
386
+ <summary>
387
+ Gets or sets the type, class or category of the error.
388
+ </summary>
389
+ </member>
390
+ <member name="P:Elmah.Error.Source">
391
+ <summary>
392
+ Gets or sets the source that is the cause of the error.
393
+ </summary>
394
+ </member>
395
+ <member name="P:Elmah.Error.Message">
396
+ <summary>
397
+ Gets or sets a brief text describing the error.
398
+ </summary>
399
+ </member>
400
+ <member name="P:Elmah.Error.Detail">
401
+ <summary>
402
+ Gets or sets a detailed text describing the error, such as a
403
+ stack trace.
404
+ </summary>
405
+ </member>
406
+ <member name="P:Elmah.Error.User">
407
+ <summary>
408
+ Gets or sets the user logged into the application at the time
409
+ of the error.
410
+ </summary>
411
+ </member>
412
+ <member name="P:Elmah.Error.Time">
413
+ <summary>
414
+ Gets or sets the date and time (in local time) at which the
415
+ error occurred.
416
+ </summary>
417
+ </member>
418
+ <member name="P:Elmah.Error.StatusCode">
419
+ <summary>
420
+ Gets or sets the HTTP status code of the output returned to the
421
+ client for the error.
422
+ </summary>
423
+ <remarks>
424
+ For cases where this value cannot always be reliably determined,
425
+ the value may be reported as zero.
426
+ </remarks>
427
+ </member>
428
+ <member name="P:Elmah.Error.WebHostHtmlMessage">
429
+ <summary>
430
+ Gets or sets the HTML message generated by the web host (ASP.NET)
431
+ for the given error.
432
+ </summary>
433
+ </member>
434
+ <member name="P:Elmah.Error.ServerVariables">
435
+ <summary>
436
+ Gets a collection representing the Web server variables
437
+ captured as part of diagnostic data for the error.
438
+ </summary>
439
+ </member>
440
+ <member name="P:Elmah.Error.QueryString">
441
+ <summary>
442
+ Gets a collection representing the Web query string variables
443
+ captured as part of diagnostic data for the error.
444
+ </summary>
445
+ </member>
446
+ <member name="P:Elmah.Error.Form">
447
+ <summary>
448
+ Gets a collection representing the form variables captured as
449
+ part of diagnostic data for the error.
450
+ </summary>
451
+ </member>
452
+ <member name="P:Elmah.Error.Cookies">
453
+ <summary>
454
+ Gets a collection representing the client cookies
455
+ captured as part of diagnostic data for the error.
456
+ </summary>
457
+ </member>
458
+ <member name="T:Elmah.ErrorDetailPage">
459
+ <summary>
460
+ Renders an HTML page displaying details about an error from the
461
+ error log.
462
+ </summary>
463
+ </member>
464
+ <member name="T:Elmah.ErrorDigestRssHandler">
465
+ <summary>
466
+ Renders an RSS feed that is a daily digest of the most recently
467
+ recorded errors in the error log. The feed spans at most 15
468
+ days on which errors occurred.
469
+ </summary>
470
+ </member>
471
+ <member name="T:Elmah.ErrorDisplay">
472
+ <summary>
473
+ Provides miscellaneous formatting methods for
474
+ </summary>
475
+ </member>
476
+ <member name="M:Elmah.ErrorDisplay.HumaneExceptionErrorType(System.String)">
477
+ <summary>
478
+ Formats the type of an error, typically supplied as the
479
+ <see cref="P:Elmah.Error.Type"/> value, in a short and human-
480
+ readable form.
481
+ </summary>
482
+ <remarks>
483
+ Typically, exception type names can be long to display and
484
+ complex to consume. The essential part can usually be found in
485
+ the start of an exception type name minus its namespace. For
486
+ example, a human reading the string,
487
+ "System.Runtime.InteropServices.COMException", will usually
488
+ considers "COM" as the most useful component of the entire
489
+ type name. This method does exactly that. It assumes that the
490
+ the input type is a .NET Framework exception type name where
491
+ the namespace and class will be separated by the last
492
+ period (.) and where the type name ends in "Exception". If
493
+ these conditions are method then a string like,
494
+ "System.Web.HttpException" will be transformed into simply
495
+ "Html".
496
+ </remarks>
497
+ </member>
498
+ <member name="M:Elmah.ErrorDisplay.HumaneExceptionErrorType(Elmah.Error)">
499
+ <summary>
500
+ Formats the error type of an <see cref="T:Elmah.Error"/> object in a
501
+ short and human-readable form.
502
+ </summary>
503
+ </member>
504
+ <member name="T:Elmah.ErrorFilterModule">
505
+ <summary>
506
+ HTTP module implementation that logs unhandled exceptions in an
507
+ ASP.NET Web application to an error log.
508
+ </summary>
509
+ </member>
510
+ <member name="M:Elmah.ErrorFilterModule.Init(System.Web.HttpApplication)">
511
+ <summary>
512
+ Initializes the module and prepares it to handle requests.
513
+ </summary>
514
+ </member>
515
+ <member name="M:Elmah.ErrorFilterModule.Dispose">
516
+ <summary>
517
+ Disposes of the resources (other than memory) used by the module.
518
+ </summary>
519
+ </member>
520
+ <member name="T:Elmah.ErrorFilterSectionHandler">
521
+ <summary>
522
+ Handler for the &lt;errorFilter&gt; section of the
523
+ configuration file.
524
+ </summary>
525
+ </member>
526
+ <member name="T:Elmah.ErrorHtmlPage">
527
+ <summary>
528
+ Renders an HTML page displaying the detailed host-generated (ASP.NET)
529
+ HTML recorded for an error from the error log.
530
+ </summary>
531
+ </member>
532
+ <member name="T:Elmah.ErrorJson">
533
+ <summary>
534
+ Responsible for primarily encoding the JSON representation of
535
+ <see cref="T:Elmah.Error"/> objects.
536
+ </summary>
537
+ </member>
538
+ <member name="M:Elmah.ErrorJson.EncodeString(Elmah.Error)">
539
+ <summary>
540
+ Encodes the default JSON representation of an <see cref="T:Elmah.Error"/>
541
+ object to a string.
542
+ </summary>
543
+ <remarks>
544
+ Only properties and collection entires with non-null
545
+ and non-empty strings are emitted.
546
+ </remarks>
547
+ </member>
548
+ <member name="M:Elmah.ErrorJson.Encode(Elmah.Error,System.IO.TextWriter)">
549
+ <summary>
550
+ Encodes the default JSON representation of an <see cref="T:Elmah.Error"/>
551
+ object to a <see cref="T:System.IO.TextWriter"/>.
552
+ </summary>
553
+ <remarks>
554
+ Only properties and collection entires with non-null
555
+ and non-empty strings are emitted.
556
+ </remarks>
557
+ </member>
558
+ <member name="T:Elmah.ErrorJsonHandler">
559
+ <summary>
560
+ Renders an error as JSON Text (RFC 4627).
561
+ </summary>
562
+ </member>
563
+ <member name="T:Elmah.ErrorLogEntry">
564
+ <summary>
565
+ Binds an <see cref="P:Elmah.ErrorLogEntry.Error"/> instance with the <see cref="T:Elmah.ErrorLog"/>
566
+ instance from where it was served.
567
+ </summary>
568
+ </member>
569
+ <member name="M:Elmah.ErrorLogEntry.#ctor(Elmah.ErrorLog,System.String,Elmah.Error)">
570
+ <summary>
571
+ Initializes a new instance of the <see cref="T:Elmah.ErrorLogEntry"/> class
572
+ for a given unique error entry in an error log.
573
+ </summary>
574
+ </member>
575
+ <member name="P:Elmah.ErrorLogEntry.Log">
576
+ <summary>
577
+ Gets the <see cref="T:Elmah.ErrorLog"/> instance where this entry
578
+ originated from.
579
+ </summary>
580
+ </member>
581
+ <member name="P:Elmah.ErrorLogEntry.Id">
582
+ <summary>
583
+ Gets the unique identifier that identifies the error entry
584
+ in the log.
585
+ </summary>
586
+ </member>
587
+ <member name="P:Elmah.ErrorLogEntry.Error">
588
+ <summary>
589
+ Gets the <see cref="P:Elmah.ErrorLogEntry.Error"/> object held in the entry.
590
+ </summary>
591
+ </member>
592
+ <member name="T:Elmah.ErrorLogModule">
593
+ <summary>
594
+ HTTP module implementation that logs unhandled exceptions in an
595
+ ASP.NET Web application to an error log.
596
+ </summary>
597
+ </member>
598
+ <member name="T:Elmah.HttpModuleBase">
599
+ <summary>
600
+ Provides an abstract base class for <see cref="T:System.Web.IHttpModule"/> that
601
+ supports discovery from within partial trust environments.
602
+ </summary>
603
+ </member>
604
+ <member name="M:Elmah.HttpModuleBase.OnInit(System.Web.HttpApplication)">
605
+ <summary>
606
+ Initializes the module and prepares it to handle requests.
607
+ </summary>
608
+ </member>
609
+ <member name="M:Elmah.HttpModuleBase.OnDispose">
610
+ <summary>
611
+ Disposes of the resources (other than memory) used by the module.
612
+ </summary>
613
+ </member>
614
+ <member name="P:Elmah.HttpModuleBase.SupportDiscoverability">
615
+ <summary>
616
+ Determines whether the module will be registered for discovery
617
+ in partial trust environments or not.
618
+ </summary>
619
+ </member>
620
+ <member name="M:Elmah.ErrorLogModule.OnInit(System.Web.HttpApplication)">
621
+ <summary>
622
+ Initializes the module and prepares it to handle requests.
623
+ </summary>
624
+ </member>
625
+ <member name="M:Elmah.ErrorLogModule.GetErrorLog(System.Web.HttpContext)">
626
+ <summary>
627
+ Gets the <see cref="T:Elmah.ErrorLog"/> instance to which the module
628
+ will log exceptions.
629
+ </summary>
630
+ </member>
631
+ <member name="M:Elmah.ErrorLogModule.OnError(System.Object,System.EventArgs)">
632
+ <summary>
633
+ The handler called when an unhandled exception bubbles up to
634
+ the module.
635
+ </summary>
636
+ </member>
637
+ <member name="M:Elmah.ErrorLogModule.OnErrorSignaled(System.Object,Elmah.ErrorSignalEventArgs)">
638
+ <summary>
639
+ The handler called when an exception is explicitly signaled.
640
+ </summary>
641
+ </member>
642
+ <member name="M:Elmah.ErrorLogModule.LogException(System.Exception,System.Web.HttpContext)">
643
+ <summary>
644
+ Logs an exception and its context to the error log.
645
+ </summary>
646
+ </member>
647
+ <member name="M:Elmah.ErrorLogModule.OnLogged(Elmah.ErrorLoggedEventArgs)">
648
+ <summary>
649
+ Raises the <see cref="E:Elmah.ErrorLogModule.Logged"/> event.
650
+ </summary>
651
+ </member>
652
+ <member name="M:Elmah.ErrorLogModule.OnFiltering(Elmah.ExceptionFilterEventArgs)">
653
+ <summary>
654
+ Raises the <see cref="E:Elmah.ErrorLogModule.Filtering"/> event.
655
+ </summary>
656
+ </member>
657
+ <member name="P:Elmah.ErrorLogModule.SupportDiscoverability">
658
+ <summary>
659
+ Determines whether the module will be registered for discovery
660
+ in partial trust environments or not.
661
+ </summary>
662
+ </member>
663
+ <member name="T:Elmah.ErrorLogPage">
664
+ <summary>
665
+ Renders an HTML page displaying a page of errors from the error log.
666
+ </summary>
667
+ </member>
668
+ <member name="T:Elmah.ErrorLogPageFactory">
669
+ <summary>
670
+ HTTP handler factory that dispenses handlers for rendering views and
671
+ resources needed to display the error log.
672
+ </summary>
673
+ </member>
674
+ <member name="M:Elmah.ErrorLogPageFactory.GetHandler(System.Web.HttpContext,System.String,System.String,System.String)">
675
+ <summary>
676
+ Returns an object that implements the <see cref="T:System.Web.IHttpHandler"/>
677
+ interface and which is responsible for serving the request.
678
+ </summary>
679
+ <returns>
680
+ A new <see cref="T:System.Web.IHttpHandler"/> object that processes the request.
681
+ </returns>
682
+ </member>
683
+ <member name="M:Elmah.ErrorLogPageFactory.ReleaseHandler(System.Web.IHttpHandler)">
684
+ <summary>
685
+ Enables the factory to reuse an existing handler instance.
686
+ </summary>
687
+ </member>
688
+ <member name="M:Elmah.ErrorLogPageFactory.IsAuthorized(System.Web.HttpContext)">
689
+ <summary>
690
+ Determines if the request is authorized by objects implementing
691
+ <see cref="T:Elmah.IRequestAuthorizationHandler"/>.
692
+ </summary>
693
+ <returns>
694
+ Returns zero if unauthorized, a value greater than zero if
695
+ authorized otherwise a value less than zero if no handlers
696
+ were available to answer.
697
+ </returns>
698
+ </member>
699
+ <member name="T:Elmah.ErrorLogSectionHandler">
700
+ <summary>
701
+ Handler for the &lt;errorLog&gt; section of the
702
+ configuration file.
703
+ </summary>
704
+ </member>
705
+ <member name="T:Elmah.ErrorMailHtmlFormatter">
706
+ <summary>
707
+ Formats the HTML to display the details of a given error that is
708
+ suitable for sending as the body of an e-mail message.
709
+ </summary>
710
+ </member>
711
+ <member name="T:Elmah.ErrorTextFormatter">
712
+ <summary>
713
+ Provides the base contract for implementations that render
714
+ text-based formatting for an error.
715
+ </summary>
716
+ </member>
717
+ <member name="M:Elmah.ErrorTextFormatter.Format(System.IO.TextWriter,Elmah.Error)">
718
+ <summary>
719
+ Formats a text representation of the given <see cref="T:Elmah.Error"/>
720
+ instance using a <see cref="T:System.IO.TextWriter"/>.
721
+ </summary>
722
+ </member>
723
+ <member name="P:Elmah.ErrorTextFormatter.MimeType">
724
+ <summary>
725
+ Gets the MIME type of the text format provided by the formatter
726
+ implementation.
727
+ </summary>
728
+ </member>
729
+ <member name="M:Elmah.ErrorMailHtmlFormatter.Format(System.IO.TextWriter,Elmah.Error)">
730
+ <summary>
731
+ Formats a complete HTML document describing the given
732
+ <see cref="P:Elmah.ErrorMailHtmlFormatter.Error"/> instance.
733
+ </summary>
734
+ </member>
735
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderHead">
736
+ <summary>
737
+ Renders the &lt;head&gt; section of the HTML document.
738
+ </summary>
739
+ </member>
740
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderBody">
741
+ <summary>
742
+ Renders the &lt;body&gt; section of the HTML document.
743
+ </summary>
744
+ </member>
745
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderFooter">
746
+ <summary>
747
+ Renders the footer content that appears at the end of the
748
+ HTML document body.
749
+ </summary>
750
+ </member>
751
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderStyle">
752
+ <summary>
753
+ Renders the &lt;style&gt; element along with in-line styles
754
+ used to format the body of the HTML document.
755
+ </summary>
756
+ </member>
757
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderDetail">
758
+ <summary>
759
+ Renders the details about the <see cref="P:Elmah.ErrorMailHtmlFormatter.Error"/> object in
760
+ body of the HTML document.
761
+ </summary>
762
+ </member>
763
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderSummary">
764
+ <summary>
765
+ Renders a summary about the <see cref="P:Elmah.ErrorMailHtmlFormatter.Error"/> object in
766
+ body of the HTML document.
767
+ </summary>
768
+ </member>
769
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderCollections">
770
+ <summary>
771
+ Renders the diagnostic collections of the <see cref="P:Elmah.ErrorMailHtmlFormatter.Error"/> object in
772
+ body of the HTML document.
773
+ </summary>
774
+ </member>
775
+ <member name="M:Elmah.ErrorMailHtmlFormatter.RenderCollection(System.Collections.Specialized.NameValueCollection,System.String)">
776
+ <summary>
777
+ Renders a collection as a table in HTML document body.
778
+ </summary>
779
+ <remarks>
780
+ This method is called by <see cref="M:Elmah.ErrorMailHtmlFormatter.RenderCollections"/> to
781
+ format a diagnostic collection from <see cref="P:Elmah.ErrorMailHtmlFormatter.Error"/> object.
782
+ </remarks>
783
+ </member>
784
+ <member name="P:Elmah.ErrorMailHtmlFormatter.MimeType">
785
+ <summary>
786
+ Returns the text/html MIME type that is the format provided
787
+ by this <see cref="T:Elmah.ErrorTextFormatter"/> implementation.
788
+ </summary>
789
+ </member>
790
+ <member name="P:Elmah.ErrorMailHtmlFormatter.Writer">
791
+ <summary>
792
+ Gets the <see cref="T:System.Web.UI.HtmlTextWriter"/> used for HTML formatting.
793
+ </summary>
794
+ <remarks>
795
+ This property is only available to downstream methods in the
796
+ context of the <see cref="M:Elmah.ErrorMailHtmlFormatter.Format(System.IO.TextWriter,Elmah.Error)"/> method call.
797
+ </remarks>
798
+ </member>
799
+ <member name="P:Elmah.ErrorMailHtmlFormatter.Error">
800
+ <summary>
801
+ Gets the <see cref="P:Elmah.ErrorMailHtmlFormatter.Error"/> object for which a HTML document
802
+ is being formatted.
803
+ </summary>
804
+ <remarks>
805
+ This property is only available to downstream methods in the
806
+ context of the <see cref="M:Elmah.ErrorMailHtmlFormatter.Format(System.IO.TextWriter,Elmah.Error)"/> method call.
807
+ </remarks>
808
+ </member>
809
+ <member name="T:Elmah.ErrorMailModule">
810
+ <summary>
811
+ HTTP module that sends an e-mail whenever an unhandled exception
812
+ occurs in an ASP.NET web application.
813
+ </summary>
814
+ </member>
815
+ <member name="M:Elmah.ErrorMailModule.OnInit(System.Web.HttpApplication)">
816
+ <summary>
817
+ Initializes the module and prepares it to handle requests.
818
+ </summary>
819
+ </member>
820
+ <member name="M:Elmah.ErrorMailModule.OnError(System.Object,System.EventArgs)">
821
+ <summary>
822
+ The handler called when an unhandled exception bubbles up to
823
+ the module.
824
+ </summary>
825
+ </member>
826
+ <member name="M:Elmah.ErrorMailModule.OnErrorSignaled(System.Object,Elmah.ErrorSignalEventArgs)">
827
+ <summary>
828
+ The handler called when an exception is explicitly signaled.
829
+ </summary>
830
+ </member>
831
+ <member name="M:Elmah.ErrorMailModule.OnError(System.Exception,System.Web.HttpContext)">
832
+ <summary>
833
+ Reports the exception.
834
+ </summary>
835
+ </member>
836
+ <member name="M:Elmah.ErrorMailModule.OnFiltering(Elmah.ExceptionFilterEventArgs)">
837
+ <summary>
838
+ Raises the <see cref="E:Elmah.ErrorMailModule.Filtering"/> event.
839
+ </summary>
840
+ </member>
841
+ <member name="M:Elmah.ErrorMailModule.ReportErrorAsync(Elmah.Error)">
842
+ <summary>
843
+ Schedules the error to be e-mailed asynchronously.
844
+ </summary>
845
+ <remarks>
846
+ The default implementation uses the <see cref="T:System.Threading.ThreadPool"/>
847
+ to queue the reporting.
848
+ </remarks>
849
+ </member>
850
+ <member name="M:Elmah.ErrorMailModule.ReportError(Elmah.Error)">
851
+ <summary>
852
+ Schedules the error to be e-mailed synchronously.
853
+ </summary>
854
+ </member>
855
+ <member name="M:Elmah.ErrorMailModule.CreateErrorFormatter">
856
+ <summary>
857
+ Creates the <see cref="T:Elmah.ErrorTextFormatter"/> implementation to
858
+ be used to format the body of the e-mail.
859
+ </summary>
860
+ </member>
861
+ <member name="M:Elmah.ErrorMailModule.SendMail(System.Web.Mail.MailMessage)">
862
+ <summary>
863
+ Sends the e-mail using SmtpMail or SmtpClient.
864
+ </summary>
865
+ </member>
866
+ <member name="M:Elmah.ErrorMailModule.OnMailing(Elmah.ErrorMailEventArgs)">
867
+ <summary>
868
+ Fires the <see cref="E:Elmah.ErrorMailModule.Mailing"/> event.
869
+ </summary>
870
+ </member>
871
+ <member name="M:Elmah.ErrorMailModule.OnMailed(Elmah.ErrorMailEventArgs)">
872
+ <summary>
873
+ Fires the <see cref="E:Elmah.ErrorMailModule.Mailed"/> event.
874
+ </summary>
875
+ </member>
876
+ <member name="M:Elmah.ErrorMailModule.OnDisposingMail(Elmah.ErrorMailEventArgs)">
877
+ <summary>
878
+ Fires the <see cref="E:Elmah.ErrorMailModule.DisposingMail"/> event.
879
+ </summary>
880
+ </member>
881
+ <member name="M:Elmah.ErrorMailModule.GetConfig">
882
+ <summary>
883
+ Gets the configuration object used by <see cref="M:Elmah.ErrorMailModule.OnInit(System.Web.HttpApplication)"/> to read
884
+ the settings for module.
885
+ </summary>
886
+ </member>
887
+ <member name="M:Elmah.ErrorMailModule.GetLastError(System.Web.HttpContext)">
888
+ <summary>
889
+ Builds an <see cref="T:Elmah.Error"/> object from the last context
890
+ exception generated.
891
+ </summary>
892
+ </member>
893
+ <member name="P:Elmah.ErrorMailModule.SupportDiscoverability">
894
+ <summary>
895
+ Determines whether the module will be registered for discovery
896
+ in partial trust environments or not.
897
+ </summary>
898
+ </member>
899
+ <member name="P:Elmah.ErrorMailModule.MailSender">
900
+ <summary>
901
+ Gets the e-mail address of the sender.
902
+ </summary>
903
+ </member>
904
+ <member name="P:Elmah.ErrorMailModule.MailRecipient">
905
+ <summary>
906
+ Gets the e-mail address of the recipient, or a
907
+ comma-/semicolon-delimited list of e-mail addresses in case of
908
+ multiple recipients.
909
+ </summary>
910
+ <remarks>
911
+ When using System.Web.Mail components under .NET Framework 1.x,
912
+ multiple recipients must be semicolon-delimited.
913
+ When using System.Net.Mail components under .NET Framework 2.0
914
+ or later, multiple recipients must be comma-delimited.
915
+ </remarks>
916
+ </member>
917
+ <member name="P:Elmah.ErrorMailModule.MailCopyRecipient">
918
+ <summary>
919
+ Gets the e-mail address of the recipient for mail carbon
920
+ copy (CC), or a comma-/semicolon-delimited list of e-mail
921
+ addresses in case of multiple recipients.
922
+ </summary>
923
+ <remarks>
924
+ When using System.Web.Mail components under .NET Framework 1.x,
925
+ multiple recipients must be semicolon-delimited.
926
+ When using System.Net.Mail components under .NET Framework 2.0
927
+ or later, multiple recipients must be comma-delimited.
928
+ </remarks>
929
+ </member>
930
+ <member name="P:Elmah.ErrorMailModule.MailSubjectFormat">
931
+ <summary>
932
+ Gets the text used to format the e-mail subject.
933
+ </summary>
934
+ <remarks>
935
+ The subject text specification may include {0} where the
936
+ error message (<see cref="P:Elmah.Error.Message"/>) should be inserted
937
+ and {1} <see cref="P:Elmah.Error.Type"/> where the error type should
938
+ be insert.
939
+ </remarks>
940
+ </member>
941
+ <member name="P:Elmah.ErrorMailModule.MailPriority">
942
+ <summary>
943
+ Gets the priority of the e-mail.
944
+ </summary>
945
+ </member>
946
+ <member name="P:Elmah.ErrorMailModule.SmtpServer">
947
+ <summary>
948
+ Gets the SMTP server host name used when sending the mail.
949
+ </summary>
950
+ </member>
951
+ <member name="P:Elmah.ErrorMailModule.SmtpPort">
952
+ <summary>
953
+ Gets the SMTP port used when sending the mail.
954
+ </summary>
955
+ </member>
956
+ <member name="P:Elmah.ErrorMailModule.AuthUserName">
957
+ <summary>
958
+ Gets the user name to use if the SMTP server requires authentication.
959
+ </summary>
960
+ </member>
961
+ <member name="P:Elmah.ErrorMailModule.AuthPassword">
962
+ <summary>
963
+ Gets the clear-text password to use if the SMTP server requires
964
+ authentication.
965
+ </summary>
966
+ </member>
967
+ <member name="P:Elmah.ErrorMailModule.NoYsod">
968
+ <summary>
969
+ Indicates whether <a href="http://en.wikipedia.org/wiki/Screens_of_death#ASP.NET">YSOD</a>
970
+ is attached to the e-mail or not. If <c>true</c>, the YSOD is
971
+ not attached.
972
+ </summary>
973
+ </member>
974
+ <member name="T:Elmah.ErrorMailSectionHandler">
975
+ <summary>
976
+ Handler for the &lt;errorMail&gt; section of the
977
+ configuration file.
978
+ </summary>
979
+ </member>
980
+ <member name="T:Elmah.ErrorRssHandler">
981
+ <summary>
982
+ Renders a XML using the RSS 0.91 vocabulary that displays, at most,
983
+ the 15 most recent errors recorded in the error log.
984
+ </summary>
985
+ </member>
986
+ <member name="T:Elmah.ErrorTweetModule">
987
+ <summary>
988
+ HTTP module implementation that posts tweets (short messages
989
+ usually limited to 140 characters) about unhandled exceptions in
990
+ an ASP.NET Web application to a Twitter account.
991
+ </summary>
992
+ <remarks>
993
+ This module requires that the hosting application has permissions
994
+ send HTTP POST requests to another Internet domain.
995
+ </remarks>
996
+ </member>
997
+ <member name="M:Elmah.ErrorTweetModule.OnInit(System.Web.HttpApplication)">
998
+ <summary>
999
+ Initializes the module and prepares it to handle requests.
1000
+ </summary>
1001
+ </member>
1002
+ <member name="M:Elmah.ErrorTweetModule.GetErrorLog(System.Web.HttpContext)">
1003
+ <summary>
1004
+ Gets the <see cref="T:Elmah.ErrorLog"/> instance to which the module
1005
+ will log exceptions.
1006
+ </summary>
1007
+ </member>
1008
+ <member name="M:Elmah.ErrorTweetModule.OnError(System.Object,System.EventArgs)">
1009
+ <summary>
1010
+ The handler called when an unhandled exception bubbles up to
1011
+ the module.
1012
+ </summary>
1013
+ </member>
1014
+ <member name="M:Elmah.ErrorTweetModule.OnErrorSignaled(System.Object,Elmah.ErrorSignalEventArgs)">
1015
+ <summary>
1016
+ The handler called when an exception is explicitly signaled.
1017
+ </summary>
1018
+ </member>
1019
+ <member name="M:Elmah.ErrorTweetModule.LogException(System.Exception,System.Web.HttpContext)">
1020
+ <summary>
1021
+ Logs an exception and its context to the error log.
1022
+ </summary>
1023
+ </member>
1024
+ <member name="M:Elmah.ErrorTweetModule.OnFiltering(Elmah.ExceptionFilterEventArgs)">
1025
+ <summary>
1026
+ Raises the <see cref="E:Elmah.ErrorTweetModule.Filtering"/> event.
1027
+ </summary>
1028
+ </member>
1029
+ <member name="M:Elmah.ErrorTweetModule.GetConfig">
1030
+ <summary>
1031
+ Gets the configuration object used by <see cref="M:Elmah.ErrorTweetModule.OnInit(System.Web.HttpApplication)"/> to read
1032
+ the settings for module.
1033
+ </summary>
1034
+ </member>
1035
+ <member name="P:Elmah.ErrorTweetModule.SupportDiscoverability">
1036
+ <summary>
1037
+ Determines whether the module will be registered for discovery
1038
+ in partial trust environments or not.
1039
+ </summary>
1040
+ </member>
1041
+ <member name="T:Elmah.ErrorTweetSectionHandler">
1042
+ <summary>
1043
+ Handler for the &lt;errorTweet&gt; section of the
1044
+ configuration file.
1045
+ </summary>
1046
+ </member>
1047
+ <member name="T:Elmah.ErrorXml">
1048
+ <summary>
1049
+ Responsible for encoding and decoding the XML representation of
1050
+ an <see cref="T:Elmah.Error"/> object.
1051
+ </summary>
1052
+ </member>
1053
+ <member name="M:Elmah.ErrorXml.DecodeString(System.String)">
1054
+ <summary>
1055
+ Decodes an <see cref="T:Elmah.Error"/> object from its default XML
1056
+ representation.
1057
+ </summary>
1058
+ </member>
1059
+ <member name="M:Elmah.ErrorXml.Decode(System.Xml.XmlReader)">
1060
+ <summary>
1061
+ Decodes an <see cref="T:Elmah.Error"/> object from its XML representation.
1062
+ </summary>
1063
+ </member>
1064
+ <member name="M:Elmah.ErrorXml.ReadXmlAttributes(System.Xml.XmlReader,Elmah.Error)">
1065
+ <summary>
1066
+ Reads the error data in XML attributes.
1067
+ </summary>
1068
+ </member>
1069
+ <member name="M:Elmah.ErrorXml.ReadInnerXml(System.Xml.XmlReader,Elmah.Error)">
1070
+ <summary>
1071
+ Reads the error data in child nodes.
1072
+ </summary>
1073
+ </member>
1074
+ <member name="M:Elmah.ErrorXml.EncodeString(Elmah.Error)">
1075
+ <summary>
1076
+ Encodes the default XML representation of an <see cref="T:Elmah.Error"/>
1077
+ object to a string.
1078
+ </summary>
1079
+ </member>
1080
+ <member name="M:Elmah.ErrorXml.Encode(Elmah.Error,System.Xml.XmlWriter)">
1081
+ <summary>
1082
+ Encodes the XML representation of an <see cref="T:Elmah.Error"/> object.
1083
+ </summary>
1084
+ </member>
1085
+ <member name="M:Elmah.ErrorXml.WriteXmlAttributes(Elmah.Error,System.Xml.XmlWriter)">
1086
+ <summary>
1087
+ Writes the error data that belongs in XML attributes.
1088
+ </summary>
1089
+ </member>
1090
+ <member name="M:Elmah.ErrorXml.WriteInnerXml(Elmah.Error,System.Xml.XmlWriter)">
1091
+ <summary>
1092
+ Writes the error data that belongs in child nodes.
1093
+ </summary>
1094
+ </member>
1095
+ <member name="M:Elmah.ErrorXml.Encode(System.Collections.Specialized.NameValueCollection,System.Xml.XmlWriter)">
1096
+ <summary>
1097
+ Encodes an XML representation for a
1098
+ <see cref="T:System.Collections.Specialized.NameValueCollection"/> object.
1099
+ </summary>
1100
+ </member>
1101
+ <member name="M:Elmah.ErrorXml.UpcodeTo(System.Xml.XmlReader,System.Collections.Specialized.NameValueCollection)">
1102
+ <summary>
1103
+ Updates an existing <see cref="T:System.Collections.Specialized.NameValueCollection"/> object from
1104
+ its XML representation.
1105
+ </summary>
1106
+ </member>
1107
+ <member name="T:Elmah.ErrorXmlHandler">
1108
+ <summary>
1109
+ Renders an error as an XML document.
1110
+ </summary>
1111
+ </member>
1112
+ <member name="T:Elmah.FixIIS5xWildcardMappingModule">
1113
+ <summary>
1114
+ HTTP module that resolves issues in ELMAH when wilcard mapping
1115
+ is implemented in IIS 5.x.
1116
+ </summary>
1117
+ <remarks>
1118
+ See <a href="http://groups.google.com/group/elmah/browse_thread/thread/c22b85ace3812da1">Elmah
1119
+ with existing wildcard mapping</a> for more information behind the
1120
+ reason for this module.
1121
+ </remarks>
1122
+ </member>
1123
+ <member name="T:Elmah.HtmlLinkType">
1124
+ <summary>
1125
+ User agents, search engines, etc. may interpret and use these link
1126
+ types in a variety of ways. For example, user agents may provide
1127
+ access to linked documents through a navigation bar.
1128
+ </summary>
1129
+ <remarks>
1130
+ See <a href="http://www.w3.org/TR/html401/types.html#type-links">6.12 Link types</a>
1131
+ for more information.
1132
+ </remarks>
1133
+ </member>
1134
+ <member name="T:Elmah.HttpRequestSecurity">
1135
+ <summary>
1136
+ Security-related helper methods for web requests.
1137
+ </summary>
1138
+ </member>
1139
+ <member name="M:Elmah.HttpRequestSecurity.IsLocal(System.Web.HttpRequest)">
1140
+ <summary>
1141
+ Determines whether the request is from the local computer or not.
1142
+ </summary>
1143
+ <remarks>
1144
+ This method is primarily for .NET Framework 1.x where the
1145
+ <see cref="P:System.Web.HttpRequest.IsLocal"/> was not available.
1146
+ </remarks>
1147
+ </member>
1148
+ <member name="T:Elmah.HttpStatus">
1149
+ <summary>
1150
+ Represents an HTTP status (code plus reason) as per
1151
+ <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1">Section 6.1 of RFC 2616</a>.
1152
+ </summary>
1153
+ </member>
1154
+ <member name="T:Elmah.InvariantStringArray">
1155
+ <summary>
1156
+ Helper methods for array containing culturally-invariant strings.
1157
+ The main reason for this helper is to help with po
1158
+ </summary>
1159
+ </member>
1160
+ <member name="T:JetBrains.Annotations.AssertionMethodAttribute">
1161
+ <summary>
1162
+ Indicates that the marked method is assertion method, i.e. it halts control flow if one of the conditions is satisfied.
1163
+ To set the condition, mark one of the parameters with <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute.
1164
+ </summary>
1165
+ <seealso cref="T:JetBrains.Annotations.AssertionConditionAttribute"/>
1166
+ </member>
1167
+ <member name="T:JetBrains.Annotations.AssertionConditionAttribute">
1168
+ <summary>
1169
+ Indicates the condition parameter of the assertion method.
1170
+ The method itself should be marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute.
1171
+ The mandatory argument of the attribute is the assertion type.
1172
+ </summary>
1173
+ <seealso cref="T:JetBrains.Annotations.AssertionConditionType"/>
1174
+ </member>
1175
+ <member name="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
1176
+ <summary>
1177
+ Initializes new instance of AssertionConditionAttribute.
1178
+ </summary>
1179
+ <param name="conditionType">Specifies condition type.</param>
1180
+ </member>
1181
+ <member name="P:JetBrains.Annotations.AssertionConditionAttribute.ConditionType">
1182
+ <summary>
1183
+ Gets condition type.
1184
+ </summary>
1185
+ </member>
1186
+ <member name="T:JetBrains.Annotations.AssertionConditionType">
1187
+ <summary>
1188
+ Specifies assertion type. If the assertion method argument satisifes the condition, then the execution continues.
1189
+ Otherwise, execution is assumed to be halted.
1190
+ </summary>
1191
+ </member>
1192
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
1193
+ <summary>
1194
+ Indicates that the marked parameter should be evaluated to true.
1195
+ </summary>
1196
+ </member>
1197
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
1198
+ <summary>
1199
+ Indicates that the marked parameter should be evaluated to false.
1200
+ </summary>
1201
+ </member>
1202
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
1203
+ <summary>
1204
+ Indicates that the marked parameter should be evaluated to null value.
1205
+ </summary>
1206
+ </member>
1207
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
1208
+ <summary>
1209
+ Indicates that the marked parameter should be evaluated to not null value.
1210
+ </summary>
1211
+ </member>
1212
+ <member name="T:Elmah.JsonTextWriter">
1213
+ <summary>
1214
+ Represents a writer that provides a fast, non-cached, forward-only
1215
+ way of generating streams or files containing JSON Text according
1216
+ to the grammar rules laid out in
1217
+ <a href="http://www.ietf.org/rfc/rfc4627.txt">RFC 4627</a>.
1218
+ </summary>
1219
+ <remarks>
1220
+ This class supports ELMAH and is not intended to be used directly
1221
+ from your code. It may be modified or removed in the future without
1222
+ notice. It has public accessibility for testing purposes. If you
1223
+ need a general-purpose JSON Text encoder, consult
1224
+ <a href="http://www.json.org/">JSON.org</a> for implementations
1225
+ or use classes available from the Microsoft .NET Framework.
1226
+ </remarks>
1227
+ </member>
1228
+ <member name="T:Elmah.ManifestResourceHandler">
1229
+ <summary>
1230
+ Reads a resource from the assembly manifest and returns its contents
1231
+ as the response entity.
1232
+ </summary>
1233
+ </member>
1234
+ <member name="T:Elmah.Mask">
1235
+ <summary>
1236
+ Collection of utility methods for masking values.
1237
+ </summary>
1238
+ </member>
1239
+ <member name="T:Elmah.MemoryErrorLog">
1240
+ <summary>
1241
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses memory as its
1242
+ backing store.
1243
+ </summary>
1244
+ <remarks>
1245
+ All <see cref="T:Elmah.MemoryErrorLog"/> instances will share the same memory
1246
+ store that is bound to the application (not an instance of this class).
1247
+ </remarks>
1248
+ </member>
1249
+ <member name="F:Elmah.MemoryErrorLog.MaximumSize">
1250
+ <summary>
1251
+ The maximum number of errors that will ever be allowed to be stored
1252
+ in memory.
1253
+ </summary>
1254
+ </member>
1255
+ <member name="F:Elmah.MemoryErrorLog.DefaultSize">
1256
+ <summary>
1257
+ The maximum number of errors that will be held in memory by default
1258
+ if no size is specified.
1259
+ </summary>
1260
+ </member>
1261
+ <member name="M:Elmah.MemoryErrorLog.#ctor">
1262
+ <summary>
1263
+ Initializes a new instance of the <see cref="T:Elmah.MemoryErrorLog"/> class
1264
+ with a default size for maximum recordable entries.
1265
+ </summary>
1266
+ </member>
1267
+ <member name="M:Elmah.MemoryErrorLog.#ctor(System.Int32)">
1268
+ <summary>
1269
+ Initializes a new instance of the <see cref="T:Elmah.MemoryErrorLog"/> class
1270
+ with a specific size for maximum recordable entries.
1271
+ </summary>
1272
+ </member>
1273
+ <member name="M:Elmah.MemoryErrorLog.#ctor(System.Collections.IDictionary)">
1274
+ <summary>
1275
+ Initializes a new instance of the <see cref="T:Elmah.MemoryErrorLog"/> class
1276
+ using a dictionary of configured settings.
1277
+ </summary>
1278
+ </member>
1279
+ <member name="M:Elmah.MemoryErrorLog.Log(Elmah.Error)">
1280
+ <summary>
1281
+ Logs an error to the application memory.
1282
+ </summary>
1283
+ <remarks>
1284
+ If the log is full then the oldest error entry is removed.
1285
+ </remarks>
1286
+ </member>
1287
+ <member name="M:Elmah.MemoryErrorLog.GetError(System.String)">
1288
+ <summary>
1289
+ Returns the specified error from application memory, or null
1290
+ if it does not exist.
1291
+ </summary>
1292
+ </member>
1293
+ <member name="M:Elmah.MemoryErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1294
+ <summary>
1295
+ Returns a page of errors from the application memory in
1296
+ descending order of logged time.
1297
+ </summary>
1298
+ </member>
1299
+ <member name="P:Elmah.MemoryErrorLog.Name">
1300
+ <summary>
1301
+ Gets the name of this error log implementation.
1302
+ </summary>
1303
+ </member>
1304
+ <member name="T:Elmah.OracleErrorLog">
1305
+ <summary>
1306
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses Oracle as its backing store.
1307
+ </summary>
1308
+ </member>
1309
+ <member name="M:Elmah.OracleErrorLog.#ctor(System.Collections.IDictionary)">
1310
+ <summary>
1311
+ Initializes a new instance of the <see cref="T:Elmah.OracleErrorLog"/> class
1312
+ using a dictionary of configured settings.
1313
+ </summary>
1314
+ </member>
1315
+ <member name="M:Elmah.OracleErrorLog.#ctor(System.String)">
1316
+ <summary>
1317
+ Initializes a new instance of the <see cref="T:Elmah.OracleErrorLog"/> class
1318
+ to use a specific connection string for connecting to the database.
1319
+ </summary>
1320
+ </member>
1321
+ <member name="M:Elmah.OracleErrorLog.Log(Elmah.Error)">
1322
+ <summary>
1323
+ Logs an error to the database.
1324
+ </summary>
1325
+ <remarks>
1326
+ Use the stored procedure called by this implementation to set a
1327
+ policy on how long errors are kept in the log. The default
1328
+ implementation stores all errors for an indefinite time.
1329
+ </remarks>
1330
+ </member>
1331
+ <member name="M:Elmah.OracleErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1332
+ <summary>
1333
+ Returns a page of errors from the databse in descending order
1334
+ of logged time.
1335
+ </summary>
1336
+ </member>
1337
+ <member name="M:Elmah.OracleErrorLog.GetError(System.String)">
1338
+ <summary>
1339
+ Returns the specified error from the database, or null
1340
+ if it does not exist.
1341
+ </summary>
1342
+ </member>
1343
+ <member name="P:Elmah.OracleErrorLog.Name">
1344
+ <summary>
1345
+ Gets the name of this error log implementation.
1346
+ </summary>
1347
+ </member>
1348
+ <member name="P:Elmah.OracleErrorLog.ConnectionString">
1349
+ <summary>
1350
+ Gets the connection string used by the log to connect to the database.
1351
+ </summary>
1352
+ </member>
1353
+ <member name="T:Elmah.PoweredBy">
1354
+ <summary>
1355
+ Displays a "Powered-by ELMAH" message that also contains the assembly
1356
+ file version informatin and copyright notice.
1357
+ </summary>
1358
+ </member>
1359
+ <member name="M:Elmah.PoweredBy.RenderContents(System.Web.UI.HtmlTextWriter)">
1360
+ <summary>
1361
+ Renders the contents of the control into the specified writer.
1362
+ </summary>
1363
+ </member>
1364
+ <member name="T:Elmah.SccStamp">
1365
+ <summary>
1366
+ Represents a source code control (SCC) stamp and its components.
1367
+ </summary>
1368
+ </member>
1369
+ <member name="M:Elmah.SccStamp.#ctor(System.String)">
1370
+ <summary>
1371
+ Initializes an <see cref="T:Elmah.SccStamp"/> instance given a SCC stamp
1372
+ ID. The ID is expected to be in the format popularized by CVS
1373
+ and SVN.
1374
+ </summary>
1375
+ </member>
1376
+ <member name="M:Elmah.SccStamp.FindAll(System.Reflection.Assembly)">
1377
+ <summary>
1378
+ Finds and builds an array of <see cref="T:Elmah.SccStamp"/> instances
1379
+ from all the <see cref="T:Elmah.SccAttribute"/> attributes applied to
1380
+ the given assembly.
1381
+ </summary>
1382
+ </member>
1383
+ <member name="M:Elmah.SccStamp.FindLatest(System.Reflection.Assembly)">
1384
+ <summary>
1385
+ Finds the latest SCC stamp for an assembly. The latest stamp is
1386
+ the one with the highest revision number.
1387
+ </summary>
1388
+ </member>
1389
+ <member name="M:Elmah.SccStamp.FindLatest(Elmah.SccStamp[])">
1390
+ <summary>
1391
+ Finds the latest stamp among an array of <see cref="T:Elmah.SccStamp"/>
1392
+ objects. The latest stamp is the one with the highest revision
1393
+ number.
1394
+ </summary>
1395
+ </member>
1396
+ <member name="M:Elmah.SccStamp.SortByRevision(Elmah.SccStamp[])">
1397
+ <summary>
1398
+ Sorts an array of <see cref="T:Elmah.SccStamp"/> objects by their
1399
+ revision numbers in ascending order.
1400
+ </summary>
1401
+ </member>
1402
+ <member name="M:Elmah.SccStamp.SortByRevision(Elmah.SccStamp[],System.Boolean)">
1403
+ <summary>
1404
+ Sorts an array of <see cref="T:Elmah.SccStamp"/> objects by their
1405
+ revision numbers in ascending or descending order.
1406
+ </summary>
1407
+ </member>
1408
+ <member name="P:Elmah.SccStamp.Id">
1409
+ <summary>
1410
+ Gets the original SCC stamp ID.
1411
+ </summary>
1412
+ </member>
1413
+ <member name="P:Elmah.SccStamp.Author">
1414
+ <summary>
1415
+ Gets the author component of the SCC stamp ID.
1416
+ </summary>
1417
+ </member>
1418
+ <member name="P:Elmah.SccStamp.FileName">
1419
+ <summary>
1420
+ Gets the file name component of the SCC stamp ID.
1421
+ </summary>
1422
+ </member>
1423
+ <member name="P:Elmah.SccStamp.Revision">
1424
+ <summary>
1425
+ Gets the revision number component of the SCC stamp ID.
1426
+ </summary>
1427
+ </member>
1428
+ <member name="P:Elmah.SccStamp.LastChanged">
1429
+ <summary>
1430
+ Gets the last modification time component of the SCC stamp ID.
1431
+ </summary>
1432
+ </member>
1433
+ <member name="P:Elmah.SccStamp.LastChangedUtc">
1434
+ <summary>
1435
+ Gets the last modification time, in coordinated universal time
1436
+ (UTC), component of the SCC stamp ID in local time.
1437
+ </summary>
1438
+ </member>
1439
+ <member name="T:Elmah.SecuritySectionHandler">
1440
+ <summary>
1441
+ Handler for the &lt;security&gt; section of the
1442
+ configuration file.
1443
+ </summary>
1444
+ </member>
1445
+ <member name="T:Elmah.SimpleServiceProviderFactory">
1446
+ <summary>
1447
+ A simple factory for creating instances of types specified in a
1448
+ section of the configuration file.
1449
+ </summary>
1450
+ </member>
1451
+ <member name="T:Elmah.SqlErrorLog">
1452
+ <summary>
1453
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses Microsoft SQL
1454
+ Server 2000 as its backing store.
1455
+ </summary>
1456
+ </member>
1457
+ <member name="M:Elmah.SqlErrorLog.#ctor(System.Collections.IDictionary)">
1458
+ <summary>
1459
+ Initializes a new instance of the <see cref="T:Elmah.SqlErrorLog"/> class
1460
+ using a dictionary of configured settings.
1461
+ </summary>
1462
+ </member>
1463
+ <member name="M:Elmah.SqlErrorLog.#ctor(System.String)">
1464
+ <summary>
1465
+ Initializes a new instance of the <see cref="T:Elmah.SqlErrorLog"/> class
1466
+ to use a specific connection string for connecting to the database.
1467
+ </summary>
1468
+ </member>
1469
+ <member name="M:Elmah.SqlErrorLog.Log(Elmah.Error)">
1470
+ <summary>
1471
+ Logs an error to the database.
1472
+ </summary>
1473
+ <remarks>
1474
+ Use the stored procedure called by this implementation to set a
1475
+ policy on how long errors are kept in the log. The default
1476
+ implementation stores all errors for an indefinite time.
1477
+ </remarks>
1478
+ </member>
1479
+ <member name="M:Elmah.SqlErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1480
+ <summary>
1481
+ Returns a page of errors from the databse in descending order
1482
+ of logged time.
1483
+ </summary>
1484
+ </member>
1485
+ <member name="M:Elmah.SqlErrorLog.GetError(System.String)">
1486
+ <summary>
1487
+ Returns the specified error from the database, or null
1488
+ if it does not exist.
1489
+ </summary>
1490
+ </member>
1491
+ <member name="P:Elmah.SqlErrorLog.Name">
1492
+ <summary>
1493
+ Gets the name of this error log implementation.
1494
+ </summary>
1495
+ </member>
1496
+ <member name="P:Elmah.SqlErrorLog.ConnectionString">
1497
+ <summary>
1498
+ Gets the connection string used by the log to connect to the database.
1499
+ </summary>
1500
+ </member>
1501
+ <member name="T:Elmah.SqlErrorLog.AsyncResultWrapper">
1502
+ <summary>
1503
+ An <see cref="T:System.IAsyncResult"/> implementation that wraps another.
1504
+ </summary>
1505
+ </member>
1506
+ <member name="T:Elmah.StringFormatter">
1507
+ <summary>
1508
+ Helper class for formatting templated strings with supplied replacements.
1509
+ </summary>
1510
+ </member>
1511
+ <member name="M:Elmah.StringFormatter.Format(System.String,System.Object[])">
1512
+ <summary>
1513
+ Replaces each format item in a specified string with the text
1514
+ equivalent of a corresponding object's value.
1515
+ </summary>
1516
+ </member>
1517
+ <member name="T:Elmah.StringTranslation">
1518
+ <summary>
1519
+ Provides translation from multiple representations of a string to a
1520
+ single base representation.
1521
+ </summary>
1522
+ </member>
1523
+ <member name="T:Elmah.TestException">
1524
+ <summary>
1525
+ The exception that is thrown when to test the error logging
1526
+ subsystem. This exception is used for testing purposes only and
1527
+ should not be used for any other purpose.
1528
+ </summary>
1529
+ </member>
1530
+ <member name="M:Elmah.TestException.#ctor">
1531
+ <summary>
1532
+ Initializes a new instance of the <see cref="T:Elmah.TestException"/> class.
1533
+ </summary>
1534
+ </member>
1535
+ <member name="M:Elmah.TestException.#ctor(System.String)">
1536
+ <summary>
1537
+ Initializes a new instance of the <see cref="T:Elmah.TestException"/> class
1538
+ with a specified error message.
1539
+ </summary>
1540
+ </member>
1541
+ <member name="M:Elmah.TestException.#ctor(System.String,System.Exception)">
1542
+ <summary>
1543
+ ializes a new instance of the <see cref="T:Elmah.TestException"/>
1544
+ class with a specified error message and a reference to the
1545
+ inner exception that is the cause of this exception.
1546
+ </summary>
1547
+ </member>
1548
+ <member name="M:Elmah.TestException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1549
+ <summary>
1550
+ Initializes a new instance of the <see cref="T:Elmah.TestException"/> class
1551
+ with serialized data.
1552
+ </summary>
1553
+ </member>
1554
+ <member name="T:Elmah.XmlFileErrorLog">
1555
+ <summary>
1556
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses XML files stored on
1557
+ disk as its backing store.
1558
+ </summary>
1559
+ </member>
1560
+ <member name="M:Elmah.XmlFileErrorLog.#ctor(System.Collections.IDictionary)">
1561
+ <summary>
1562
+ Initializes a new instance of the <see cref="T:Elmah.XmlFileErrorLog"/> class
1563
+ using a dictionary of configured settings.
1564
+ </summary>
1565
+ </member>
1566
+ <member name="M:Elmah.XmlFileErrorLog.#ctor(System.String)">
1567
+ <summary>
1568
+ Initializes a new instance of the <see cref="T:Elmah.XmlFileErrorLog"/> class
1569
+ to use a specific path to store/load XML files.
1570
+ </summary>
1571
+ </member>
1572
+ <member name="M:Elmah.XmlFileErrorLog.Log(Elmah.Error)">
1573
+ <summary>
1574
+ Logs an error to the database.
1575
+ </summary>
1576
+ <remarks>
1577
+ Logs an error as a single XML file stored in a folder. XML files are named with a
1578
+ sortable date and a unique identifier. Currently the XML files are stored indefinately.
1579
+ As they are stored as files, they may be managed using standard scheduled jobs.
1580
+ </remarks>
1581
+ </member>
1582
+ <member name="M:Elmah.XmlFileErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1583
+ <summary>
1584
+ Returns a page of errors from the folder in descending order
1585
+ of logged time as defined by the sortable filenames.
1586
+ </summary>
1587
+ </member>
1588
+ <member name="M:Elmah.XmlFileErrorLog.GetError(System.String)">
1589
+ <summary>
1590
+ Returns the specified error from the filesystem, or throws an exception if it does not exist.
1591
+ </summary>
1592
+ </member>
1593
+ <member name="P:Elmah.XmlFileErrorLog.LogPath">
1594
+ <summary>
1595
+ Gets the path to where the log is stored.
1596
+ </summary>
1597
+ </member>
1598
+ <member name="P:Elmah.XmlFileErrorLog.Name">
1599
+ <summary>
1600
+ Gets the name of this error log implementation.
1601
+ </summary>
1602
+ </member>
1603
+ </members>
1604
+ </doc>