mscorlib(4.0.0.0) API with additions
SerializationEntry.cs
2 
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 }
Type ObjectType
Gets the T:System.Type of the object.
Definition: __Canon.cs:3
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
Holds the value, T:System.Type, and name of a serialized object.
object Value
Gets the value contained in the object.
string Name
Gets the name of the object.