SerializationInfo.AddValue Method (String, UInt64)
.NET Framework (current version)
Adds a 64-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.UInt64
The UInt64 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.
.NET Framework
Available since 1.1
Available since 1.1
Show: