mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-22 09:35:38 -05:00
Add initial doxfx content
This commit is contained in:
@@ -0,0 +1,618 @@
|
||||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
commentId: T:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
id: FilePosition
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
children:
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,System.Int32,System.Int32)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset(System.Int32,System.Int32)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: FilePosition
|
||||
nameWithType: FilePosition
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
type: Class
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: FilePosition
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
startLine: 11
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nProvides details and operations for a buffer position in a\nspecific file.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: 'public class FilePosition : BufferPosition'
|
||||
content.vb: >-
|
||||
Public Class FilePosition
|
||||
Inherits BufferPosition
|
||||
inheritance:
|
||||
- System.Object
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
inheritedMembers:
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.None
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
- Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
- 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.FilePosition.#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,System.Int32,System.Int32)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,System.Int32,System.Int32)
|
||||
id: '#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,System.Int32,System.Int32)'
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: FilePosition(ScriptFile, Int32, Int32)
|
||||
nameWithType: FilePosition.FilePosition(ScriptFile, Int32, Int32)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.FilePosition(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile, System.Int32, System.Int32)
|
||||
type: Constructor
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: .ctor
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
startLine: 28
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCreates a new FilePosition instance for the 1-based line and\ncolumn numbers in the specified file.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public FilePosition(ScriptFile scriptFile, int line, int column)
|
||||
content.vb: Public Sub New(scriptFile As ScriptFile, line As Integer, column As Integer)
|
||||
parameters:
|
||||
- id: scriptFile
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile
|
||||
description: The ScriptFile in which the position is located.
|
||||
- id: line
|
||||
type: System.Int32
|
||||
description: The 1-based line number in the file.
|
||||
- id: column
|
||||
type: System.Int32
|
||||
description: The 1-based column number in the file.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
id: '#ctor(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile,Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)'
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: FilePosition(ScriptFile, BufferPosition)
|
||||
nameWithType: FilePosition.FilePosition(ScriptFile, BufferPosition)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.FilePosition(Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile, Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition)
|
||||
type: Constructor
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: .ctor
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
startLine: 43
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nCreates a new FilePosition instance for the specified file by\ncopying the specified BufferPosition\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public FilePosition(ScriptFile scriptFile, BufferPosition copiedPosition)
|
||||
content.vb: Public Sub New(scriptFile As ScriptFile, copiedPosition As BufferPosition)
|
||||
parameters:
|
||||
- id: scriptFile
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile
|
||||
description: The ScriptFile in which the position is located.
|
||||
- id: copiedPosition
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
description: The original BufferPosition from which the line and column will be copied.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset(System.Int32,System.Int32)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset(System.Int32,System.Int32)
|
||||
id: AddOffset(System.Int32,System.Int32)
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: AddOffset(Int32, Int32)
|
||||
nameWithType: FilePosition.AddOffset(Int32, Int32)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset(System.Int32, System.Int32)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: AddOffset
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
startLine: 63
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nGets a FilePosition relative to this position by adding the\nprovided line and column offset relative to the contents of\nthe current file.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public FilePosition AddOffset(int lineOffset, int columnOffset)
|
||||
content.vb: Public Function AddOffset(lineOffset As Integer, columnOffset As Integer) As FilePosition
|
||||
parameters:
|
||||
- id: lineOffset
|
||||
type: System.Int32
|
||||
description: The line offset to add to this position.
|
||||
- id: columnOffset
|
||||
type: System.Int32
|
||||
description: The column offset to add to this position.
|
||||
return:
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
description: A new FilePosition instance for the calculated position.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart
|
||||
id: GetLineStart
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetLineStart()
|
||||
nameWithType: FilePosition.GetLineStart()
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: GetLineStart
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
startLine: 77
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nGets a FilePosition for the line and column position\nof the beginning of the current line after any initial\nwhitespace for indentation.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public FilePosition GetLineStart()
|
||||
content.vb: Public Function GetLineStart As FilePosition
|
||||
return:
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
description: A new FilePosition instance for the calculated position.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
modifiers.vb:
|
||||
- Public
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd
|
||||
id: GetLineEnd
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetLineEnd()
|
||||
nameWithType: FilePosition.GetLineEnd()
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
branch: master
|
||||
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
|
||||
id: GetLineEnd
|
||||
path: ../src/Microsoft.SqlTools.ServiceLayer/Workspace/Contracts/FilePosition.cs
|
||||
startLine: 99
|
||||
assemblies:
|
||||
- Microsoft.SqlTools.ServiceLayer
|
||||
namespace: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
summary: "\nGets a FilePosition for the line and column position\nof the end of the current line.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public FilePosition GetLineEnd()
|
||||
content.vb: Public Function GetLineEnd As FilePosition
|
||||
return:
|
||||
type: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
description: A new FilePosition instance for the calculated position.
|
||||
overload: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd*
|
||||
modifiers.csharp:
|
||||
- public
|
||||
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: 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.None
|
||||
commentId: F:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.None
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
isExternal: false
|
||||
name: None
|
||||
nameWithType: BufferPosition.None
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.None
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
isExternal: false
|
||||
name: Line
|
||||
nameWithType: BufferPosition.Line
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Line
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
commentId: P:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
isExternal: false
|
||||
name: Column
|
||||
nameWithType: BufferPosition.Column
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Column
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
isExternal: true
|
||||
name: Equals(Object)
|
||||
nameWithType: BufferPosition.Equals(Object)
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
spec.csharp:
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
name: Equals
|
||||
nameWithType: BufferPosition.Equals
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals
|
||||
- name: (
|
||||
nameWithType: (
|
||||
fullName: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
nameWithType: Object
|
||||
fullName: System.Object
|
||||
isExternal: true
|
||||
- name: )
|
||||
nameWithType: )
|
||||
fullName: )
|
||||
spec.vb:
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals(System.Object)
|
||||
name: Equals
|
||||
nameWithType: BufferPosition.Equals
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.Equals
|
||||
- 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.GetHashCode
|
||||
commentId: M:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition
|
||||
isExternal: false
|
||||
name: GetHashCode()
|
||||
nameWithType: BufferPosition.GetHashCode()
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode()
|
||||
spec.csharp:
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
name: GetHashCode
|
||||
nameWithType: BufferPosition.GetHashCode
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
- name: (
|
||||
nameWithType: (
|
||||
fullName: (
|
||||
- name: )
|
||||
nameWithType: )
|
||||
fullName: )
|
||||
spec.vb:
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
name: GetHashCode
|
||||
nameWithType: BufferPosition.GetHashCode
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.BufferPosition.GetHashCode
|
||||
- name: (
|
||||
nameWithType: (
|
||||
fullName: (
|
||||
- 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.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.FilePosition.#ctor*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.#ctor
|
||||
isExternal: false
|
||||
name: FilePosition
|
||||
nameWithType: FilePosition.FilePosition
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.FilePosition
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile
|
||||
commentId: T:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
isExternal: false
|
||||
name: ScriptFile
|
||||
nameWithType: ScriptFile
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.ScriptFile
|
||||
- uid: System.Int32
|
||||
commentId: T:System.Int32
|
||||
parent: System
|
||||
isExternal: true
|
||||
name: Int32
|
||||
nameWithType: Int32
|
||||
fullName: System.Int32
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset
|
||||
isExternal: false
|
||||
name: AddOffset
|
||||
nameWithType: FilePosition.AddOffset
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.AddOffset
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
commentId: T:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
parent: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
|
||||
isExternal: false
|
||||
name: FilePosition
|
||||
nameWithType: FilePosition
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart
|
||||
isExternal: false
|
||||
name: GetLineStart
|
||||
nameWithType: FilePosition.GetLineStart
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineStart
|
||||
- uid: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd*
|
||||
commentId: Overload:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd
|
||||
isExternal: false
|
||||
name: GetLineEnd
|
||||
nameWithType: FilePosition.GetLineEnd
|
||||
fullName: Microsoft.SqlTools.ServiceLayer.Workspace.Contracts.FilePosition.GetLineEnd
|
||||
Reference in New Issue
Block a user