Removing types marked as obsolete

This commit is contained in:
Ryan Nowak 2014-10-31 18:54:18 -07:00
parent b8645eeb31
commit 30884d8d26
4 changed files with 0 additions and 40 deletions

View File

@ -1,8 +0,0 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace System.Web.Http
{
[Obsolete("This interface is obsolete. Use Microsoft.AspNet.Mvc.IActionResult as a replacement.", error: true)]
public interface IHttpActionResult { }
}

View File

@ -1,8 +0,0 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace System.Web.Http
{
[Obsolete("This class is obsolete. Use Microsoft.AspNet.Mvc.JsonResult as a replacement.", error: true)]
public class JsonResult<T> { }
}

View File

@ -1,12 +0,0 @@
// Copyright (c) Microsoft Open Technologies, Inc. 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 System.Web.Http
{
[Obsolete("This class is obsolete. Use Microsoft.AspNet.Mvc.HttpNotFoundResult as a replacement.", error: true)]
public class NotFoundResult
{
}
}

View File

@ -1,12 +0,0 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace System.Web.Http
{
[Obsolete("This class is obsolete, use HttpStatusCodeResult as a replacement.", error: true)]
public class StatusCodeResult
{
}
}