mscorlib(4.0.0.0) API with additions
SerializationEntry.cs
1
using
System
.
Runtime
.
InteropServices
;
2
3
namespace
System.Runtime.Serialization
4
{
6
[ComVisible(
true
)]
7
public
struct
SerializationEntry
8
{
9
private
Type
m_type;
10
11
private
object
m_value;
12
13
private
string
m_name;
14
17
public
object
Value
=> m_value;
18
21
public
string
Name
=> m_name;
22
25
public
Type
ObjectType
=> m_type;
26
27
internal
SerializationEntry
(
string
entryName,
object
entryValue,
Type
entryType)
28
{
29
m_value = entryValue;
30
m_name = entryName;
31
m_type = entryType;
32
}
33
}
34
}
System.Runtime.Serialization.SerializationEntry.ObjectType
Type ObjectType
Gets the T:System.Type of the object.
Definition:
SerializationEntry.cs:25
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Type
Represents type declarations: class types, interface types, array types, value types,...
Definition:
Type.cs:18
System.Runtime.Serialization.SerializationEntry
Holds the value, T:System.Type, and name of a serialized object.
Definition:
SerializationEntry.cs:7
System.Runtime.Serialization.SerializationEntry.Value
object Value
Gets the value contained in the object.
Definition:
SerializationEntry.cs:17
System.Runtime.Serialization.SerializationEntry.Name
string Name
Gets the name of the object.
Definition:
SerializationEntry.cs:21
All cs
System.Runtime.Serialization
SerializationEntry.cs
Generated by
1.8.15