elmah 1.1.11517.0.20100822

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
@@ -0,0 +1,1544 @@
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="F:Elmah.ErrorLogModule.Logged"/> event.
650
+ </summary>
651
+ </member>
652
+ <member name="M:Elmah.ErrorLogModule.OnFiltering(Elmah.ExceptionFilterEventArgs)">
653
+ <summary>
654
+ Raises the <see cref="F: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="F: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="F:Elmah.ErrorMailModule.Mailing"/> event.
869
+ </summary>
870
+ </member>
871
+ <member name="M:Elmah.ErrorMailModule.OnMailed(Elmah.ErrorMailEventArgs)">
872
+ <summary>
873
+ Fires the <see cref="F:Elmah.ErrorMailModule.Mailed"/> event.
874
+ </summary>
875
+ </member>
876
+ <member name="M:Elmah.ErrorMailModule.OnDisposingMail(Elmah.ErrorMailEventArgs)">
877
+ <summary>
878
+ Fires the <see cref="F: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="F: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.HtmlLinkType">
1113
+ <summary>
1114
+ User agents, search engines, etc. may interpret and use these link
1115
+ types in a variety of ways. For example, user agents may provide
1116
+ access to linked documents through a navigation bar.
1117
+ </summary>
1118
+ <remarks>
1119
+ See <a href="http://www.w3.org/TR/html401/types.html#type-links">6.12 Link types</a>
1120
+ for more information.
1121
+ </remarks>
1122
+ </member>
1123
+ <member name="T:Elmah.HttpRequestSecurity">
1124
+ <summary>
1125
+ Security-related helper methods for web requests.
1126
+ </summary>
1127
+ </member>
1128
+ <member name="M:Elmah.HttpRequestSecurity.IsLocal(System.Web.HttpRequest)">
1129
+ <summary>
1130
+ Determines whether the request is from the local computer or not.
1131
+ </summary>
1132
+ <remarks>
1133
+ This method is primarily for .NET Framework 1.x where the
1134
+ <see cref="P:System.Web.HttpRequest.IsLocal"/> was not available.
1135
+ </remarks>
1136
+ </member>
1137
+ <member name="T:Elmah.HttpStatus">
1138
+ <summary>
1139
+ Represents an HTTP status (code plus reason) as per
1140
+ <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1">Section 6.1 of RFC 2616</a>.
1141
+ </summary>
1142
+ </member>
1143
+ <member name="T:Elmah.InvariantStringArray">
1144
+ <summary>
1145
+ Helper methods for array containing culturally-invariant strings.
1146
+ The main reason for this helper is to help with po
1147
+ </summary>
1148
+ </member>
1149
+ <member name="T:JetBrains.Annotations.AssertionMethodAttribute">
1150
+ <summary>
1151
+ Indicates that the marked method is assertion method, i.e. it halts control flow if one of the conditions is satisfied.
1152
+ To set the condition, mark one of the parameters with <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute.
1153
+ </summary>
1154
+ <seealso cref="T:JetBrains.Annotations.AssertionConditionAttribute"/>
1155
+ </member>
1156
+ <member name="T:JetBrains.Annotations.AssertionConditionAttribute">
1157
+ <summary>
1158
+ Indicates the condition parameter of the assertion method.
1159
+ The method itself should be marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute.
1160
+ The mandatory argument of the attribute is the assertion type.
1161
+ </summary>
1162
+ <seealso cref="T:JetBrains.Annotations.AssertionConditionType"/>
1163
+ </member>
1164
+ <member name="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
1165
+ <summary>
1166
+ Initializes new instance of AssertionConditionAttribute.
1167
+ </summary>
1168
+ <param name="conditionType">Specifies condition type.</param>
1169
+ </member>
1170
+ <member name="P:JetBrains.Annotations.AssertionConditionAttribute.ConditionType">
1171
+ <summary>
1172
+ Gets condition type.
1173
+ </summary>
1174
+ </member>
1175
+ <member name="T:JetBrains.Annotations.AssertionConditionType">
1176
+ <summary>
1177
+ Specifies assertion type. If the assertion method argument satisifes the condition, then the execution continues.
1178
+ Otherwise, execution is assumed to be halted.
1179
+ </summary>
1180
+ </member>
1181
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
1182
+ <summary>
1183
+ Indicates that the marked parameter should be evaluated to true.
1184
+ </summary>
1185
+ </member>
1186
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
1187
+ <summary>
1188
+ Indicates that the marked parameter should be evaluated to false.
1189
+ </summary>
1190
+ </member>
1191
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
1192
+ <summary>
1193
+ Indicates that the marked parameter should be evaluated to null value.
1194
+ </summary>
1195
+ </member>
1196
+ <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
1197
+ <summary>
1198
+ Indicates that the marked parameter should be evaluated to not null value.
1199
+ </summary>
1200
+ </member>
1201
+ <member name="T:Elmah.JsonTextWriter">
1202
+ <summary>
1203
+ Represents a writer that provides a fast, non-cached, forward-only
1204
+ way of generating streams or files containing JSON Text according
1205
+ to the grammar rules laid out in
1206
+ <a href="http://www.ietf.org/rfc/rfc4627.txt">RFC 4627</a>.
1207
+ </summary>
1208
+ <remarks>
1209
+ This class supports ELMAH and is not intended to be used directly
1210
+ from your code. It may be modified or removed in the future without
1211
+ notice. It has public accessibility for testing purposes. If you
1212
+ need a general-purpose JSON Text encoder, consult
1213
+ <a href="http://www.json.org/">JSON.org</a> for implementations
1214
+ or use classes available from the Microsoft .NET Framework.
1215
+ </remarks>
1216
+ </member>
1217
+ <member name="T:Elmah.ManifestResourceHandler">
1218
+ <summary>
1219
+ Reads a resource from the assembly manifest and returns its contents
1220
+ as the response entity.
1221
+ </summary>
1222
+ </member>
1223
+ <member name="T:Elmah.Mask">
1224
+ <summary>
1225
+ Collection of utility methods for masking values.
1226
+ </summary>
1227
+ </member>
1228
+ <member name="T:Elmah.MemoryErrorLog">
1229
+ <summary>
1230
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses memory as its
1231
+ backing store.
1232
+ </summary>
1233
+ <remarks>
1234
+ All <see cref="T:Elmah.MemoryErrorLog"/> instances will share the same memory
1235
+ store that is bound to the application (not an instance of this class).
1236
+ </remarks>
1237
+ </member>
1238
+ <member name="F:Elmah.MemoryErrorLog.MaximumSize">
1239
+ <summary>
1240
+ The maximum number of errors that will ever be allowed to be stored
1241
+ in memory.
1242
+ </summary>
1243
+ </member>
1244
+ <member name="F:Elmah.MemoryErrorLog.DefaultSize">
1245
+ <summary>
1246
+ The maximum number of errors that will be held in memory by default
1247
+ if no size is specified.
1248
+ </summary>
1249
+ </member>
1250
+ <member name="M:Elmah.MemoryErrorLog.#ctor">
1251
+ <summary>
1252
+ Initializes a new instance of the <see cref="T:Elmah.MemoryErrorLog"/> class
1253
+ with a default size for maximum recordable entries.
1254
+ </summary>
1255
+ </member>
1256
+ <member name="M:Elmah.MemoryErrorLog.#ctor(System.Int32)">
1257
+ <summary>
1258
+ Initializes a new instance of the <see cref="T:Elmah.MemoryErrorLog"/> class
1259
+ with a specific size for maximum recordable entries.
1260
+ </summary>
1261
+ </member>
1262
+ <member name="M:Elmah.MemoryErrorLog.#ctor(System.Collections.IDictionary)">
1263
+ <summary>
1264
+ Initializes a new instance of the <see cref="T:Elmah.MemoryErrorLog"/> class
1265
+ using a dictionary of configured settings.
1266
+ </summary>
1267
+ </member>
1268
+ <member name="M:Elmah.MemoryErrorLog.Log(Elmah.Error)">
1269
+ <summary>
1270
+ Logs an error to the application memory.
1271
+ </summary>
1272
+ <remarks>
1273
+ If the log is full then the oldest error entry is removed.
1274
+ </remarks>
1275
+ </member>
1276
+ <member name="M:Elmah.MemoryErrorLog.GetError(System.String)">
1277
+ <summary>
1278
+ Returns the specified error from application memory, or null
1279
+ if it does not exist.
1280
+ </summary>
1281
+ </member>
1282
+ <member name="M:Elmah.MemoryErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1283
+ <summary>
1284
+ Returns a page of errors from the application memory in
1285
+ descending order of logged time.
1286
+ </summary>
1287
+ </member>
1288
+ <member name="P:Elmah.MemoryErrorLog.Name">
1289
+ <summary>
1290
+ Gets the name of this error log implementation.
1291
+ </summary>
1292
+ </member>
1293
+ <member name="T:Elmah.PoweredBy">
1294
+ <summary>
1295
+ Displays a "Powered-by ELMAH" message that also contains the assembly
1296
+ file version informatin and copyright notice.
1297
+ </summary>
1298
+ </member>
1299
+ <member name="M:Elmah.PoweredBy.RenderContents(System.Web.UI.HtmlTextWriter)">
1300
+ <summary>
1301
+ Renders the contents of the control into the specified writer.
1302
+ </summary>
1303
+ </member>
1304
+ <member name="T:Elmah.SccStamp">
1305
+ <summary>
1306
+ Represents a source code control (SCC) stamp and its components.
1307
+ </summary>
1308
+ </member>
1309
+ <member name="M:Elmah.SccStamp.#ctor(System.String)">
1310
+ <summary>
1311
+ Initializes an <see cref="T:Elmah.SccStamp"/> instance given a SCC stamp
1312
+ ID. The ID is expected to be in the format popularized by CVS
1313
+ and SVN.
1314
+ </summary>
1315
+ </member>
1316
+ <member name="M:Elmah.SccStamp.FindAll(System.Reflection.Assembly)">
1317
+ <summary>
1318
+ Finds and builds an array of <see cref="T:Elmah.SccStamp"/> instances
1319
+ from all the <see cref="T:Elmah.SccAttribute"/> attributes applied to
1320
+ the given assembly.
1321
+ </summary>
1322
+ </member>
1323
+ <member name="M:Elmah.SccStamp.FindLatest(System.Reflection.Assembly)">
1324
+ <summary>
1325
+ Finds the latest SCC stamp for an assembly. The latest stamp is
1326
+ the one with the highest revision number.
1327
+ </summary>
1328
+ </member>
1329
+ <member name="M:Elmah.SccStamp.FindLatest(Elmah.SccStamp[])">
1330
+ <summary>
1331
+ Finds the latest stamp among an array of <see cref="T:Elmah.SccStamp"/>
1332
+ objects. The latest stamp is the one with the highest revision
1333
+ number.
1334
+ </summary>
1335
+ </member>
1336
+ <member name="M:Elmah.SccStamp.SortByRevision(Elmah.SccStamp[])">
1337
+ <summary>
1338
+ Sorts an array of <see cref="T:Elmah.SccStamp"/> objects by their
1339
+ revision numbers in ascending order.
1340
+ </summary>
1341
+ </member>
1342
+ <member name="M:Elmah.SccStamp.SortByRevision(Elmah.SccStamp[],System.Boolean)">
1343
+ <summary>
1344
+ Sorts an array of <see cref="T:Elmah.SccStamp"/> objects by their
1345
+ revision numbers in ascending or descending order.
1346
+ </summary>
1347
+ </member>
1348
+ <member name="P:Elmah.SccStamp.Id">
1349
+ <summary>
1350
+ Gets the original SCC stamp ID.
1351
+ </summary>
1352
+ </member>
1353
+ <member name="P:Elmah.SccStamp.Author">
1354
+ <summary>
1355
+ Gets the author component of the SCC stamp ID.
1356
+ </summary>
1357
+ </member>
1358
+ <member name="P:Elmah.SccStamp.FileName">
1359
+ <summary>
1360
+ Gets the file name component of the SCC stamp ID.
1361
+ </summary>
1362
+ </member>
1363
+ <member name="P:Elmah.SccStamp.Revision">
1364
+ <summary>
1365
+ Gets the revision number component of the SCC stamp ID.
1366
+ </summary>
1367
+ </member>
1368
+ <member name="P:Elmah.SccStamp.LastChanged">
1369
+ <summary>
1370
+ Gets the last modification time component of the SCC stamp ID.
1371
+ </summary>
1372
+ </member>
1373
+ <member name="P:Elmah.SccStamp.LastChangedUtc">
1374
+ <summary>
1375
+ Gets the last modification time, in coordinated universal time
1376
+ (UTC), component of the SCC stamp ID in local time.
1377
+ </summary>
1378
+ </member>
1379
+ <member name="T:Elmah.SecuritySectionHandler">
1380
+ <summary>
1381
+ Handler for the &lt;security&gt; section of the
1382
+ configuration file.
1383
+ </summary>
1384
+ </member>
1385
+ <member name="T:Elmah.SimpleServiceProviderFactory">
1386
+ <summary>
1387
+ A simple factory for creating instances of types specified in a
1388
+ section of the configuration file.
1389
+ </summary>
1390
+ </member>
1391
+ <member name="T:Elmah.SqlErrorLog">
1392
+ <summary>
1393
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses Microsoft SQL
1394
+ Server 2000 as its backing store.
1395
+ </summary>
1396
+ </member>
1397
+ <member name="M:Elmah.SqlErrorLog.#ctor(System.Collections.IDictionary)">
1398
+ <summary>
1399
+ Initializes a new instance of the <see cref="T:Elmah.SqlErrorLog"/> class
1400
+ using a dictionary of configured settings.
1401
+ </summary>
1402
+ </member>
1403
+ <member name="M:Elmah.SqlErrorLog.#ctor(System.String)">
1404
+ <summary>
1405
+ Initializes a new instance of the <see cref="T:Elmah.SqlErrorLog"/> class
1406
+ to use a specific connection string for connecting to the database.
1407
+ </summary>
1408
+ </member>
1409
+ <member name="M:Elmah.SqlErrorLog.Log(Elmah.Error)">
1410
+ <summary>
1411
+ Logs an error to the database.
1412
+ </summary>
1413
+ <remarks>
1414
+ Use the stored procedure called by this implementation to set a
1415
+ policy on how long errors are kept in the log. The default
1416
+ implementation stores all errors for an indefinite time.
1417
+ </remarks>
1418
+ </member>
1419
+ <member name="M:Elmah.SqlErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1420
+ <summary>
1421
+ Returns a page of errors from the databse in descending order
1422
+ of logged time.
1423
+ </summary>
1424
+ </member>
1425
+ <member name="M:Elmah.SqlErrorLog.GetError(System.String)">
1426
+ <summary>
1427
+ Returns the specified error from the database, or null
1428
+ if it does not exist.
1429
+ </summary>
1430
+ </member>
1431
+ <member name="P:Elmah.SqlErrorLog.Name">
1432
+ <summary>
1433
+ Gets the name of this error log implementation.
1434
+ </summary>
1435
+ </member>
1436
+ <member name="P:Elmah.SqlErrorLog.ConnectionString">
1437
+ <summary>
1438
+ Gets the connection string used by the log to connect to the database.
1439
+ </summary>
1440
+ </member>
1441
+ <member name="T:Elmah.SqlErrorLog.AsyncResultWrapper">
1442
+ <summary>
1443
+ An <see cref="T:System.IAsyncResult"/> implementation that wraps another.
1444
+ </summary>
1445
+ </member>
1446
+ <member name="T:Elmah.StringFormatter">
1447
+ <summary>
1448
+ Helper class for formatting templated strings with supplied replacements.
1449
+ </summary>
1450
+ </member>
1451
+ <member name="M:Elmah.StringFormatter.Format(System.String,System.Object[])">
1452
+ <summary>
1453
+ Replaces each format item in a specified string with the text
1454
+ equivalent of a corresponding object's value.
1455
+ </summary>
1456
+ </member>
1457
+ <member name="T:Elmah.StringTranslation">
1458
+ <summary>
1459
+ Provides translation from multiple representations of a string to a
1460
+ single base representation.
1461
+ </summary>
1462
+ </member>
1463
+ <member name="T:Elmah.TestException">
1464
+ <summary>
1465
+ The exception that is thrown when to test the error logging
1466
+ subsystem. This exception is used for testing purposes only and
1467
+ should not be used for any other purpose.
1468
+ </summary>
1469
+ </member>
1470
+ <member name="M:Elmah.TestException.#ctor">
1471
+ <summary>
1472
+ Initializes a new instance of the <see cref="T:Elmah.TestException"/> class.
1473
+ </summary>
1474
+ </member>
1475
+ <member name="M:Elmah.TestException.#ctor(System.String)">
1476
+ <summary>
1477
+ Initializes a new instance of the <see cref="T:Elmah.TestException"/> class
1478
+ with a specified error message.
1479
+ </summary>
1480
+ </member>
1481
+ <member name="M:Elmah.TestException.#ctor(System.String,System.Exception)">
1482
+ <summary>
1483
+ ializes a new instance of the <see cref="T:Elmah.TestException"/>
1484
+ class with a specified error message and a reference to the
1485
+ inner exception that is the cause of this exception.
1486
+ </summary>
1487
+ </member>
1488
+ <member name="M:Elmah.TestException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1489
+ <summary>
1490
+ Initializes a new instance of the <see cref="T:Elmah.TestException"/> class
1491
+ with serialized data.
1492
+ </summary>
1493
+ </member>
1494
+ <member name="T:Elmah.XmlFileErrorLog">
1495
+ <summary>
1496
+ An <see cref="T:Elmah.ErrorLog"/> implementation that uses XML files stored on
1497
+ disk as its backing store.
1498
+ </summary>
1499
+ </member>
1500
+ <member name="M:Elmah.XmlFileErrorLog.#ctor(System.Collections.IDictionary)">
1501
+ <summary>
1502
+ Initializes a new instance of the <see cref="T:Elmah.XmlFileErrorLog"/> class
1503
+ using a dictionary of configured settings.
1504
+ </summary>
1505
+ </member>
1506
+ <member name="M:Elmah.XmlFileErrorLog.#ctor(System.String)">
1507
+ <summary>
1508
+ Initializes a new instance of the <see cref="T:Elmah.XmlFileErrorLog"/> class
1509
+ to use a specific path to store/load XML files.
1510
+ </summary>
1511
+ </member>
1512
+ <member name="M:Elmah.XmlFileErrorLog.Log(Elmah.Error)">
1513
+ <summary>
1514
+ Logs an error to the database.
1515
+ </summary>
1516
+ <remarks>
1517
+ Logs an error as a single XML file stored in a folder. XML files are named with a
1518
+ sortable date and a unique identifier. Currently the XML files are stored indefinately.
1519
+ As they are stored as files, they may be managed using standard scheduled jobs.
1520
+ </remarks>
1521
+ </member>
1522
+ <member name="M:Elmah.XmlFileErrorLog.GetErrors(System.Int32,System.Int32,System.Collections.IList)">
1523
+ <summary>
1524
+ Returns a page of errors from the folder in descending order
1525
+ of logged time as defined by the sortable filenames.
1526
+ </summary>
1527
+ </member>
1528
+ <member name="M:Elmah.XmlFileErrorLog.GetError(System.String)">
1529
+ <summary>
1530
+ Returns the specified error from the filesystem, or throws an exception if it does not exist.
1531
+ </summary>
1532
+ </member>
1533
+ <member name="P:Elmah.XmlFileErrorLog.LogPath">
1534
+ <summary>
1535
+ Gets the path to where the log is stored.
1536
+ </summary>
1537
+ </member>
1538
+ <member name="P:Elmah.XmlFileErrorLog.Name">
1539
+ <summary>
1540
+ Gets the name of this error log implementation.
1541
+ </summary>
1542
+ </member>
1543
+ </members>
1544
+ </doc>