Description
Marshals the specified value back to the existing target object. This method performs a move operation on the supplied value if a non-const rvalue reference was supplied, such as from a temporary object or the result of an std::move operation, otherwise a copy is performed.
Usage:
void Set(const ContainerType& sourceObject) const
void Set(ContainerType&& sourceObject) const
Argument list
- sourceObject
- The source object to marshal back to the target.