Interface for a object that writes to a filesystem wrapper
Inherited Members
System.IDisposable.Dispose()
Namespace:Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
Assembly:Microsoft.SqlTools.ServiceLayer.dll
public interface IFileStreamWriter : IDisposable
Methods
|
Improve this Doc
View Source
Declaration
|
Improve this Doc
View Source
Declaration
int WriteBoolean(bool val)
Parameters
| Type |
Name |
Description |
| System.Boolean |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
Parameters
| Type |
Name |
Description |
| System.Byte |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteBytes(byte[] bytes)
Parameters
| Type |
Name |
Description |
| System.Byte[] |
bytes |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
Parameters
| Type |
Name |
Description |
| System.Char |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteDateTime(DbColumnWrapper column, DateTime val)
Parameters
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteDateTimeOffset(DateTimeOffset dtoVal)
Parameters
| Type |
Name |
Description |
| System.DateTimeOffset |
dtoVal |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteDecimal(decimal val)
Parameters
| Type |
Name |
Description |
| System.Decimal |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteDouble(double val)
Parameters
| Type |
Name |
Description |
| System.Double |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
Parameters
| Type |
Name |
Description |
| System.Guid |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteInt16(short val)
Parameters
| Type |
Name |
Description |
| System.Int16 |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
Parameters
| Type |
Name |
Description |
| System.Int32 |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
Parameters
| Type |
Name |
Description |
| System.Int64 |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteMoney(SqlMoney val)
Parameters
| Type |
Name |
Description |
| System.Data.SqlTypes.SqlMoney |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteRow(StorageDataReader dataReader)
Parameters
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteSingle(float val)
Parameters
| Type |
Name |
Description |
| System.Single |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteSqlDecimal(SqlDecimal val)
Parameters
| Type |
Name |
Description |
| System.Data.SqlTypes.SqlDecimal |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteString(string val)
Parameters
| Type |
Name |
Description |
| System.String |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
int WriteTimeSpan(TimeSpan val)
Parameters
| Type |
Name |
Description |
| System.TimeSpan |
val |
|
Returns
| Type |
Description |
| System.Int32 |
|