using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Serialization
{
/// Allows users to control class loading and mandate what class to load.
// Token: 0x02000490 RID: 1168
[ComVisible(true)]
[Serializable]
public abstract class SerializationBinder
{
/// When overridden in a derived class, controls the binding of a serialized object to a type.
/// The type of the object the formatter creates a new instance of.
/// Specifies the name of the serialized object.
/// Specifies the name of the serialized object.
// Token: 0x06002C3A RID: 11322
public abstract Type BindToType(string assemblyName, string typeName);
}
}