Fixing some issues, added documents

This commit is contained in:
Leila Lali
2016-08-22 15:32:41 -07:00
parent 3f1d3cb9db
commit ebfc5c57a5
2 changed files with 12 additions and 5 deletions

View File

@@ -7,10 +7,14 @@ using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
namespace Microsoft.SqlTools.ServiceLayer.Hosting.Contracts
{
/// <summary>
/// Defines a message that is sent from the client to request
/// the version of the server.
/// </summary>
public class VersionRequest
{
public static readonly
RequestType<string, string> Type =
RequestType<string, string>.Create("version");
RequestType<object, string> Type =
RequestType<object, string>.Create("version");
}
}