SerializationInfo.AddValue Method (String, Object)
.NET Framework (current version)
Adds the specified object into the SerializationInfo store, where it is associated with a specified name.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
-
Type:
System.String
The name to associate with the value, so it can be deserialized later.
- value
-
Type:
System.Object
The value to be serialized. Any children of this object will automatically be serialized.
| Exception | Condition |
|---|---|
| ArgumentNullException | name is null. |
| SerializationException | A value has already been associated with name. |
The object contained in the value parameter is serialized as the type returned by value.
If two values are added with names that differ only by case, no exception will be thrown, which is not a recommended practice. However, adding two values with the exact same name will cause the SerializationException to be thrown.
.NET Framework
Available since 1.1
Available since 1.1
Show: