c# - How to get contact details in Skype4COM? -
c# - How to get contact details in Skype4COM? -
i trying grab fullname
, handler
contact receive in skype chat. managed breakpoint in event:
skype.messagestatus += onmessagestatus; public void onmessagestatus(chatmessage pmessage, tchatmessagestatus status) { }
however body
of pmessage
contains:
"[contacts enclosed. please upgrade latest skype version receive contacts.]"
doesn't matter if 1 sending or receiving message same. current skype version 6.16.64.105 (the issue still happens on 6.16.0.105)
i wonder if issue skype version of not supported anymore reason, or if maybe working on wrong event...
is there event, or there way grab name , handler received contact?
i don't know message's body problem, can seek handle , fullname contact sending message:
pmessage.sender.handle
pmessage.sender.fullname
c# skype skype4com
Comments
Post a Comment