Xceed .NET Libraries Documentation
Xceed.SSH.SFtp Assembly / Xceed.SSH.SFtp Namespace / SFtp Class / BeginReadFile Method


In This Topic
    BeginReadFile Method
    In This Topic
    Syntax
    'Declaration
     
    Public Function BeginReadFile( _
       ByVal handle() As Byte, _
       ByVal offset As Long, _
       ByVal count As Integer, _
       ByVal callback As AsyncCallback, _
       ByVal state As Object _
    ) As IAsyncResult
    'Usage
     
    Dim instance As SFtp
    Dim handle() As Byte
    Dim offset As Long
    Dim count As Integer
    Dim callback As AsyncCallback
    Dim state As Object
    Dim value As IAsyncResult
     
    value = instance.BeginReadFile(handle, offset, count, callback, state)
    public IAsyncResult BeginReadFile( 
       byte[] handle,
       long offset,
       int count,
       AsyncCallback callback,
       object state
    )

    Parameters

    handle
    offset
    count
    callback
    state
    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