Seal ActionResultOfT (#7507)

This commit is contained in:
Jass Bagga 2018-03-19 12:52:31 -07:00 committed by GitHub
parent 908e7a863b
commit ed18a8f975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace Microsoft.AspNetCore.Mvc
/// A type that wraps either an <typeparamref name="TValue"/> instance or an <see cref="ActionResult"/>. /// A type that wraps either an <typeparamref name="TValue"/> instance or an <see cref="ActionResult"/>.
/// </summary> /// </summary>
/// <typeparam name="TValue">The type of the result.</typeparam> /// <typeparam name="TValue">The type of the result.</typeparam>
public class ActionResult<TValue> : IConvertToActionResult public sealed class ActionResult<TValue> : IConvertToActionResult
{ {
/// <summary> /// <summary>
/// Initializes a new instance of <see cref="ActionResult{TValue}"/> using the specified <paramref name="value"/>. /// Initializes a new instance of <see cref="ActionResult{TValue}"/> using the specified <paramref name="value"/>.