© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•4y ago•
9 replies
Indeed

✅ XML docs not all exceptions included

Hi!
It appears not all exceptions are included in xml docs
Is there a way to go about it?

namespace WPFWeather.Services.WeatherProvider;
public interface IWeatherProvider {
    /// <summary>
    /// Fetches WeatherData for the given location
    /// </summary>
    /// <param name="location"></param>
    /// <param name="from"></param>
    /// <param name="to"></param>
    /// <returns></returns>
    /// <exception cref="ArgumentException"></exception>
    /// <exception cref="System.Net.HttpRequestException"></exception> //not included
    public Task<IEnumerable<WeatherData>> GetWeatherAsync(Location location, DateTime from, DateTime to);
}
namespace WPFWeather.Services.WeatherProvider;
public interface IWeatherProvider {
    /// <summary>
    /// Fetches WeatherData for the given location
    /// </summary>
    /// <param name="location"></param>
    /// <param name="from"></param>
    /// <param name="to"></param>
    /// <returns></returns>
    /// <exception cref="ArgumentException"></exception>
    /// <exception cref="System.Net.HttpRequestException"></exception> //not included
    public Task<IEnumerable<WeatherData>> GetWeatherAsync(Location location, DateTime from, DateTime to);
}
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

xml deserialization not deserializes all nodes
C#CC# / help
3y ago
❔ `<code>` xml docs not showing nicely in VSCode
C#CC# / help
3y ago
Viewing all possible exceptions
C#CC# / help
2mo ago