| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.Runtime.Serialization.SerializationEntry.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.Serialization
- {
- public struct SerializationEntry
- {
- string name;
- Type objectType;
- object value;
-
- // Properties
- public string Name
- {
- get { return name; }
- }
- public Type ObjectType
- {
- get { return objectType; }
- }
- public object Value
- {
- get { return value; }
- }
- internal SerializationEntry (string name, Type type, object value)
- {
- this.name = name;
- this.objectType = type;
- this.value = value;
- }
- }
- }
|