开发者

How can I change Skype user status from online to away using skype4com?

开发者 https://www.devze.com 2023-02-24 09:26 出处:网络
How ca开发者_Python百科n I change my Skype status (from online to away, offline) using skype4com dll? I am working in C#. Answers that provide sample code would be most helpful to me.Once you have att

How ca开发者_Python百科n I change my Skype status (from online to away, offline) using skype4com dll? I am working in C#. Answers that provide sample code would be most helpful to me.


Once you have attached to skype you just need to call ChangeUserStatus method:

var skype = new Skype();
skype.Attach(5, true);
skype.ChangeUserStatus(TUserStatus.cusAway);


I believe you can use the GET USERSTATUS command via the Skype Public API ("Skype Accessories"), which enables you to get or set the user's status.

The API reference documentation is here.

0

精彩评论

暂无评论...
验证码 换一张
取 消