mscorlib(4.0.0.0) API with additions
EventSourceException.cs
1
using
System
.
Runtime
.
Serialization
;
2
3
namespace
System.Diagnostics.Tracing
4
{
6
[
Serializable
]
7
[__DynamicallyInvokable]
8
public
class
EventSourceException
:
Exception
9
{
11
[__DynamicallyInvokable]
12
public
EventSourceException
()
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
37
protected
EventSourceException
(
SerializationInfo
info,
StreamingContext
context)
38
: base(info, context)
39
{
40
}
41
42
internal
EventSourceException
(
Exception
innerException)
43
: base(
Environment
.GetResourceString(
"EventSource_ListenerWriteFailure"
), innerException)
44
{
45
}
46
}
47
}
System.Diagnostics.Tracing.EventSourceException.EventSourceException
EventSourceException(string message, Exception innerException)
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class with a spec...
Definition:
EventSourceException.cs:29
System.Diagnostics.Tracing.EventSourceException.EventSourceException
EventSourceException(string message)
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class with a spec...
Definition:
EventSourceException.cs:20
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System.Diagnostics.Tracing.EventSourceException.EventSourceException
EventSourceException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class with serial...
Definition:
EventSourceException.cs:37
System
Definition:
__Canon.cs:3
System.Diagnostics.Tracing.EventSourceException
The exception that is thrown when an error occurs during event tracing for Windows (ETW).
Definition:
EventSourceException.cs:8
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Diagnostics.Tracing.EventSourceException.EventSourceException
EventSourceException()
Initializes a new instance of the T:System.Diagnostics.Tracing.EventSourceException class.
Definition:
EventSourceException.cs:12
System.Environment
Provides information about, and means to manipulate, the current environment and platform....
Definition:
Environment.cs:21
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Diagnostics.Tracing
Definition:
ActivityFilter.cs:6
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
All cs
System.Diagnostics.Tracing
EventSourceException.cs
Generated by
1.8.15