IExecuteWorkspaceCommandHandlerMetadata.cs 478 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

namespace Microsoft.CodeAnalysis.LanguageServer.Handler.Commands
{
    internal interface IExecuteWorkspaceCommandHandlerMetadata
    {
        /// <summary>
        /// Defines the 'workspace/executeCommand' command name that should be handled.
        /// </summary>
        string CommandName { get; }
    }
}