Files
sqltoolsservice/docs/metadata/api/Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.yml
2016-12-15 16:37:50 -08:00

2453 lines
103 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
commentId: T:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
id: ServiceBufferFileStreamWriter
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
children:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.#ctor(System.IO.Stream,System.Int32,System.Int32)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose(System.Boolean)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean(System.Boolean)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte(System.Byte)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes(System.Byte[])
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar(System.Char)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal(System.Decimal)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble(System.Double)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid(System.Guid)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16(System.Int16)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32(System.Int32)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64(System.Int64)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle(System.Single)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString(System.String)
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan(System.TimeSpan)
langs:
- csharp
- vb
name: ServiceBufferFileStreamWriter
nameWithType: ServiceBufferFileStreamWriter
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
type: Class
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: ServiceBufferFileStreamWriter
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 19
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWriter for service buffer formatted file streams\n"
example: []
syntax:
content: 'public class ServiceBufferFileStreamWriter : IFileStreamWriter, IDisposable'
content.vb: >-
Public Class ServiceBufferFileStreamWriter
Implements IFileStreamWriter, IDisposable
inheritance:
- System.Object
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
- System.IDisposable
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.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.#ctor(System.IO.Stream,System.Int32,System.Int32)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.#ctor(System.IO.Stream,System.Int32,System.Int32)
id: '#ctor(System.IO.Stream,System.Int32,System.Int32)'
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: ServiceBufferFileStreamWriter(Stream, Int32, Int32)
nameWithType: ServiceBufferFileStreamWriter.ServiceBufferFileStreamWriter(Stream, Int32, Int32)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.ServiceBufferFileStreamWriter(System.IO.Stream, System.Int32, System.Int32)
type: Constructor
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: .ctor
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 50
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nConstructs a new writer\n"
example: []
syntax:
content: public ServiceBufferFileStreamWriter(Stream stream, int maxCharsToStore, int maxXmlCharsToStore)
content.vb: Public Sub New(stream As Stream, maxCharsToStore As Integer, maxXmlCharsToStore As Integer)
parameters:
- id: stream
type: System.IO.Stream
description: The file wrapper to use as the underlying file stream
- id: maxCharsToStore
type: System.Int32
description: Maximum number of characters to store for long text fields
- id: maxXmlCharsToStore
type: System.Int32
description: Maximum number of characters to store for XML fields
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
id: WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteRow(StorageDataReader)
nameWithType: ServiceBufferFileStreamWriter.WriteRow(StorageDataReader)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteRow
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 158
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites an entire row to the file stream\n"
example: []
syntax:
content: public int WriteRow(StorageDataReader reader)
content.vb: Public Function WriteRow(reader As StorageDataReader) As Integer
parameters:
- id: reader
type: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
description: A primed reader
return:
type: System.Int32
description: Number of bytes used to write the row
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull
id: WriteNull
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteNull()
nameWithType: ServiceBufferFileStreamWriter.WriteNull()
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull()
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteNull
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 254
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites null to the file as one 0x00 byte\n"
example: []
syntax:
content: public int WriteNull()
content.vb: Public Function WriteNull As Integer
return:
type: System.Int32
description: Number of bytes used to store the null
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16(System.Int16)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16(System.Int16)
id: WriteInt16(System.Int16)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteInt16(Int16)
nameWithType: ServiceBufferFileStreamWriter.WriteInt16(Int16)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16(System.Int16)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteInt16
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 264
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a short to the file\n"
example: []
syntax:
content: public int WriteInt16(short val)
content.vb: Public Function WriteInt16(val As Short) As Integer
parameters:
- id: val
type: System.Int16
return:
type: System.Int32
description: Number of bytes used to store the short
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16(System.Int16)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32(System.Int32)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32(System.Int32)
id: WriteInt32(System.Int32)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteInt32(Int32)
nameWithType: ServiceBufferFileStreamWriter.WriteInt32(Int32)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32(System.Int32)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteInt32
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 276
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a int to the file\n"
example: []
syntax:
content: public int WriteInt32(int val)
content.vb: Public Function WriteInt32(val As Integer) As Integer
parameters:
- id: val
type: System.Int32
return:
type: System.Int32
description: Number of bytes used to store the int
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32(System.Int32)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64(System.Int64)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64(System.Int64)
id: WriteInt64(System.Int64)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteInt64(Int64)
nameWithType: ServiceBufferFileStreamWriter.WriteInt64(Int64)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64(System.Int64)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteInt64
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 288
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a long to the file\n"
example: []
syntax:
content: public int WriteInt64(long val)
content.vb: Public Function WriteInt64(val As Long) As Integer
parameters:
- id: val
type: System.Int64
return:
type: System.Int32
description: Number of bytes used to store the long
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64(System.Int64)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar(System.Char)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar(System.Char)
id: WriteChar(System.Char)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteChar(Char)
nameWithType: ServiceBufferFileStreamWriter.WriteChar(Char)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar(System.Char)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteChar
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 300
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a char to the file\n"
example: []
syntax:
content: public int WriteChar(char val)
content.vb: Public Function WriteChar(val As Char) As Integer
parameters:
- id: val
type: System.Char
return:
type: System.Int32
description: Number of bytes used to store the char
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar(System.Char)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean(System.Boolean)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean(System.Boolean)
id: WriteBoolean(System.Boolean)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteBoolean(Boolean)
nameWithType: ServiceBufferFileStreamWriter.WriteBoolean(Boolean)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean(System.Boolean)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteBoolean
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 312
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a bool to the file\n"
example: []
syntax:
content: public int WriteBoolean(bool val)
content.vb: Public Function WriteBoolean(val As Boolean) As Integer
parameters:
- id: val
type: System.Boolean
return:
type: System.Int32
description: Number of bytes used to store the bool
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean(System.Boolean)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte(System.Byte)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte(System.Byte)
id: WriteByte(System.Byte)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteByte(Byte)
nameWithType: ServiceBufferFileStreamWriter.WriteByte(Byte)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte(System.Byte)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteByte
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 323
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a byte to the file\n"
example: []
syntax:
content: public int WriteByte(byte val)
content.vb: Public Function WriteByte(val As Byte) As Integer
parameters:
- id: val
type: System.Byte
return:
type: System.Int32
description: Number of bytes used to store the byte
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte(System.Byte)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle(System.Single)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle(System.Single)
id: WriteSingle(System.Single)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteSingle(Single)
nameWithType: ServiceBufferFileStreamWriter.WriteSingle(Single)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle(System.Single)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteSingle
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 334
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a float to the file\n"
example: []
syntax:
content: public int WriteSingle(float val)
content.vb: Public Function WriteSingle(val As Single) As Integer
parameters:
- id: val
type: System.Single
return:
type: System.Int32
description: Number of bytes used to store the float
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle(System.Single)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble(System.Double)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble(System.Double)
id: WriteDouble(System.Double)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteDouble(Double)
nameWithType: ServiceBufferFileStreamWriter.WriteDouble(Double)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble(System.Double)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteDouble
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 346
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a double to the file\n"
example: []
syntax:
content: public int WriteDouble(double val)
content.vb: Public Function WriteDouble(val As Double) As Integer
parameters:
- id: val
type: System.Double
return:
type: System.Int32
description: Number of bytes used to store the double
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble(System.Double)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
id: WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteSqlDecimal(SqlDecimal)
nameWithType: ServiceBufferFileStreamWriter.WriteSqlDecimal(SqlDecimal)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteSqlDecimal
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 358
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a SqlDecimal to the file\n"
example: []
syntax:
content: public int WriteSqlDecimal(SqlDecimal val)
content.vb: Public Function WriteSqlDecimal(val As SqlDecimal) As Integer
parameters:
- id: val
type: System.Data.SqlTypes.SqlDecimal
return:
type: System.Int32
description: Number of bytes used to store the SqlDecimal
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal(System.Decimal)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal(System.Decimal)
id: WriteDecimal(System.Decimal)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteDecimal(Decimal)
nameWithType: ServiceBufferFileStreamWriter.WriteDecimal(Decimal)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal(System.Decimal)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteDecimal
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 383
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a decimal to the file\n"
example: []
syntax:
content: public int WriteDecimal(decimal val)
content.vb: Public Function WriteDecimal(val As Decimal) As Integer
parameters:
- id: val
type: System.Decimal
return:
type: System.Int32
description: Number of bytes used to store the decimal
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal(System.Decimal)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
id: WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteDateTime(DbColumnWrapper, DateTime)
nameWithType: ServiceBufferFileStreamWriter.WriteDateTime(DbColumnWrapper, DateTime)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper, System.DateTime)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteDateTime
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 400
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a DateTime to the file as precision and ticks\n"
example: []
syntax:
content: public int WriteDateTime(DbColumnWrapper col, DateTime dtVal)
content.vb: Public Function WriteDateTime(col As DbColumnWrapper, dtVal As Date) As Integer
parameters:
- id: col
type: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
- id: dtVal
type: System.DateTime
return:
type: System.Int32
description: Number of bytes used to store the DateTime
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
id: WriteDateTimeOffset(System.DateTimeOffset)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteDateTimeOffset(DateTimeOffset)
nameWithType: ServiceBufferFileStreamWriter.WriteDateTimeOffset(DateTimeOffset)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteDateTimeOffset
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 422
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a DateTimeOffset to the file\n"
example: []
syntax:
content: public int WriteDateTimeOffset(DateTimeOffset dtoVal)
content.vb: Public Function WriteDateTimeOffset(dtoVal As DateTimeOffset) As Integer
parameters:
- id: dtoVal
type: System.DateTimeOffset
return:
type: System.Int32
description: Number of bytes used to store the DateTimeOffset
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan(System.TimeSpan)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan(System.TimeSpan)
id: WriteTimeSpan(System.TimeSpan)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteTimeSpan(TimeSpan)
nameWithType: ServiceBufferFileStreamWriter.WriteTimeSpan(TimeSpan)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan(System.TimeSpan)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteTimeSpan
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 439
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a TimeSpan to the file\n"
example: []
syntax:
content: public int WriteTimeSpan(TimeSpan timeSpan)
content.vb: Public Function WriteTimeSpan(timeSpan As TimeSpan) As Integer
parameters:
- id: timeSpan
type: System.TimeSpan
return:
type: System.Int32
description: Number of bytes used to store the TimeSpan
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan(System.TimeSpan)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString(System.String)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString(System.String)
id: WriteString(System.String)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteString(String)
nameWithType: ServiceBufferFileStreamWriter.WriteString(String)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString(System.String)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteString
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 448
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a string to the file\n"
example: []
syntax:
content: public int WriteString(string sVal)
content.vb: Public Function WriteString(sVal As String) As Integer
parameters:
- id: sVal
type: System.String
return:
type: System.Int32
description: Number of bytes used to store the string
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString(System.String)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes(System.Byte[])
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes(System.Byte[])
id: WriteBytes(System.Byte[])
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteBytes(Byte[])
nameWithType: ServiceBufferFileStreamWriter.WriteBytes(Byte[])
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes(System.Byte[])
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteBytes
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 482
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nWrites a byte[] to the file\n"
example: []
syntax:
content: public int WriteBytes(byte[] bytesVal)
content.vb: Public Function WriteBytes(bytesVal As Byte()) As Integer
parameters:
- id: bytesVal
type: System.Byte[]
return:
type: System.Int32
description: Number of bytes used to store the byte[]
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte[])
nameWithType.vb: ServiceBufferFileStreamWriter.WriteBytes(Byte())
modifiers.csharp:
- public
modifiers.vb:
- Public
fullName.vb: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes(System.Byte())
name.vb: WriteBytes(Byte())
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid(System.Guid)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid(System.Guid)
id: WriteGuid(System.Guid)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteGuid(Guid)
nameWithType: ServiceBufferFileStreamWriter.WriteGuid(Guid)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid(System.Guid)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteGuid
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 511
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nStores a GUID value to the file by treating it as a byte array\n"
example: []
syntax:
content: public int WriteGuid(Guid val)
content.vb: Public Function WriteGuid(val As Guid) As Integer
parameters:
- id: val
type: System.Guid
description: The GUID to write to the file
return:
type: System.Int32
description: Number of bytes written to the file
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid(System.Guid)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
id: WriteMoney(System.Data.SqlTypes.SqlMoney)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: WriteMoney(SqlMoney)
nameWithType: ServiceBufferFileStreamWriter.WriteMoney(SqlMoney)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: WriteMoney
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 522
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nStores a SqlMoney value to the file by treating it as a decimal\n"
example: []
syntax:
content: public int WriteMoney(SqlMoney val)
content.vb: Public Function WriteMoney(val As SqlMoney) As Integer
parameters:
- id: val
type: System.Data.SqlTypes.SqlMoney
description: The SqlMoney value to write to the file
return:
type: System.Int32
description: Number of bytes written to the file
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer
id: FlushBuffer
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: FlushBuffer()
nameWithType: ServiceBufferFileStreamWriter.FlushBuffer()
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer()
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: FlushBuffer
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 530
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
summary: "\nFlushes the internal buffer to the file stream\n"
example: []
syntax:
content: public void FlushBuffer()
content.vb: Public Sub FlushBuffer
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer*
implements:
- Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose
id: Dispose
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: Dispose()
nameWithType: ServiceBufferFileStreamWriter.Dispose()
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose()
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: Dispose
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 602
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
syntax:
content: public void Dispose()
content.vb: Public Sub Dispose
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose*
implements:
- System.IDisposable.Dispose
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose(System.Boolean)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose(System.Boolean)
id: Dispose(System.Boolean)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: Dispose(Boolean)
nameWithType: ServiceBufferFileStreamWriter.Dispose(Boolean)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose(System.Boolean)
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: Dispose
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 608
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
syntax:
content: protected virtual void Dispose(bool disposing)
content.vb: Protected Overridable Sub Dispose(disposing As Boolean)
parameters:
- id: disposing
type: System.Boolean
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose*
modifiers.csharp:
- protected
- virtual
modifiers.vb:
- Protected
- Overridable
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize
id: Finalize
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter
langs:
- csharp
- vb
name: Finalize()
nameWithType: ServiceBufferFileStreamWriter.Finalize()
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize()
type: Method
source:
remote:
path: src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
branch: master
repo: https://kburtram:67c6623fc506400046096af249535f684d9ea40b@github.com/Microsoft/sqltoolsservice.git
id: Finalize
path: ../src/Microsoft.SqlTools.ServiceLayer/QueryExecution/DataStorage/ServiceBufferFileStreamWriter.cs
startLine: 624
assemblies:
- Microsoft.SqlTools.ServiceLayer
namespace: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
syntax:
content: protected void Finalize()
content.vb: Protected Sub Finalize
overload: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize*
modifiers.csharp:
- protected
modifiers.vb:
- Protected
references:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
commentId: N:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
isExternal: false
name: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
nameWithType: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
commentId: T:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
isExternal: false
name: IFileStreamWriter
nameWithType: IFileStreamWriter
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
- uid: System.IDisposable
commentId: T:System.IDisposable
parent: System
isExternal: true
name: IDisposable
nameWithType: IDisposable
fullName: System.IDisposable
- 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.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.#ctor*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.#ctor
isExternal: false
name: ServiceBufferFileStreamWriter
nameWithType: ServiceBufferFileStreamWriter.ServiceBufferFileStreamWriter
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.ServiceBufferFileStreamWriter
- uid: System.IO.Stream
commentId: T:System.IO.Stream
parent: System.IO
isExternal: true
name: Stream
nameWithType: Stream
fullName: System.IO.Stream
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
name: Int32
nameWithType: Int32
fullName: System.Int32
- uid: System.IO
commentId: N:System.IO
isExternal: false
name: System.IO
nameWithType: System.IO
fullName: System.IO
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow
isExternal: false
name: WriteRow
nameWithType: ServiceBufferFileStreamWriter.WriteRow
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteRow
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: false
name: WriteRow(StorageDataReader)
nameWithType: IFileStreamWriter.WriteRow(StorageDataReader)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
name: WriteRow
nameWithType: IFileStreamWriter.WriteRow
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow
- name: (
nameWithType: (
fullName: (
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
name: StorageDataReader
nameWithType: StorageDataReader
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow(Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader)
name: WriteRow
nameWithType: IFileStreamWriter.WriteRow
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteRow
- name: (
nameWithType: (
fullName: (
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
name: StorageDataReader
nameWithType: StorageDataReader
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
- name: )
nameWithType: )
fullName: )
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
commentId: T:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
isExternal: false
name: StorageDataReader
nameWithType: StorageDataReader
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.StorageDataReader
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull
isExternal: false
name: WriteNull
nameWithType: ServiceBufferFileStreamWriter.WriteNull
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteNull
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: false
name: WriteNull()
nameWithType: IFileStreamWriter.WriteNull()
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull()
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
name: WriteNull
nameWithType: IFileStreamWriter.WriteNull
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
name: WriteNull
nameWithType: IFileStreamWriter.WriteNull
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteNull
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16
isExternal: false
name: WriteInt16
nameWithType: ServiceBufferFileStreamWriter.WriteInt16
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt16
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16(System.Int16)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16(System.Int16)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteInt16(Int16)
nameWithType: IFileStreamWriter.WriteInt16(Int16)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16(System.Int16)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16(System.Int16)
name: WriteInt16
nameWithType: IFileStreamWriter.WriteInt16
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16
- name: (
nameWithType: (
fullName: (
- uid: System.Int16
name: Int16
nameWithType: Int16
fullName: System.Int16
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16(System.Int16)
name: WriteInt16
nameWithType: IFileStreamWriter.WriteInt16
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt16
- name: (
nameWithType: (
fullName: (
- uid: System.Int16
name: Int16
nameWithType: Int16
fullName: System.Int16
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Int16
commentId: T:System.Int16
parent: System
isExternal: true
name: Int16
nameWithType: Int16
fullName: System.Int16
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32
isExternal: false
name: WriteInt32
nameWithType: ServiceBufferFileStreamWriter.WriteInt32
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt32
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32(System.Int32)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32(System.Int32)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteInt32(Int32)
nameWithType: IFileStreamWriter.WriteInt32(Int32)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32(System.Int32)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32(System.Int32)
name: WriteInt32
nameWithType: IFileStreamWriter.WriteInt32
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32
- name: (
nameWithType: (
fullName: (
- uid: System.Int32
name: Int32
nameWithType: Int32
fullName: System.Int32
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32(System.Int32)
name: WriteInt32
nameWithType: IFileStreamWriter.WriteInt32
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt32
- name: (
nameWithType: (
fullName: (
- uid: System.Int32
name: Int32
nameWithType: Int32
fullName: System.Int32
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64
isExternal: false
name: WriteInt64
nameWithType: ServiceBufferFileStreamWriter.WriteInt64
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteInt64
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64(System.Int64)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64(System.Int64)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteInt64(Int64)
nameWithType: IFileStreamWriter.WriteInt64(Int64)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64(System.Int64)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64(System.Int64)
name: WriteInt64
nameWithType: IFileStreamWriter.WriteInt64
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64
- name: (
nameWithType: (
fullName: (
- uid: System.Int64
name: Int64
nameWithType: Int64
fullName: System.Int64
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64(System.Int64)
name: WriteInt64
nameWithType: IFileStreamWriter.WriteInt64
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteInt64
- name: (
nameWithType: (
fullName: (
- uid: System.Int64
name: Int64
nameWithType: Int64
fullName: System.Int64
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Int64
commentId: T:System.Int64
parent: System
isExternal: true
name: Int64
nameWithType: Int64
fullName: System.Int64
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar
isExternal: false
name: WriteChar
nameWithType: ServiceBufferFileStreamWriter.WriteChar
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteChar
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar(System.Char)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar(System.Char)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteChar(Char)
nameWithType: IFileStreamWriter.WriteChar(Char)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar(System.Char)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar(System.Char)
name: WriteChar
nameWithType: IFileStreamWriter.WriteChar
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar
- name: (
nameWithType: (
fullName: (
- uid: System.Char
name: Char
nameWithType: Char
fullName: System.Char
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar(System.Char)
name: WriteChar
nameWithType: IFileStreamWriter.WriteChar
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteChar
- name: (
nameWithType: (
fullName: (
- uid: System.Char
name: Char
nameWithType: Char
fullName: System.Char
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Char
commentId: T:System.Char
parent: System
isExternal: true
name: Char
nameWithType: Char
fullName: System.Char
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean
isExternal: false
name: WriteBoolean
nameWithType: ServiceBufferFileStreamWriter.WriteBoolean
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBoolean
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean(System.Boolean)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean(System.Boolean)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteBoolean(Boolean)
nameWithType: IFileStreamWriter.WriteBoolean(Boolean)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean(System.Boolean)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean(System.Boolean)
name: WriteBoolean
nameWithType: IFileStreamWriter.WriteBoolean
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean
- name: (
nameWithType: (
fullName: (
- uid: System.Boolean
name: Boolean
nameWithType: Boolean
fullName: System.Boolean
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean(System.Boolean)
name: WriteBoolean
nameWithType: IFileStreamWriter.WriteBoolean
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBoolean
- name: (
nameWithType: (
fullName: (
- uid: System.Boolean
name: Boolean
nameWithType: Boolean
fullName: System.Boolean
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
name: Boolean
nameWithType: Boolean
fullName: System.Boolean
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte
isExternal: false
name: WriteByte
nameWithType: ServiceBufferFileStreamWriter.WriteByte
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteByte
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte(System.Byte)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte(System.Byte)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteByte(Byte)
nameWithType: IFileStreamWriter.WriteByte(Byte)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte(System.Byte)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte(System.Byte)
name: WriteByte
nameWithType: IFileStreamWriter.WriteByte
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte
- name: (
nameWithType: (
fullName: (
- uid: System.Byte
name: Byte
nameWithType: Byte
fullName: System.Byte
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte(System.Byte)
name: WriteByte
nameWithType: IFileStreamWriter.WriteByte
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteByte
- name: (
nameWithType: (
fullName: (
- uid: System.Byte
name: Byte
nameWithType: Byte
fullName: System.Byte
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Byte
commentId: T:System.Byte
parent: System
isExternal: true
name: Byte
nameWithType: Byte
fullName: System.Byte
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle
isExternal: false
name: WriteSingle
nameWithType: ServiceBufferFileStreamWriter.WriteSingle
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSingle
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle(System.Single)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle(System.Single)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteSingle(Single)
nameWithType: IFileStreamWriter.WriteSingle(Single)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle(System.Single)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle(System.Single)
name: WriteSingle
nameWithType: IFileStreamWriter.WriteSingle
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle
- name: (
nameWithType: (
fullName: (
- uid: System.Single
name: Single
nameWithType: Single
fullName: System.Single
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle(System.Single)
name: WriteSingle
nameWithType: IFileStreamWriter.WriteSingle
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSingle
- name: (
nameWithType: (
fullName: (
- uid: System.Single
name: Single
nameWithType: Single
fullName: System.Single
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
name: Single
nameWithType: Single
fullName: System.Single
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble
isExternal: false
name: WriteDouble
nameWithType: ServiceBufferFileStreamWriter.WriteDouble
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDouble
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble(System.Double)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble(System.Double)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteDouble(Double)
nameWithType: IFileStreamWriter.WriteDouble(Double)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble(System.Double)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble(System.Double)
name: WriteDouble
nameWithType: IFileStreamWriter.WriteDouble
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble
- name: (
nameWithType: (
fullName: (
- uid: System.Double
name: Double
nameWithType: Double
fullName: System.Double
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble(System.Double)
name: WriteDouble
nameWithType: IFileStreamWriter.WriteDouble
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDouble
- name: (
nameWithType: (
fullName: (
- uid: System.Double
name: Double
nameWithType: Double
fullName: System.Double
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Double
commentId: T:System.Double
parent: System
isExternal: true
name: Double
nameWithType: Double
fullName: System.Double
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal
isExternal: false
name: WriteSqlDecimal
nameWithType: ServiceBufferFileStreamWriter.WriteSqlDecimal
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteSqlDecimal
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteSqlDecimal(SqlDecimal)
nameWithType: IFileStreamWriter.WriteSqlDecimal(SqlDecimal)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
name: WriteSqlDecimal
nameWithType: IFileStreamWriter.WriteSqlDecimal
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal
- name: (
nameWithType: (
fullName: (
- uid: System.Data.SqlTypes.SqlDecimal
name: SqlDecimal
nameWithType: SqlDecimal
fullName: System.Data.SqlTypes.SqlDecimal
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal(System.Data.SqlTypes.SqlDecimal)
name: WriteSqlDecimal
nameWithType: IFileStreamWriter.WriteSqlDecimal
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteSqlDecimal
- name: (
nameWithType: (
fullName: (
- uid: System.Data.SqlTypes.SqlDecimal
name: SqlDecimal
nameWithType: SqlDecimal
fullName: System.Data.SqlTypes.SqlDecimal
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Data.SqlTypes.SqlDecimal
commentId: T:System.Data.SqlTypes.SqlDecimal
parent: System.Data.SqlTypes
isExternal: true
name: SqlDecimal
nameWithType: SqlDecimal
fullName: System.Data.SqlTypes.SqlDecimal
- uid: System.Data.SqlTypes
commentId: N:System.Data.SqlTypes
isExternal: false
name: System.Data.SqlTypes
nameWithType: System.Data.SqlTypes
fullName: System.Data.SqlTypes
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal
isExternal: false
name: WriteDecimal
nameWithType: ServiceBufferFileStreamWriter.WriteDecimal
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDecimal
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal(System.Decimal)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal(System.Decimal)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteDecimal(Decimal)
nameWithType: IFileStreamWriter.WriteDecimal(Decimal)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal(System.Decimal)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal(System.Decimal)
name: WriteDecimal
nameWithType: IFileStreamWriter.WriteDecimal
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal
- name: (
nameWithType: (
fullName: (
- uid: System.Decimal
name: Decimal
nameWithType: Decimal
fullName: System.Decimal
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal(System.Decimal)
name: WriteDecimal
nameWithType: IFileStreamWriter.WriteDecimal
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDecimal
- name: (
nameWithType: (
fullName: (
- uid: System.Decimal
name: Decimal
nameWithType: Decimal
fullName: System.Decimal
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Decimal
commentId: T:System.Decimal
parent: System
isExternal: true
name: Decimal
nameWithType: Decimal
fullName: System.Decimal
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime
isExternal: false
name: WriteDateTime
nameWithType: ServiceBufferFileStreamWriter.WriteDateTime
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTime
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteDateTime(DbColumnWrapper, DateTime)
nameWithType: IFileStreamWriter.WriteDateTime(DbColumnWrapper, DateTime)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper, System.DateTime)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
name: WriteDateTime
nameWithType: IFileStreamWriter.WriteDateTime
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime
- name: (
nameWithType: (
fullName: (
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
name: DbColumnWrapper
nameWithType: DbColumnWrapper
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.DateTime
name: DateTime
nameWithType: DateTime
fullName: System.DateTime
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime(Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper,System.DateTime)
name: WriteDateTime
nameWithType: IFileStreamWriter.WriteDateTime
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTime
- name: (
nameWithType: (
fullName: (
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
name: DbColumnWrapper
nameWithType: DbColumnWrapper
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.DateTime
name: DateTime
nameWithType: DateTime
fullName: System.DateTime
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
commentId: T:Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
isExternal: false
name: DbColumnWrapper
nameWithType: DbColumnWrapper
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.DbColumnWrapper
- uid: System.DateTime
commentId: T:System.DateTime
parent: System
isExternal: true
name: DateTime
nameWithType: DateTime
fullName: System.DateTime
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
commentId: N:Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
isExternal: false
name: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
nameWithType: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset
isExternal: false
name: WriteDateTimeOffset
nameWithType: ServiceBufferFileStreamWriter.WriteDateTimeOffset
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteDateTimeOffset
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteDateTimeOffset(DateTimeOffset)
nameWithType: IFileStreamWriter.WriteDateTimeOffset(DateTimeOffset)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
name: WriteDateTimeOffset
nameWithType: IFileStreamWriter.WriteDateTimeOffset
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset
- name: (
nameWithType: (
fullName: (
- uid: System.DateTimeOffset
name: DateTimeOffset
nameWithType: DateTimeOffset
fullName: System.DateTimeOffset
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset(System.DateTimeOffset)
name: WriteDateTimeOffset
nameWithType: IFileStreamWriter.WriteDateTimeOffset
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteDateTimeOffset
- name: (
nameWithType: (
fullName: (
- uid: System.DateTimeOffset
name: DateTimeOffset
nameWithType: DateTimeOffset
fullName: System.DateTimeOffset
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.DateTimeOffset
commentId: T:System.DateTimeOffset
parent: System
isExternal: true
name: DateTimeOffset
nameWithType: DateTimeOffset
fullName: System.DateTimeOffset
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan
isExternal: false
name: WriteTimeSpan
nameWithType: ServiceBufferFileStreamWriter.WriteTimeSpan
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteTimeSpan
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan(System.TimeSpan)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan(System.TimeSpan)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteTimeSpan(TimeSpan)
nameWithType: IFileStreamWriter.WriteTimeSpan(TimeSpan)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan(System.TimeSpan)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan(System.TimeSpan)
name: WriteTimeSpan
nameWithType: IFileStreamWriter.WriteTimeSpan
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan
- name: (
nameWithType: (
fullName: (
- uid: System.TimeSpan
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan(System.TimeSpan)
name: WriteTimeSpan
nameWithType: IFileStreamWriter.WriteTimeSpan
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteTimeSpan
- name: (
nameWithType: (
fullName: (
- uid: System.TimeSpan
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.TimeSpan
commentId: T:System.TimeSpan
parent: System
isExternal: true
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString
isExternal: false
name: WriteString
nameWithType: ServiceBufferFileStreamWriter.WriteString
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteString
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString(System.String)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString(System.String)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteString(String)
nameWithType: IFileStreamWriter.WriteString(String)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString(System.String)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString(System.String)
name: WriteString
nameWithType: IFileStreamWriter.WriteString
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString(System.String)
name: WriteString
nameWithType: IFileStreamWriter.WriteString
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteString
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
name: String
nameWithType: String
fullName: System.String
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes
isExternal: false
name: WriteBytes
nameWithType: ServiceBufferFileStreamWriter.WriteBytes
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteBytes
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte[])
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte[])
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteBytes(Byte[])
nameWithType: IFileStreamWriter.WriteBytes(Byte[])
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte[])
nameWithType.vb: IFileStreamWriter.WriteBytes(Byte())
fullname.vb: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte())
name.vb: WriteBytes(Byte())
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte[])
name: WriteBytes
nameWithType: IFileStreamWriter.WriteBytes
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes
- name: (
nameWithType: (
fullName: (
- uid: System.Byte
name: Byte
nameWithType: Byte
fullName: System.Byte
isExternal: true
- name: '[]'
nameWithType: '[]'
fullName: '[]'
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes(System.Byte[])
name: WriteBytes
nameWithType: IFileStreamWriter.WriteBytes
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteBytes
- name: (
nameWithType: (
fullName: (
- uid: System.Byte
name: Byte
nameWithType: Byte
fullName: System.Byte
isExternal: true
- name: ()
nameWithType: ()
fullName: ()
- name: )
nameWithType: )
fullName: )
- uid: System.Byte[]
name: Byte[]
nameWithType: Byte[]
fullName: System.Byte[]
nameWithType.vb: Byte()
fullname.vb: System.Byte()
name.vb: Byte()
spec.csharp:
- uid: System.Byte
name: Byte
nameWithType: Byte
fullName: System.Byte
isExternal: true
- name: '[]'
nameWithType: '[]'
fullName: '[]'
spec.vb:
- uid: System.Byte
name: Byte
nameWithType: Byte
fullName: System.Byte
isExternal: true
- name: ()
nameWithType: ()
fullName: ()
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid
isExternal: false
name: WriteGuid
nameWithType: ServiceBufferFileStreamWriter.WriteGuid
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteGuid
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid(System.Guid)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid(System.Guid)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteGuid(Guid)
nameWithType: IFileStreamWriter.WriteGuid(Guid)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid(System.Guid)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid(System.Guid)
name: WriteGuid
nameWithType: IFileStreamWriter.WriteGuid
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid
- name: (
nameWithType: (
fullName: (
- uid: System.Guid
name: Guid
nameWithType: Guid
fullName: System.Guid
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid(System.Guid)
name: WriteGuid
nameWithType: IFileStreamWriter.WriteGuid
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteGuid
- name: (
nameWithType: (
fullName: (
- uid: System.Guid
name: Guid
nameWithType: Guid
fullName: System.Guid
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Guid
commentId: T:System.Guid
parent: System
isExternal: true
name: Guid
nameWithType: Guid
fullName: System.Guid
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney
isExternal: false
name: WriteMoney
nameWithType: ServiceBufferFileStreamWriter.WriteMoney
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.WriteMoney
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: true
name: WriteMoney(SqlMoney)
nameWithType: IFileStreamWriter.WriteMoney(SqlMoney)
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
name: WriteMoney
nameWithType: IFileStreamWriter.WriteMoney
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney
- name: (
nameWithType: (
fullName: (
- uid: System.Data.SqlTypes.SqlMoney
name: SqlMoney
nameWithType: SqlMoney
fullName: System.Data.SqlTypes.SqlMoney
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney(System.Data.SqlTypes.SqlMoney)
name: WriteMoney
nameWithType: IFileStreamWriter.WriteMoney
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.WriteMoney
- name: (
nameWithType: (
fullName: (
- uid: System.Data.SqlTypes.SqlMoney
name: SqlMoney
nameWithType: SqlMoney
fullName: System.Data.SqlTypes.SqlMoney
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Data.SqlTypes.SqlMoney
commentId: T:System.Data.SqlTypes.SqlMoney
parent: System.Data.SqlTypes
isExternal: true
name: SqlMoney
nameWithType: SqlMoney
fullName: System.Data.SqlTypes.SqlMoney
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer
isExternal: false
name: FlushBuffer
nameWithType: ServiceBufferFileStreamWriter.FlushBuffer
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.FlushBuffer
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
commentId: M:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
parent: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter
isExternal: false
name: FlushBuffer()
nameWithType: IFileStreamWriter.FlushBuffer()
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer()
spec.csharp:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
name: FlushBuffer
nameWithType: IFileStreamWriter.FlushBuffer
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
name: FlushBuffer
nameWithType: IFileStreamWriter.FlushBuffer
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.IFileStreamWriter.FlushBuffer
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose
isExternal: false
name: Dispose
nameWithType: ServiceBufferFileStreamWriter.Dispose
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Dispose
- uid: System.IDisposable.Dispose
commentId: M:System.IDisposable.Dispose
parent: System.IDisposable
isExternal: true
name: Dispose()
nameWithType: IDisposable.Dispose()
fullName: System.IDisposable.Dispose()
spec.csharp:
- uid: System.IDisposable.Dispose
name: Dispose
nameWithType: IDisposable.Dispose
fullName: System.IDisposable.Dispose
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.IDisposable.Dispose
name: Dispose
nameWithType: IDisposable.Dispose
fullName: System.IDisposable.Dispose
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize*
commentId: Overload:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize
isExternal: false
name: Finalize
nameWithType: ServiceBufferFileStreamWriter.Finalize
fullName: Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage.ServiceBufferFileStreamWriter.Finalize