XmlDocsOptions
Contains all options to control generation of XML-docs.
using System.Runtime.CompilerServices;
namespace Namotion.Reflection
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public class XmlDocsOptions
{
public static XmlDocsOptions Default { get; } = new XmlDocsOptions();
public bool ResolveExternalXmlDocs { get; set; } = true;
public XmlDocsFormattingMode FormattingMode { get; set; }
}
}