16 lines
506 B
C#
16 lines
506 B
C#
// 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 Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace InlineConstraintSample.Web.Controllers
|
|
{
|
|
public class Isbn10Controller : Controller
|
|
{
|
|
[Route("book/[action]/{isbnNumber:IsbnDigitScheme10(true)}")]
|
|
public string Index(string isbnNumber)
|
|
{
|
|
return "10 Digit ISBN Number " + isbnNumber;
|
|
}
|
|
}
|
|
} |