mscorlib(4.0.0.0) API with additions
MulticastNotSupportedException.cs
1
using
System
.
Runtime
.
InteropServices
;
2
using
System
.
Runtime
.
Serialization
;
3
4
namespace
System
5
{
7
[
Serializable
]
8
[ComVisible(
true
)]
9
public
sealed
class
MulticastNotSupportedException
:
SystemException
10
{
12
public
MulticastNotSupportedException
()
13
: base(
Environment
.GetResourceString(
"Arg_MulticastNotSupportedException"
))
14
{
15
SetErrorCode(-2146233068);
16
}
17
20
public
MulticastNotSupportedException
(
string
message)
21
: base(message)
22
{
23
SetErrorCode(-2146233068);
24
}
25
29
public
MulticastNotSupportedException
(
string
message,
Exception
inner)
30
: base(message, inner)
31
{
32
SetErrorCode(-2146233068);
33
}
34
35
internal
MulticastNotSupportedException
(
SerializationInfo
info,
StreamingContext
context)
36
: base(info, context)
37
{
38
}
39
}
40
}
System.MulticastNotSupportedException.MulticastNotSupportedException
MulticastNotSupportedException()
Initializes a new instance of the T:System.MulticastNotSupportedException class.
Definition:
MulticastNotSupportedException.cs:12
System.SystemException
Serves as the base class for system exceptions namespace.
Definition:
SystemException.cs:9
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
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.MulticastNotSupportedException.MulticastNotSupportedException
MulticastNotSupportedException(string message, Exception inner)
Initializes a new instance of the T:System.MulticastNotSupportedException class with a specified erro...
Definition:
MulticastNotSupportedException.cs:29
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.MulticastNotSupportedException
The exception that is thrown when there is an attempt to combine two delegates based on the T:System....
Definition:
MulticastNotSupportedException.cs:9
System.MulticastNotSupportedException.MulticastNotSupportedException
MulticastNotSupportedException(string message)
Initializes a new instance of the T:System.MulticastNotSupportedException class with a specified erro...
Definition:
MulticastNotSupportedException.cs:20
All cs
System
MulticastNotSupportedException.cs
Generated by
1.8.15