dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlLargeObject Class / Write Method
The array of bytes to copy data from.
The zero-based byte offset in buffer at which to begin copying bytes to the large object.
The number of bytes to be written to the large object.

In This Topic
    Write Method (PgSqlLargeObject)
    In This Topic
    Writes an array of bytes to PgSqlLargeObject.
    Syntax
    'Declaration
     
    Public Overrides Sub Write( _
       ByVal buffer() As Byte, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) 
    public override void Write( 
       byte[] buffer,
       int offset,
       int count
    )

    Parameters

    buffer
    The array of bytes to copy data from.
    offset
    The zero-based byte offset in buffer at which to begin copying bytes to the large object.
    count
    The number of bytes to be written to the large object.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also