TSL语言基础 > Object TSL > TSL内置对象使用大全 > SMTP对象 > SMTP对象的方法

DisconnectNotifyPeer    

简述

断开并且通知服务器。
定义
DisconnectNotifyPeer()
  • 范例




    obj:= CreateObject("smtp") ;

    obj.Host := 'smtp.tinysoft.com.cn' ;

    obj.connect();

    obj.DisconnectNotifyPeer();

    return 1;

相关