SerializationInfo::AddValue Method (String, UInt32)
Adds a 32-bit unsigned integer value into the SerializationInfo store.
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::UInt32
The UInt32 value to serialize.
| Exception | Condition |
|---|---|
| ArgumentNullException | The name parameter is nullptr. |
| 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.
The following example uses the AddValue method to customize the serialization of a type. The code adds a string and an integer to an instance of the SerializationInfo class in the GetObjectData method of the ISerializable interface. The code also uses the GetValue method to retrieve values from the SerializationInfo.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.