mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-22 09:35:38 -05:00
608 lines
18 KiB
YAML
608 lines
18 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent
|
|
commentId: T:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent
|
|
id: TextDocumentChangeEvent
|
|
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
children:
|
|
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range
|
|
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength
|
|
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: TextDocumentChangeEvent
|
|
nameWithType: TextDocumentChangeEvent
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent
|
|
type: Class
|
|
source:
|
|
remote:
|
|
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
branch: master
|
|
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
|
id: TextDocumentChangeEvent
|
|
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
startLine: 126
|
|
assemblies:
|
|
- Microsoft.SqlTools.ServiceLayer
|
|
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
syntax:
|
|
content: public class TextDocumentChangeEvent
|
|
content.vb: Public Class TextDocumentChangeEvent
|
|
inheritance:
|
|
- System.Object
|
|
inheritedMembers:
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
modifiers.csharp:
|
|
- public
|
|
- class
|
|
modifiers.vb:
|
|
- Public
|
|
- Class
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range
|
|
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range
|
|
id: Range
|
|
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Range
|
|
nameWithType: TextDocumentChangeEvent.Range
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
branch: master
|
|
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
|
id: Range
|
|
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
startLine: 132
|
|
assemblies:
|
|
- Microsoft.SqlTools.ServiceLayer
|
|
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
summary: "\nGets or sets the Range where the document was changed. Will\nbe null if the server's TextDocumentSyncKind is Full.\n"
|
|
example: []
|
|
syntax:
|
|
content: public Range? Range { get; set; }
|
|
content.vb: Public Property Range As Range?
|
|
parameters: []
|
|
return:
|
|
type: System.Nullable{Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range}
|
|
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range*
|
|
modifiers.csharp:
|
|
- public
|
|
- get
|
|
- set
|
|
modifiers.vb:
|
|
- Public
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength
|
|
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength
|
|
id: RangeLength
|
|
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: RangeLength
|
|
nameWithType: TextDocumentChangeEvent.RangeLength
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
branch: master
|
|
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
|
id: RangeLength
|
|
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
startLine: 139
|
|
assemblies:
|
|
- Microsoft.SqlTools.ServiceLayer
|
|
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
summary: "\nGets or sets the length of the Range being replaced in the\ndocument. Will be null if the server's TextDocumentSyncKind is \nFull.\n"
|
|
example: []
|
|
syntax:
|
|
content: public int ? RangeLength { get; set; }
|
|
content.vb: Public Property RangeLength As Integer?
|
|
parameters: []
|
|
return:
|
|
type: System.Nullable{System.Int32}
|
|
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength*
|
|
modifiers.csharp:
|
|
- public
|
|
- get
|
|
- set
|
|
modifiers.vb:
|
|
- Public
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text
|
|
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text
|
|
id: Text
|
|
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Text
|
|
nameWithType: TextDocumentChangeEvent.Text
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
branch: master
|
|
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
|
id: Text
|
|
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/TextDocument.cs
|
|
startLine: 144
|
|
assemblies:
|
|
- Microsoft.SqlTools.ServiceLayer
|
|
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
summary: "\nGets or sets the new text of the document.\n"
|
|
example: []
|
|
syntax:
|
|
content: public string Text { get; set; }
|
|
content.vb: Public Property Text As String
|
|
parameters: []
|
|
return:
|
|
type: System.String
|
|
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text*
|
|
modifiers.csharp:
|
|
- public
|
|
- get
|
|
- set
|
|
modifiers.vb:
|
|
- Public
|
|
references:
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
commentId: N:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
isExternal: false
|
|
name: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
nameWithType: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
- uid: System.Object.Equals(System.Object)
|
|
commentId: M:System.Object.Equals(System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: Equals(Object)
|
|
nameWithType: Object.Equals(Object)
|
|
fullName: System.Object.Equals(System.Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: Equals(Object, Object)
|
|
nameWithType: Object.Equals(Object, Object)
|
|
fullName: System.Object.Equals(System.Object, System.Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.GetHashCode
|
|
commentId: M:System.Object.GetHashCode
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: GetHashCode()
|
|
nameWithType: Object.GetHashCode()
|
|
fullName: System.Object.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
nameWithType: Object.GetHashCode
|
|
fullName: System.Object.GetHashCode
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
nameWithType: Object.GetHashCode
|
|
fullName: System.Object.GetHashCode
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: GetType()
|
|
nameWithType: Object.GetType()
|
|
fullName: System.Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
nameWithType: Object.GetType
|
|
fullName: System.Object.GetType
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
nameWithType: Object.GetType
|
|
fullName: System.Object.GetType
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.MemberwiseClone
|
|
commentId: M:System.Object.MemberwiseClone
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: MemberwiseClone()
|
|
nameWithType: Object.MemberwiseClone()
|
|
fullName: System.Object.MemberwiseClone()
|
|
spec.csharp:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
nameWithType: Object.MemberwiseClone
|
|
fullName: System.Object.MemberwiseClone
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
nameWithType: Object.MemberwiseClone
|
|
fullName: System.Object.MemberwiseClone
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: ReferenceEquals(Object, Object)
|
|
nameWithType: Object.ReferenceEquals(Object, Object)
|
|
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
nameWithType: Object.ReferenceEquals
|
|
fullName: System.Object.ReferenceEquals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
nameWithType: Object.ReferenceEquals
|
|
fullName: System.Object.ReferenceEquals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.ToString
|
|
commentId: M:System.Object.ToString
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: ToString()
|
|
nameWithType: Object.ToString()
|
|
fullName: System.Object.ToString()
|
|
spec.csharp:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
nameWithType: Object.ToString
|
|
fullName: System.Object.ToString
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
nameWithType: Object.ToString
|
|
fullName: System.Object.ToString
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: false
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range*
|
|
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range
|
|
isExternal: false
|
|
name: Range
|
|
nameWithType: TextDocumentChangeEvent.Range
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Range
|
|
- uid: System.Nullable{Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range}
|
|
commentId: T:System.Nullable{Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range}
|
|
parent: System
|
|
definition: System.Nullable`1
|
|
name: Nullable<Range>
|
|
nameWithType: Nullable<Range>
|
|
fullName: System.Nullable<Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range>
|
|
nameWithType.vb: Nullable(Of Range)
|
|
fullname.vb: System.Nullable(Of Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range)
|
|
name.vb: Nullable(Of Range)
|
|
spec.csharp:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
nameWithType: Nullable
|
|
fullName: System.Nullable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range
|
|
name: Range
|
|
nameWithType: Range
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
nameWithType: Nullable
|
|
fullName: System.Nullable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range
|
|
name: Range
|
|
nameWithType: Range
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.Range
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Nullable`1
|
|
commentId: T:System.Nullable`1
|
|
isExternal: true
|
|
name: Nullable<T>
|
|
nameWithType: Nullable<T>
|
|
fullName: System.Nullable<T>
|
|
nameWithType.vb: Nullable(Of T)
|
|
fullname.vb: System.Nullable(Of T)
|
|
name.vb: Nullable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
nameWithType: Nullable
|
|
fullName: System.Nullable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
nameWithType: Nullable
|
|
fullName: System.Nullable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength*
|
|
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength
|
|
isExternal: false
|
|
name: RangeLength
|
|
nameWithType: TextDocumentChangeEvent.RangeLength
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.RangeLength
|
|
- uid: System.Nullable{System.Int32}
|
|
commentId: T:System.Nullable{System.Int32}
|
|
parent: System
|
|
definition: System.Nullable`1
|
|
name: Nullable<Int32>
|
|
nameWithType: Nullable<Int32>
|
|
fullName: System.Nullable<System.Int32>
|
|
nameWithType.vb: Nullable(Of Int32)
|
|
fullname.vb: System.Nullable(Of System.Int32)
|
|
name.vb: Nullable(Of Int32)
|
|
spec.csharp:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
nameWithType: Nullable
|
|
fullName: System.Nullable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- uid: System.Int32
|
|
name: Int32
|
|
nameWithType: Int32
|
|
fullName: System.Int32
|
|
isExternal: true
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
spec.vb:
|
|
- uid: System.Nullable`1
|
|
name: Nullable
|
|
nameWithType: Nullable
|
|
fullName: System.Nullable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- uid: System.Int32
|
|
name: Int32
|
|
nameWithType: Int32
|
|
fullName: System.Int32
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text*
|
|
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text
|
|
isExternal: false
|
|
name: Text
|
|
nameWithType: TextDocumentChangeEvent.Text
|
|
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.TextDocumentChangeEvent.Text
|
|
- uid: System.String
|
|
commentId: T:System.String
|
|
parent: System
|
|
isExternal: true
|
|
name: String
|
|
nameWithType: String
|
|
fullName: System.String
|