// // System.Runtime.Serialization.Formatters.IFieldInfo // // Author: // David Dawkins (david@dawkins.st) // // (C) David Dawkins // namespace System.Runtime.Serialization.Formatters { /// /// Interface for querying field information on serialized objects. public interface IFieldInfo { /// /// Get or set the field names for serialized objects. string[] FieldNames { get; set; } /// /// Get or set the field types for serialized objects. Type[] FieldTypes { get; set; } } }