Properties with summaries defined in interfaces do not have their values retrieved when calling GetXmlDocsSummary, either on the base class or on the interface directly.
public interface IConfigInfo
{
/// <summary>
/// Test Path
/// </summary>
string Path { get; set; }
}
public class ConfigInfo : IConfigInfo
{
/// <inheritdoc />
public string Path { get; set; }
}
Properties with summaries defined in interfaces do not have their values retrieved when calling
GetXmlDocsSummary
, either on the base class or on the interface directly.