a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
31 lines
655 B
C#
31 lines
655 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System.Web.Http.Description;
|
|
namespace System.Web.Http.ApiExplorer
|
|
{
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
public class HiddenController : ApiController
|
|
{
|
|
public string Get(int id)
|
|
{
|
|
return "visible action";
|
|
}
|
|
|
|
[HttpPost]
|
|
public void AddData()
|
|
{
|
|
}
|
|
|
|
public int Get()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
[NonAction]
|
|
public string GetHiddenAction()
|
|
{
|
|
return "Hidden action";
|
|
}
|
|
}
|
|
}
|