23 lines
750 B
C#
23 lines
750 B
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.Serialization
|
|
{
|
|
/// <summary>Provides functionality for formatting serialized objects.</summary>
|
|
// Token: 0x0200043E RID: 1086
|
|
[Token(Token = "0x200043E")]
|
|
[ComVisible(true)]
|
|
public interface IFormatter
|
|
{
|
|
/// <summary>Deserializes the data on the provided stream and reconstitutes the graph of objects.</summary>
|
|
/// <param name="serializationStream">The stream that contains the data to deserialize.</param>
|
|
/// <returns>The top object of the deserialized graph.</returns>
|
|
// Token: 0x06002486 RID: 9350
|
|
[Token(Token = "0x6002486")]
|
|
[Address(Slot = "0")]
|
|
object Deserialize(Stream serializationStream);
|
|
}
|
|
}
|