Given an eMail address, I am trying to determine if it is a valid user's signin address.

I've tried the code below, but it only works if the user has been queried by the Lync Client by the user before, otherwise the user is identified as Unknown.

using Microsoft.Lync.Model;
using Microsoft.Lync.Model.Extensibility;

private bool IsLyncUser(string eMail, out Microsoft.Lync.Model.Contact imContact)
{
    var lyncClient = LyncClient.GetClient();
    imContact = lyncClient.ContactManager.GetContactByUri(eMail);

    if (null != imContact)
    {
        try
        {
            var sourceType = (ContactSourceTypes)imContact.Settings[ContactSetting.Source];
            return (ContactSourceTypes)0 != (ContactSourceTypes.ExchangeService | ContactSourceTypes.GlobalAddressList | sourceType);
        }
        catch
        {
            imContact = null;
        }
    }
    return false;
}

Questions:

  1. Why is the data only loaded when the user is queried via the Lync Client GUI?
  2. How can I "fetch" the data, so that it will be available when queried?
  3. Is there a better way to query if the email belongs to a valid Lync user?
link|improve this question

75% accept rate
Any answers to this question till now? – Coder323 Apr 5 at 8:14
@Coder323, thanks for asking, no not yet, hope someone notices this one, although low priority, it still bugs me. – Lockszmith Apr 6 at 10:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.