Fix breaks to xml docs

This commit is contained in:
Ryan Nowak 2015-10-20 23:31:02 -07:00
parent 3576939457
commit 1474ed8fe8
1 changed files with 3 additions and 3 deletions

View File

@ -11,13 +11,13 @@ namespace Microsoft.AspNet.Mvc.ApiExplorer
/// Provides metadata information about the response format to an <c>IApiDescriptionProvider</c>. /// Provides metadata information about the response format to an <c>IApiDescriptionProvider</c>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// An <see cref="IOutputFormatter"/> should implement this interface to expose metadata information /// An <see cref="Formatters.IOutputFormatter"/> should implement this interface to expose metadata information
/// to an <c>IApiDescriptionProvider</c>. /// to an <c>IApiDescriptionProvider</c>.
/// </remarks> /// </remarks>
public interface IApiResponseFormatMetadataProvider public interface IApiResponseFormatMetadataProvider
{ {
/// <summary> /// <summary>
/// Gets a filtered list of content types which are supported by the <see cref="IOutputFormatter"/> /// Gets a filtered list of content types which are supported by the <see cref="Formatters.IOutputFormatter"/>
/// for the <paramref name="declaredType"/> and <paramref name="contentType"/>. /// for the <paramref name="declaredType"/> and <paramref name="contentType"/>.
/// </summary> /// </summary>
/// <param name="contentType"> /// <param name="contentType">
@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc.ApiExplorer
/// <param name="objectType"> /// <param name="objectType">
/// The <see cref="Type"/> for which the supported content types are desired. /// The <see cref="Type"/> for which the supported content types are desired.
/// </param> /// </param>
/// <returns>Content types which are supported by the <see cref="IOutputFormatter"/>.</returns> /// <returns>Content types which are supported by the <see cref="Formatters.IOutputFormatter"/>.</returns>
IReadOnlyList<MediaTypeHeaderValue> GetSupportedContentTypes( IReadOnlyList<MediaTypeHeaderValue> GetSupportedContentTypes(
MediaTypeHeaderValue contentType, MediaTypeHeaderValue contentType,
Type objectType); Type objectType);