using System; using System.IO; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Runtime.Serialization { /// Provides functionality for formatting serialized objects. // Token: 0x0200045A RID: 1114 [Token(Token = "0x200045A")] [ComVisible(true)] public interface IFormatter { /// Deserializes the data on the provided stream and reconstitutes the graph of objects. /// The stream that contains the data to deserialize. /// The top object of the deserialized graph. // Token: 0x06002692 RID: 9874 [Token(Token = "0x6002692")] [Address(Slot = "0")] object Deserialize(Stream serializationStream); } }