SerializationInfo.AddValue Method (String, Boolean)
Adds a Boolean value into the SerializationInfo store.
Namespace: System.Runtime.Serialization
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.Boolean
The Boolean value to serialize.
| Exception | Condition |
|---|---|
| ArgumentNullException | The name parameter is null. |
| SerializationException | A value has already been associated with name. |
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. For example:
void ISerializable.GetObject(SerializationInfo info, StreamingContext context) { // This will not cause an exception to be thrown. info.AddValue("ABC", true); info.AddValue("abc", false); // However, this will cause the SerializationException to be thrown. info.AddValue("XYZ", true); info.AddValue("XYZ", false); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.