InfoConnect API Guide
Attachmate.Reflection.Emulation.OpenSystems Namespace / IFileTransfer Interface / CancelTransfer Method


In This Topic
    CancelTransfer Method (IFileTransfer)
    In This Topic

    Attempts to cancel a file transfer in progress (for any of the supported transfer protocols: Kermit, WRQ/Reflection, Xmodem, or Zmodem) by shutting down the host program. Use AbortTransfer if you think the host program has stopped responding.

    This method is not likely to be useful in a macro because all transfer methods must complete execution before subsequent commands are executed. AbortTransfer can be useful for mapping to custom items such as toolbar buttons, keystrokes or events. You can also use this method if you are using automation. For example, you could use stand-alone Visual Basic .NET to create a form with a Cancel Transfer button to cancel a transfer in progress.

    Syntax
    'Declaration
     
    
    Function CancelTransfer() As ReturnCode
    'Usage
     
    
    Dim instance As IFileTransfer
    Dim value As ReturnCode
     
    value = instance.CancelTransfer()
    ReturnCode CancelTransfer()
    See Also