28 lines
754 B
C#
28 lines
754 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.AspNet.Mvc;
|
|
|
|
namespace ModelBindingWebSite.Controllers
|
|
{
|
|
[Route("Validation/[Action]")]
|
|
public class ValidationController : Controller
|
|
{
|
|
public object AvoidRecursive(SelfishPerson selfishPerson)
|
|
{
|
|
return ModelState.IsValid;
|
|
}
|
|
|
|
public object DoNotValidateParameter([FromServices] ITestService service)
|
|
{
|
|
return ModelState.IsValid;
|
|
}
|
|
}
|
|
|
|
public class SelfishPerson
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public SelfishPerson MySelf { get { return this; } }
|
|
}
|
|
} |