繁体   English   中英

Skype for Business 2016联机状态的Lync.Model参考

[英]Lync.Model reference for Skype for Business 2016 Online Status

我在计算机上安装了Skype for Business 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达到在线/忙碌/忙碌状态。

谢谢阅读。

我找到了答案:

从此处下载SDK https://www.microsoft.com/en-gb/download/details.aspx?id=36824

安装并外观无法通过Skype for Business 2016安装Lync 2013 SDK

一个简单的解决方案是使用7-zip或其他程序解压缩.exe安装程序。 解压缩后,只需运行相应的.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();
        }
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM