Application sharing modality

Core concepts

Learn about the ApplicationSharingModality class and how it enables you to share resources in an application.

Applies to: Lync 2013 | Lync Server 2013

In this article
Application sharing modality
Additional resources

Application sharing modality

The ApplicationSharingModality object is a component of a conversation that encapsulates the Remote Desktop Protocol (RDP) and represents a sharing relationship between the local user and one other conversation participant. There is an ApplicationSharingModality object for each pair of participants in a sharing conversation. For example, if there are three participants in a sharing conversation, the client application at each endpoint hosts three instances of the ApplicationSharingModality object for the active conversation.

The ApplicationSharingModality object is the channel that carries shared resource screen data and mouse/keyboard control commands for the resource currently shared on the conversation sharing stage. Only a single shared resource can be shown on the sharing stage at a time and the conversation has one sharing stage for all participants. For this reason, all instances of the ApplicationSharingModality object across all endpoints in a conversation show the same shared resource.

Figure 1 shows the Focus component of Microsoft Lync Server 2013 and three instances of a custom Lync 2013 API application that are hosting an application sharing conversation with three people. Each application endpoint has instances of ApplicationSharingModality for each participant pair and an instance of ApplicationSharingModality for the endpoint to conference Focus pair.

Figure 1. ApplicationSharingModality objects in a sharing conversation

Shows the ApplicationSharingModality objects.

Shareable resources

Use the conversation ApplicationSharingModality to obtain a list of the local computer’s resources that can be shared. The Conversation.Modalities property returns the conversation ApplicationSharingModality object along with all other conversation modalities. You can get local shareable resources when the conversation object is created and before the ApplicationSharingModality is connected to the Focus and the conversation is active. This allows you to verify that a desired resource is available before inviting people to the conversation.

As local resources become available or are no longer available, the conversation ApplicationSharingModality raises an event that carries information about the newly available shareable resource. Use ApplicationSharingModality.LocalSharedResourcesChanged to get the updated shareable resource collection.

Requesting control of a shared resource

The resource control-related ApplicationSharingModality events convey control requests between a shared resource owner and participant who has requested or given control of the resource. For example, if Bob is sharing his own desktop and Sally requests control of the desktop, the control request and response are carried on the ApplicationSharingModality object that represents their relationship. The control requests and responses are not seen by the other conversation participants. When offering control of a resource, the ApplicationSharingModality representing the local user and a user who is to be offered resource control is used. For example, if Bob has revoked the control of his desktop from Sally and now wants to offer it to Tom, Bob chooses Tom on the conversation roster of his conversation window UI and then the application gets Tom’s ApplicationSharingModality object and makes the control offer with that object. Use the Participant.Modalities property to get the ApplicationSharingModality for a conversation participant.

See also