ISequentialStream Interface
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Defines methods for the stream objects in sequence.
Namespace: Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Syntax
'Declaration
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
<GuidAttribute("0C733A30-2A1C-11CE-ADE5-00AA0044773D")> _
Public Interface ISequentialStream
'Usage
Dim instance As ISequentialStream
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[GuidAttribute("0C733A30-2A1C-11CE-ADE5-00AA0044773D")]
public interface ISequentialStream
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
[GuidAttribute(L"0C733A30-2A1C-11CE-ADE5-00AA0044773D")]
public interface class ISequentialStream
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
[<GuidAttribute("0C733A30-2A1C-11CE-ADE5-00AA0044773D")>]
type ISequentialStream = interface end
public interface ISequentialStream
The ISequentialStream type exposes the following members.
Methods
Name | Description | |
---|---|---|
RemoteRead | Infrastructure. Reads a specified number of bytes from the stream object into memory starting at the current seek pointer. | |
RemoteWrite | Infrastructure. Writes a specified number of bytes into the stream object starting at the current seek pointer. |
Top