mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-22 17:24:07 -05:00
Add initial doxfx content
This commit is contained in:
@@ -0,0 +1,734 @@
|
||||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
commentId: T:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
id: BufferPosition
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
children:
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.#ctor(System.Int32,System.Int32)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.None
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_GreaterThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_LessThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: BufferPosition
|
||||
nameWithType: BufferPosition
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
type: Class
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: BufferPosition
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 14
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nProvides details about a position in a file buffer. All\npositions are expressed in 1-based positions (i.e. the\nfirst line and column in the file is position 1,1).\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public class BufferPosition
|
||||
content.vb: Public Class BufferPosition
|
||||
inheritance:
|
||||
- System.Object
|
||||
derivedClasses:
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
inheritedMembers:
|
||||
- System.Object.Equals(System.Object,System.Object)
|
||||
- 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.BufferPosition.None
|
||||
commentId: F:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.None
|
||||
id: None
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: None
|
||||
nameWithType: BufferPosition.None
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.None
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: None
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 22
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nProvides an instance that represents a position that has not been set.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static readonly BufferPosition None
|
||||
content.vb: Public Shared ReadOnly None As BufferPosition
|
||||
return:
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- static
|
||||
- readonly
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- Shared
|
||||
- ReadOnly
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
id: Line
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Line
|
||||
nameWithType: BufferPosition.Line
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: Line
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 27
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nGets the line number of the position in the buffer.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public int Line { get; }
|
||||
content.vb: Public ReadOnly Property Line As Integer
|
||||
parameters: []
|
||||
return:
|
||||
type: System.Int32
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- get
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- ReadOnly
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
id: Column
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Column
|
||||
nameWithType: BufferPosition.Column
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: Column
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 32
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nGets the column number of the position in the buffer.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public int Column { get; }
|
||||
content.vb: Public ReadOnly Property Column As Integer
|
||||
parameters: []
|
||||
return:
|
||||
type: System.Int32
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- get
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- ReadOnly
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.#ctor(System.Int32,System.Int32)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.#ctor(System.Int32,System.Int32)
|
||||
id: '#ctor(System.Int32,System.Int32)'
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: BufferPosition(Int32, Int32)
|
||||
nameWithType: BufferPosition.BufferPosition(Int32, Int32)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.BufferPosition(System.Int32, System.Int32)
|
||||
type: Constructor
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: .ctor
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 43
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCreates a new instance of the BufferPosition class.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public BufferPosition(int line, int column)
|
||||
content.vb: Public Sub New(line As Integer, column As Integer)
|
||||
parameters:
|
||||
- id: line
|
||||
type: System.Int32
|
||||
description: The line number of the position.
|
||||
- id: column
|
||||
type: System.Int32
|
||||
description: The column number of the position.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.#ctor*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
id: Equals(System.Object)
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Equals(Object)
|
||||
nameWithType: BufferPosition.Equals(Object)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: Equals
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 58
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCompares two instances of the BufferPosition class.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override bool Equals(object obj)
|
||||
content.vb: Public Overrides Function Equals(obj As Object) As Boolean
|
||||
parameters:
|
||||
- id: obj
|
||||
type: System.Object
|
||||
description: The object to which this instance will be compared.
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: True if the positions are equal, false otherwise.
|
||||
overridden: System.Object.Equals(System.Object)
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- override
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- Overrides
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
id: GetHashCode
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetHashCode()
|
||||
nameWithType: BufferPosition.GetHashCode()
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: GetHashCode
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 76
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCalculates a unique hash code that represents this instance.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override int GetHashCode()
|
||||
content.vb: Public Overrides Function GetHashCode As Integer
|
||||
return:
|
||||
type: System.Int32
|
||||
description: A hash code representing this instance.
|
||||
overridden: System.Object.GetHashCode
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- override
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- Overrides
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_GreaterThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_GreaterThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
id: op_GreaterThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GreaterThan(BufferPosition, BufferPosition)
|
||||
nameWithType: BufferPosition.GreaterThan(BufferPosition, BufferPosition)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GreaterThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition, Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
type: Operator
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: op_GreaterThan
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 87
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCompares two positions to check if one is greater than the other.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static bool operator>(BufferPosition positionOne, BufferPosition positionTwo)
|
||||
content.vb: Public Shared Operator>(positionOne As BufferPosition, positionTwo As BufferPosition) As Boolean
|
||||
parameters:
|
||||
- id: positionOne
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
description: The first position to compare.
|
||||
- id: positionTwo
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
description: The second position to compare.
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: True if positionOne is greater than positionTwo.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_GreaterThan*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- static
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- Shared
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_LessThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_LessThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
id: op_LessThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: LessThan(BufferPosition, BufferPosition)
|
||||
nameWithType: BufferPosition.LessThan(BufferPosition, BufferPosition)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.LessThan(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition, Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
type: Operator
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: op_LessThan
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/BufferPosition.cs
|
||||
startLine: 102
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCompares two positions to check if one is less than the other.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static bool operator <(BufferPosition positionOne, BufferPosition positionTwo)
|
||||
content.vb: Public Shared Operator <(positionOne As BufferPosition, positionTwo As BufferPosition) As Boolean
|
||||
parameters:
|
||||
- id: positionOne
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
description: The first position to compare.
|
||||
- id: positionTwo
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
description: The second position to compare.
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: True if positionOne is less than positionTwo.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_LessThan*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
- static
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- Shared
|
||||
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,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.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.BufferPosition
|
||||
commentId: T:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
isExternal: false
|
||||
name: BufferPosition
|
||||
nameWithType: BufferPosition
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
isExternal: false
|
||||
name: Line
|
||||
nameWithType: BufferPosition.Line
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
- uid: System.Int32
|
||||
commentId: T:System.Int32
|
||||
parent: System
|
||||
isExternal: true
|
||||
name: Int32
|
||||
nameWithType: Int32
|
||||
fullName: System.Int32
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
isExternal: false
|
||||
name: Column
|
||||
nameWithType: BufferPosition.Column
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.#ctor*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.#ctor
|
||||
isExternal: false
|
||||
name: BufferPosition
|
||||
nameWithType: BufferPosition.BufferPosition
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.BufferPosition
|
||||
- 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: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals
|
||||
isExternal: false
|
||||
name: Equals
|
||||
nameWithType: BufferPosition.Equals
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
parent: System
|
||||
isExternal: true
|
||||
name: Boolean
|
||||
nameWithType: Boolean
|
||||
fullName: System.Boolean
|
||||
- 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: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
isExternal: false
|
||||
name: GetHashCode
|
||||
nameWithType: BufferPosition.GetHashCode
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_GreaterThan*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_GreaterThan
|
||||
isExternal: false
|
||||
name: GreaterThan
|
||||
nameWithType: BufferPosition.GreaterThan
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GreaterThan
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_LessThan*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.op_LessThan
|
||||
isExternal: false
|
||||
name: LessThan
|
||||
nameWithType: BufferPosition.LessThan
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.LessThan
|
||||
Reference in New Issue
Block a user