Files
2024-09-22 21:45:37 +02:00

18 lines
599 BLFS
C#

using System;
namespace FullSerializer {
/// <summary>
/// The serialization converter allows for customization of the serialization
/// process.
/// </summary>
public abstract class fsConverter : fsBaseConverter {
/// <summary>
/// Can this converter serialize and deserialize the given object type?
/// </summary>
/// <param name="type">The given object type.</param>
/// <returns>
/// True if the converter can serialize it, false otherwise.
/// </returns>
public abstract bool CanProcess(Type type);
}
}