OpenAPI documentation from XML documentation comments

How XML documentation comments can be used to populate a swagger document

Home DailyDrop

Daily Knowledge Drop

Code comments can be used to populate the swagger document with helpful comments when working with minimal API's.

The XML Documentation comments (those comments starting with ///) are output to an XML documentation file on application build - this file is then be user to populate the swagger document at runtime.


Code

For the below sample, the default weatherforecast endpoint will be used, but modified slightly.

Endpoint definition

The first step is break out the various components to make them easier to comment.

Move the WeatherForecast response object into its own file, WeatherForecast.cs:

public record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
{
    public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}

The lambda delegate which is called when the GET "weatherforecast" endpoint is called, is also moved into its own static method in the WeatherCalculator class:

public class WeatherCalculator
{
    static string[] summaries = new[]
    {
        "Freezing", "Bracing", "Chilly", "Cool", "Mild", 
        "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
    };

    public static WeatherForecast[] GetWeather([FromRoute]string city)
    {
        _ = city;

        var forecast = Enumerable.Range(1, 5).Select(index =>
        new WeatherForecast
        (
            DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
            Random.Shared.Next(-20, 55),
            summaries[Random.Shared.Next(summaries.Length)]
        ))
        .ToArray();

        return forecast;
    }
}

A city field was also added to the GetWeather as a parameter - this is not used and is just added to demonstrate how it is reflected on the swagger document.

The endpoint is then updated to invoke the static GetWeather method instead of invoking the delegate:

// the swagger and api dependency injection
// and middleware components will automatically
// be added if the correct template settings 
// were chosen
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

var app = builder.Build();

if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}

// change from delegate to call the static method
// created above
app.MapGet("/weatherforecast/{city}", WeatherCalculator.GetWeather);

If running the application and browsing to the swagger endpoint, it should work as before (before the code modifications), but still not documentation added:

Swagger without documentation


XML Documentation

The next step is to add XML documentation comments to the code. In Visual Studio, auto-complete will create the XML document structure by typing /// above a class or method

Updated WeatherForecast response object:

/// <summary>
/// Represents the weather for a specific date
/// </summary>
/// <param name="Date">The date for the weather forecast</param>
/// <param name="TemperatureC">The temperature in degrees celsius</param>
/// <param name="Summary">A summary description of the weather</param>
public record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
{
    public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}

The updated WeatherCalculator class and static GetWeather method:

/// <summary>
/// Contains logic to get the weather forecast details
/// </summary>
public class WeatherCalculator
{
    static string[] summaries = new[]
    {
        "Freezing", "Bracing", "Chilly", "Cool", "Mild", 
        "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
    };

    /// <summary>
    /// Retrieve the weather forecast for the next 5 days for the city specified
    /// </summary>
    /// <param name="city">The city for the weather forecasts should be retrieved</param>
    /// <returns>The forecast details for the next 5 days</returns>
    public static WeatherForecast[] GetWeather(string city)
    {
        _ = city;

        var forecast = Enumerable.Range(1, 5).Select(index =>
        new WeatherForecast
        (
            DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
            Random.Shared.Next(-20, 55),
            summaries[Random.Shared.Next(summaries.Length)]
        ))
        .ToArray();

        return forecast;
    }
}

Doing the above is good practice whether using this technique to populate the swagger document or not, as it provides context and information for future developers of the code.

At this point this information is not available publicly. Next step we'll make the XML documentation details available outside the code.


File generation

This step is very straight forward - the Documentation file option needs to be set on the project. This can be done in one of two ways:

  • Add the GenerateDocumentationFile node directly to the csproj file:
<PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <Nullable>enable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
    <GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
  • Set the flag in the project properties:

Project properties Documentation file flag

Compiling the code will now also generate a XML document file along with the binary.

Now that we have XML file, next we can instruct the application to populate the swagger document with the details in the XML document file.


Swagger Setup

During application startup, the builder.Services.AddSwaggerGen() line should be replaced with the following:

builder.Services.AddSwaggerGen(c =>
{
    c.SwaggerDoc("v1", new() { Title = "My API", Version = "v1" });
    // build up the file path to the XML document
    var filePath = Path.Combine(AppContext.BaseDirectory, "XmlDocs.xml");
    // instruct the swagger generation process to include details
    // from the file
    c.IncludeXmlComments(filePath);
});

Now, when browsing to the swagger endpoint the XML comments are included:

Swagger with comments


Notes

I personally find this method to be clean and very easy to implement and will definitely be using this on all my own API's going forward. This method ensures the code is well documented (for developers), and is also well documented for consumers with minimal additional effort. Keep in mind though that the code comments will be publicly exposed to the consumer, so would need to make sense in that context.


References

Using XML Documentation With ASP.NET Core Minimal API Apps and OpenAPI

Daily Drop 189: 26-10-2022

At the start of 2022 I set myself the goal of learning one new coding related piece of knowledge a day.
It could be anything - some.NET / C# functionality I wasn't aware of, a design practice, a cool new coding technique, or just something I find interesting. It could be something I knew at one point but had forgotten, or something completely new, which I may or may never actually use.

The Daily Drop is a record of these pieces of knowledge - writing about and summarizing them helps re-enforce the information for myself, as well as potentially helps others learn something new as well.
c# .net swagger xml documentation