mscorlib(4.0.0.0) API with additions
EventSourceException.cs
2 
4 {
7  [__DynamicallyInvokable]
9  {
11  [__DynamicallyInvokable]
13  : base(Environment.GetResourceString("EventSource_ListenerWriteFailure"))
14  {
15  }
16 
19  [__DynamicallyInvokable]
20  public EventSourceException(string message)
21  : base(message)
22  {
23  }
24 
28  [__DynamicallyInvokable]
29  public EventSourceException(string message, Exception innerException)
30  : base(message, innerException)
31  {
32  }
33 
38  : base(info, context)
39  {
40  }
41 
42  internal EventSourceException(Exception innerException)
43  : base(Environment.GetResourceString("EventSource_ListenerWriteFailure"), innerException)
44  {
45  }
46  }
47 }
EventSourceException(string message, Exception innerException)
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class with a spec...
EventSourceException(string message)
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class with a spec...
EventSourceException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class with serial...
Definition: __Canon.cs:3
The exception that is thrown when an error occurs during event tracing for Windows (ETW).
Describes the source and destination of a given serialized stream, and provides an additional caller-...
EventSourceException()
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class.
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.