CodeActionKind 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
다양한 종류의 코드 동작을 나타내는 열거형입니다.
자세한 내용은 언어 서버 프로토콜 사양 을 참조하세요.
public enum class CodeActionKind
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
[System.Runtime.Serialization.DataContract]
public enum CodeActionKind
[<Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))>]
[<System.Runtime.Serialization.DataContract>]
type CodeActionKind =
Public Enum CodeActionKind
- 상속
-
CodeActionKind
- 특성
-
Newtonsoft.Json.JsonConverterAttribute DataContractAttribute
필드
Empty | 7 | 코드 동작이 비어 있습니다. |
QuickFix | 0 | 코드 작업은 빠른 수정입니다. |
Refactor | 1 | 코드 작업은 리팩터링입니다. |
RefactorExtract | 2 | 코드 동작은 메서드, 함수, 변수 등을 추출하기 위한 리팩터링입니다. |
RefactorInline | 3 | 코드 동작은 인라인 메서드, 상수 등을 위한 리팩터링입니다. |
RefactorRewrite | 4 | 코드 동작은 메서드를 정적으로 만드는 것과 같은 다시 쓰기 작업을 위한 리팩터링입니다. |
Source | 5 | 코드 동작은 전체 파일에 적용됩니다. |
SourceOrganizeImports | 6 | 코드 작업은 가져오기를 구성하기 위한 것입니다. |