mscorlib(4.0.0.0) API with additions
Missing.cs
1
using
System
.
Runtime
.
InteropServices
;
2
using
System
.
Runtime
.
Serialization
;
3
using
System
.
Security
;
4
5
namespace
System.Reflection
6
{
8
[
Serializable
]
9
[ComVisible(
true
)]
10
[__DynamicallyInvokable]
11
public
sealed
class
Missing
:
ISerializable
12
{
14
[__DynamicallyInvokable]
15
public
static
readonly
Missing
Value
=
new
Missing
();
16
17
private
Missing
()
18
{
19
}
20
26
[SecurityCritical]
27
void
ISerializable
.
GetObjectData
(
SerializationInfo
info,
StreamingContext
context)
28
{
29
if
(info ==
null
)
30
{
31
throw
new
ArgumentNullException
(
"info"
);
32
}
33
UnitySerializationHolder.GetUnitySerializationInfo(info,
this
);
34
}
35
}
36
}
System.Security
Definition:
AllowPartiallyTrustedCallersAttribute.cs:3
System.ArgumentNullException
The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method th...
Definition:
ArgumentNullException.cs:11
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Reflection.Missing
Represents a missing T:System.Object. This class cannot be inherited.
Definition:
Missing.cs:11
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.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.Reflection
Definition:
__Filters.cs:1
System.Reflection.Missing.Value
static readonly Missing Value
Represents the sole instance of the T:System.Reflection.Missing class.
Definition:
Missing.cs:15
System.Runtime.Serialization.ISerializable
Allows an object to control its own serialization and deserialization.
Definition:
ISerializable.cs:8
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Runtime.Serialization.ISerializable.GetObjectData
void GetObjectData(SerializationInfo info, StreamingContext context)
Populates a T:System.Runtime.Serialization.SerializationInfo with the data needed to serialize the ta...
All cs
System.Reflection
Missing.cs
Generated by
1.8.15