forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIDocumentationProvider.cs
More file actions
41 lines (36 loc) · 1.77 KB
/
IDocumentationProvider.cs
File metadata and controls
41 lines (36 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Web.Http.Controllers;
namespace System.Web.Http.Description
{
/// <summary>
/// Defines the provider responsible for documenting the service.
/// </summary>
public interface IDocumentationProvider
{
/// <summary>
/// Gets the documentation based on <see cref="HttpControllerDescriptor"/>.
/// </summary>
/// <param name="controllerDescriptor">The controller descriptor.</param>
/// <returns>Documentation for the controller.</returns>
string GetDocumentation(HttpControllerDescriptor controllerDescriptor);
/// <summary>
/// Gets the documentation based on <see cref="HttpActionDescriptor"/>.
/// </summary>
/// <param name="actionDescriptor">The action descriptor.</param>
/// <returns>Documentation for the action.</returns>
string GetDocumentation(HttpActionDescriptor actionDescriptor);
/// <summary>
/// Gets the documentation based on <see cref="HttpParameterDescriptor"/>.
/// </summary>
/// <param name="parameterDescriptor">The parameter descriptor.</param>
/// <returns>Documentation for the parameter.</returns>
string GetDocumentation(HttpParameterDescriptor parameterDescriptor);
/// <summary>
/// Gets the response documentation based on <see cref="HttpActionDescriptor"/>.
/// </summary>
/// <param name="actionDescriptor">The action descriptor.</param>
/// <returns>Documentation for the action response.</returns>
string GetResponseDocumentation(HttpActionDescriptor actionDescriptor);
}
}