diff --git a/src/Umbraco.Web/BaseRest/BaseRestHandler.cs b/src/Umbraco.Web/BaseRest/BaseRestHandler.cs index 55349a788b..f57b75e089 100644 --- a/src/Umbraco.Web/BaseRest/BaseRestHandler.cs +++ b/src/Umbraco.Web/BaseRest/BaseRestHandler.cs @@ -7,7 +7,7 @@ using Umbraco.Core.Configuration.BaseRest; namespace Umbraco.Web.BaseRest { - [Obsolete("Umbraco /base is obsoleted, use WebApi instead for all REST based logic")] + [Obsolete("Umbraco /base is obsoleted, use WebApi (UmbracoApiController) instead for all REST based logic")] internal class BaseRestHandler : IHttpHandler, IRequiresSessionState { static readonly string BaseUrl; diff --git a/src/Umbraco.Web/BaseRest/MemberRest.cs b/src/Umbraco.Web/BaseRest/MemberRest.cs index cdbff48543..eca49d0fd2 100644 --- a/src/Umbraco.Web/BaseRest/MemberRest.cs +++ b/src/Umbraco.Web/BaseRest/MemberRest.cs @@ -12,7 +12,7 @@ using umbraco.cms.businesslogic.property; namespace Umbraco.Web.BaseRest { - [Obsolete("Umbraco /base is obsoleted, use WebApi instead for all REST based logic")] + [Obsolete("Umbraco /base is obsoleted, use WebApi (UmbracoApiController) instead for all REST based logic")] public static class MemberRest { public static int GetCurrentMemberId() diff --git a/src/Umbraco.Web/BaseRest/RestExtensionAttribute.cs b/src/Umbraco.Web/BaseRest/RestExtensionAttribute.cs index ee6c37f9cb..821fc40129 100644 --- a/src/Umbraco.Web/BaseRest/RestExtensionAttribute.cs +++ b/src/Umbraco.Web/BaseRest/RestExtensionAttribute.cs @@ -5,7 +5,7 @@ using System.Text; namespace Umbraco.Web.BaseRest { - [Obsolete("Umbraco /base is obsoleted, use WebApi instead for all REST based logic")] + [Obsolete("Umbraco /base is obsoleted, use WebApi (UmbracoApiController) instead for all REST based logic")] [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] public sealed class RestExtensionAttribute : Attribute { diff --git a/src/Umbraco.Web/BaseRest/RestExtensionMethodAttribute.cs b/src/Umbraco.Web/BaseRest/RestExtensionMethodAttribute.cs index c286c47732..bd994439dd 100644 --- a/src/Umbraco.Web/BaseRest/RestExtensionMethodAttribute.cs +++ b/src/Umbraco.Web/BaseRest/RestExtensionMethodAttribute.cs @@ -5,7 +5,7 @@ using System.Text; namespace Umbraco.Web.BaseRest { - [Obsolete("Umbraco /base is obsoleted, use WebApi instead for all REST based logic")] + [Obsolete("Umbraco /base is obsoleted, use WebApi (UmbracoApiController) instead for all REST based logic")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public sealed class RestExtensionMethodAttribute : Attribute { diff --git a/src/Umbraco.Web/BaseRest/RestExtensionMethodInfo.cs b/src/Umbraco.Web/BaseRest/RestExtensionMethodInfo.cs index 761bd8aaea..2ee974a0fe 100644 --- a/src/Umbraco.Web/BaseRest/RestExtensionMethodInfo.cs +++ b/src/Umbraco.Web/BaseRest/RestExtensionMethodInfo.cs @@ -14,7 +14,7 @@ using umbraco.cms.businesslogic.member; namespace Umbraco.Web.BaseRest { - [Obsolete("Umbraco /base is obsoleted, use WebApi instead for all REST based logic")] + [Obsolete("Umbraco /base is obsoleted, use WebApi (UmbracoApiController) instead for all REST based logic")] class RestExtensionMethodInfo { #region Utilities