SerializationInfo::AddValue Method (String^, UInt32)
Adds a 32-bit unsigned integer value into the SerializationInfo store.
This API is not CLS-compliant.
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 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.
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.
Available since 1.1