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: 0x0200045A RID: 1114
|
|
[Token(Token = "0x200045A")]
|
|
[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: 0x06002692 RID: 9874
|
|
[Token(Token = "0x6002692")]
|
|
[Address(Slot = "0")]
|
|
object Deserialize(Stream serializationStream);
|
|
}
|
|
}
|