Renaming the hosting error method

This commit is contained in:
benrr101
2016-08-16 12:35:39 -07:00
parent 981c144bfe
commit 71d852ba07

View File

@@ -13,7 +13,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Hosting.Contracts
public class HostingErrorParams public class HostingErrorParams
{ {
/// <summary> /// <summary>
/// /// The message of the error
/// </summary> /// </summary>
public string Message { get; set; } public string Message { get; set; }
} }
@@ -22,7 +22,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Hosting.Contracts
{ {
public static readonly public static readonly
EventType<HostingErrorParams> Type = EventType<HostingErrorParams> Type =
EventType<HostingErrorParams>.Create("hostingError"); EventType<HostingErrorParams>.Create("hosting/error");
} }
} }