Performs object Json deserialization from the raw bytes. The object to deserialize (can be null). The source data to read from. The engine build number of the saved data. Used to resolve old object formats when loading deprecated data.
| 27 | /// <param name="data">The source data to read from.</param> |
| 28 | /// <param name="engineBuild">The engine build number of the saved data. Used to resolve old object formats when loading deprecated data.</param> |
| 29 | FORCE_INLINE static void LoadFromBytes(ISerializable* obj, const Array<byte>& data, int32 engineBuild) |
| 30 | { |
| 31 | LoadFromBytes(obj, Span<byte>(data.Get(), data.Count()), engineBuild); |
| 32 | } |
| 33 | |
| 34 | /// <summary> |
| 35 | /// Performs object Json deserialization from the raw bytes. |
no test coverage detected