Can UserEndPoint handles Application Sharing Modalities?
Thanks,
-Lucy
static void Main(string[] args) { _helper = new UCMASampleHelper(); _userEndpoint = _helper.CreateEstablishedUserEndpoint("My User" /*endpointFriendlyName*/); _userEndpoint.RegisterForIncomingCall<AudioVideoCall>(AudioVideoCall_Received); _userEndpoint.RegisterForIncomingCall<InstantMessagingCall>(InstantMessagingCall_Received); _userEndpoint.RegisterForIncomingCall<ApplicationSharingCall>(ApplicationSharingCall_Received); _userEndpoint.ConferenceInvitationReceived += ConferenceInvitation_Received; Console.WriteLine("Waiting for incoming call..."); _waitForCallToBeTransferred.WaitOne(); UCMASampleHelper.PauseBeforeContinuing("Press ENTER to shutdown and exit."); // Shut down the sample. _helper.ShutdownPlatform(); }