This documentation is archived and is not being maintained.
SerializationInfo Methods
Visual Studio 2010
The SerializationInfo type exposes the following members.
| Name | Description | |
|---|---|---|
|
AddValue(String, Boolean) | Adds a Boolean value into the SerializationInfo store. |
|
AddValue(String, Byte) | Adds an 8-bit unsigned integer value into the SerializationInfo store. |
|
AddValue(String, Char) | Adds a Unicode character value into the SerializationInfo store. |
|
AddValue(String, DateTime) | Adds a DateTime value into the SerializationInfo store. |
|
AddValue(String, Decimal) | Adds a decimal value into the SerializationInfo store. |
|
AddValue(String, Double) | Adds a double-precision floating-point value into the SerializationInfo store. |
|
AddValue(String, Int16) | Adds a 16-bit signed integer value into the SerializationInfo store. |
|
AddValue(String, Int32) | Adds a 32-bit signed integer value into the SerializationInfo store. |
|
AddValue(String, Int64) | Adds a 64-bit signed integer value into the SerializationInfo store. |
|
AddValue(String, Object) | Adds the specified object into the SerializationInfo store, where it is associated with a specified name. |
|
AddValue(String, SByte) | Adds an 8-bit signed integer value into the SerializationInfo store. |
|
AddValue(String, Single) | Adds a single-precision floating-point value into the SerializationInfo store. |
|
AddValue(String, UInt16) | Adds a 16-bit unsigned integer value into the SerializationInfo store. |
|
AddValue(String, UInt32) | Adds a 32-bit unsigned integer value into the SerializationInfo store. |
|
AddValue(String, UInt64) | Adds a 64-bit unsigned integer value into the SerializationInfo store. |
|
AddValue(String, Object, Type) | Adds a value into the SerializationInfo store, where value is associated with name and is serialized as being of Type type. |
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetBoolean | Retrieves a Boolean value from the SerializationInfo store. |
|
GetByte | Retrieves an 8-bit unsigned integer value from the SerializationInfo store. |
|
GetChar | Retrieves a Unicode character value from the SerializationInfo store. |
|
GetDateTime | Retrieves a DateTime value from the SerializationInfo store. |
|
GetDecimal | Retrieves a decimal value from the SerializationInfo store. |
|
GetDouble | Retrieves a double-precision floating-point value from the SerializationInfo store. |
|
GetEnumerator | Returns a SerializationInfoEnumerator used to iterate through the name-value pairs in the SerializationInfo store. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetInt16 | Retrieves a 16-bit signed integer value from the SerializationInfo store. |
|
GetInt32 | Retrieves a 32-bit signed integer value from the SerializationInfo store. |
|
GetInt64 | Retrieves a 64-bit signed integer value from the SerializationInfo store. |
|
GetSByte | Retrieves an 8-bit signed integer value from the SerializationInfo store. |
|
GetSingle | Retrieves a single-precision floating-point value from the SerializationInfo store. |
|
GetString | Retrieves a String value from the SerializationInfo store. |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
GetUInt16 | Retrieves a 16-bit unsigned integer value from the SerializationInfo store. |
|
GetUInt32 | Retrieves a 32-bit unsigned integer value from the SerializationInfo store. |
|
GetUInt64 | Retrieves a 64-bit unsigned integer value from the SerializationInfo store. |
|
GetValue | Retrieves a value from the SerializationInfo store. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
SetType | Sets the Type of the object to serialize. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Show: