mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-12 19:18:33 -05:00
Missing one spelling Fix (#778)
This commit is contained in:
@@ -133,7 +133,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Cms
|
||||
}
|
||||
}
|
||||
|
||||
public async Task HandleListRegisteredServersRequest(ListRegisteredServerParams listServerParams, RequestContext<ListRegisteredServersResult> requestContext)
|
||||
public async Task HandleListRegisteredServersRequest(ListRegisteredServersParams listServerParams, RequestContext<ListRegisteredServersResult> requestContext)
|
||||
{
|
||||
Logger.Write(TraceEventType.Verbose, "HandleListRegisteredServersRequest");
|
||||
try
|
||||
|
||||
@@ -73,9 +73,9 @@ namespace Microsoft.SqlTools.ServiceLayer.Cms.Contracts
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Paramaters to list a Registered Server from CMS tree
|
||||
/// Paramaters to list a Registered Servers from CMS tree
|
||||
/// </summary>
|
||||
public class ListRegisteredServerParams
|
||||
public class ListRegisteredServersParams
|
||||
{
|
||||
public string ParentOwnerUri { get; set; }
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@ namespace Microsoft.SqlTools.ServiceLayer.Cms.Contracts
|
||||
|
||||
public class ListRegisteredServersRequest
|
||||
{
|
||||
public static readonly RequestType<ListRegisteredServerParams, ListRegisteredServersResult> Type =
|
||||
RequestType<ListRegisteredServerParams, ListRegisteredServersResult>.Create("cms/listRegisteredServers");
|
||||
public static readonly RequestType<ListRegisteredServersParams, ListRegisteredServersResult> Type =
|
||||
RequestType<ListRegisteredServersParams, ListRegisteredServersResult>.Create("cms/listRegisteredServers");
|
||||
}
|
||||
|
||||
public class AddRegisteredServerRequest
|
||||
|
||||
Reference in New Issue
Block a user