Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / AsyncFtpClient Class / BeginClearCommandChannel Method
Callback method to be called when the asynchronous operation is completed.
An object containing state information for this operation.


In This Topic
    BeginClearCommandChannel Method
    In This Topic
    Begins the process of clearing the command channel. Don't forget to call EndClearCommandChannel!
    Syntax
    'Declaration
     
    Public Function BeginClearCommandChannel( _
       ByVal callback As AsyncCallback, _
       ByVal state As Object _
    ) As IAsyncResult
    'Usage
     
    Dim instance As AsyncFtpClient
    Dim callback As AsyncCallback
    Dim state As Object
    Dim value As IAsyncResult
     
    value = instance.BeginClearCommandChannel(callback, state)
    public IAsyncResult BeginClearCommandChannel( 
       AsyncCallback callback,
       object state
    )

    Parameters

    callback
    Callback method to be called when the asynchronous operation is completed.
    state
    An object containing state information for this operation.
    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