C# PresenceNotificationReceived RemotePresentityNotification.PersonalNote.Message在更改便笺时为空字符串

C# PresenceNotificationReceived RemotePresentityNotification.PersonalNote.Message在更改便笺时为空字符串,c#,lync-2010,lync,ucma,C#,Lync 2010,Lync,Ucma,现在我有一个RemotePresenceView,我订阅了PresenceNotificationReceived事件。当我更改Lync客户端中的状态或便笺时,事件被正确触发,但当它处理该事件时,RemotePresentityNotification.PersonalNote.Message为空字符串。RemotePresentityNotification.AggregatedPresenceState是正确的,但个人备忘永远不会正确。怎么回事 我还在微软论坛上发布了一个问题: 当Remot

现在我有一个
RemotePresenceView
,我订阅了
PresenceNotificationReceived
事件。当我更改Lync客户端中的状态或便笺时,事件被正确触发,但当它处理该事件时,
RemotePresentityNotification.PersonalNote.Message
为空字符串。
RemotePresentityNotification.AggregatedPresenceState
是正确的,但个人备忘永远不会正确。怎么回事


我还在微软论坛上发布了一个问题:

当RemotePresenceView绑定的UserEndpoint的所有者URI与RemotePresentityNotification的PresentityUri相同时,似乎出现了此问题。我通过更改UserEndpoint的帐户来修复它。下面是我测试将便笺设置为“外地”时的示例结果:

  • UserEndpoint.OwnerURI=master。user@test.com, RemotePresentityNotification.PresentityUri=master。user@test.com, 注意=“”
  • UserEndpoint.OwnerURI=master。user@test.com, RemotePresentityNotification.PresentityUri=测试。user@test.com, 注意=“外地”
  • UserEndpoint.OwnerURI=测试。user@test.com, RemotePresentityNotification.PresentityUri=master。user@test.com, 注意=“外地”
  • UserEndpoint.OwnerURI=测试。user@test.com, RemotePresentityNotification.PresentityUri=测试。user@test.com, 注意=“”
  • UserEndpoint.OwnerURI=测试。user@test.com, RemotePresentityNotification.PresentityUri=secondtest。user@test.com, 注意=“外地”