Ссылка Lync.Model для статуса Skype для бизнеса 2016 в Интернете - PullRequest
1 голос
/ 24 мая 2019

У меня установлен Skype для бизнеса 2016 на моем компьютере.

Я хочу получить статус онлайн через Lync SDK 2013.

 static void Main(string[] args)
   {

        var theClient = LyncClient.GetClient();
        Console.WriteLine(theClient.State);

        Console.ReadLine();
   }

У меня есть мой почтовый адрес в theClient и

theClient.State 

есть

 SignedIn

как я могу получить статусы онлайн / в гостях / заняты с помощью Lync SDK.

Спасибо за чтение.

1 Ответ

0 голосов
/ 24 мая 2019

я нашел ответ:

Загрузите SDK отсюда https://www.microsoft.com/en-gb/download/details.aspx?id=36824

установите и посмотрите Невозможно установить Lync 2013 SDK с Skype для бизнеса 2016

Простое решение - извлечь установщик .exe с помощью 7-zip или какой-либо другой программы.После распаковки просто запустите соответствующие установщики .msi.

перейдите в папку: C: \ Program Files (x86) \ Microsoft Office 2013 \ LyncSDK \ Assemblies \ Desktop

найдите «Microsoft.Lync.Model.dll», добавьте «Microsoft.Lync.Model.dll» в проект в качестве ссылки.

, если хотите проверить свой статус: https://blog.thoughtstuff.co.uk/2014/08/microsoft-lync-desktop-development-how-to-get-started/

var theClient = LyncClient.GetClient();
Contact self = theClient.Self.Contact;
object obj = self.GetContactInformation(ContactInformationType.Availability);
string stringval=self.GetContactInformation(ContactInformationType.Availability).ToString();

если вы хотите проверить статус другого человека по электронной почте

 Contact contact = theClient.ContactManager.GetContactByUri("xx@example.com");
 object zzz = contact.GetContactInformation(ContactInformationType.Availability);

Это строковые значения = https://rcosic.wordpress.com/2011/11/17/availability-presence-in-lync-client/

Invalid (-1),
None (0) – Do not use this enumerator. This flag indicates that the cotact state is unspecified.,
Free (3500) – A flag indicating that the contact is available,
FreeIdle (5000) – Contact is free but inactive,
Busy (6500) – A flag indicating that the contact is busy and inactive,
BusyIdle (7500) – Contact is busy but inactive,
DoNotDisturb (9500) – A flag indicating that the contact does not want to be disturbed,
TemporarilyAway (12500) – A flag indicating that the contact is temporarily away,
Away (15500) – A flag indicating that the contact is away,
Offline (18500) – A flag indicating that the contact is signed out.

ПОЛНЫЙ КОД (я положил в таймер):

using Microsoft.Lync.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;

namespace UserStatus
{
    public class DoThis
    {

        private readonly Timer _timer;
        public DoThis()
        {
            _timer = new Timer(1000 * 2) { AutoReset = true };
            _timer.Elapsed += TimerElapsed;
        }
        private void TimerElapsed(object sender, ElapsedEventArgs e)
        {
            DoThis2();
        }
        public void Start()
        {
            _timer.Start();
        }
        public void Stop()
        {
            _timer.Stop();
        }

        void DoThis2()
        {

            Stop();

            var theClient = LyncClient.GetClient();
            Contact self = theClient.Self.Contact;


            if ((self.GetContactInformation(ContactInformationType.Availability)).ToString() == "6500")
            {
                Console.WriteLine("busy");
            }
            if ((self.GetContactInformation(ContactInformationType.Availability)).ToString() == "3500")
            {
                Console.WriteLine("available");
            }
            if ((self.GetContactInformation(ContactInformationType.Availability)).ToString() == "15500")
            {
                Console.WriteLine("away");
            }

            Start();
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...