AddValue()

SerializationInfo::AddValue(const System::String&, float) method

Puts float value. Not implemented.

void System::Runtime::Serialization::SerializationInfo::AddValue(const System::String &name, float value)

Arguments

ParameterTypeDescription
nameconst System::String&Value name.
valuefloatValue to put.

SerializationInfo::AddValue(const System::String&, short) method

Puts short value. Not implemented.

void System::Runtime::Serialization::SerializationInfo::AddValue(const System::String &name, short value)

Arguments

ParameterTypeDescription
nameconst System::String&Value name.
valueshortValue to put.

SerializationInfo::AddValue(const System::String&, bool) method

Puts boolean value. Not implemented.

void System::Runtime::Serialization::SerializationInfo::AddValue(const System::String &name, bool value)

Arguments

ParameterTypeDescription
nameconst System::String&Value name.
valueboolValue to put.

SerializationInfo::AddValue(const System::String&, const System::SharedPtr<System::Object>&) method

Puts object value. Not implemented.

void System::Runtime::Serialization::SerializationInfo::AddValue(const System::String &name, const System::SharedPtr<System::Object> &value)

Arguments

ParameterTypeDescription
nameconst System::String&Value name.
valueconst System::SharedPtr<System::Object>&Value to put.

SerializationInfo::AddValue(const System::String&, const System::SharedPtr<System::Object>&, const System::TypeInfo&) method

Puts object value with specifed type. Not implemented.

void System::Runtime::Serialization::SerializationInfo::AddValue(const System::String &name, const System::SharedPtr<System::Object> &value, const System::TypeInfo &type)

Arguments

ParameterTypeDescription
nameconst System::String&Value name.
valueconst System::SharedPtr<System::Object>&Value to put.
typeconst System::TypeInfo&The Type of the value to put.

See Also