private void OnVoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     if (this.serviceDeferral != null)
     {
         this.serviceDeferral.Complete();
     }
 }
Ejemplo n.º 2
0
 private void Vsvc_VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     Debug.Write("Command Completed.");
     if(this.serviceDeferral != null)
     {
         this.serviceDeferral.Complete();
     }
 }
Ejemplo n.º 3
0
 private void VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     if (this.serviceDeferral != null)
     {
         // Insert your code here
         //Complete the service deferral
         this.serviceDeferral.Complete();
     }
 }
 private void VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     if (this.serviceDeferral != null)
     {
         // Insert your code here.
         // Complete the service deferral.
         this.serviceDeferral.Complete();
     }
 }
 private void OnVoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     serviceDeferral?.Complete();
 }
Ejemplo n.º 6
0
 private void VoiceServiceConection_VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     if (this._deferral != null)
     {
         this._deferral.Complete();
     }
 }
Ejemplo n.º 7
0
 private void VoiceServiceConnection_VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     Debug.WriteLine("Completed");
     if (serviceDeferral != null)
     {
         serviceDeferral.Complete();
     }
 }
Ejemplo n.º 8
0
 private void VcConnection_VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     if (serviceDeferral != null)
     {
         serviceDeferral.Complete();
     }
 }
Ejemplo n.º 9
0
 private void ConnectionOnVoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
 }
Ejemplo n.º 10
0
 private void ConnectionOnVoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
 }
Ejemplo n.º 11
0
 private void OnVoiceCommandComplete(VoiceCommandServiceConnection voiceService, VoiceCommandCompletedEventArgs args)
 {
 }
Ejemplo n.º 12
0
 // Handle the VoiceCommandCompleted event
 private void OnVoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     // Complete the service deferral
     this._serviceDeferral?.Complete();
 }
 private void VoiceServiceConnection_VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     if (m_VoiceServiceDeferral != null)
     {
         m_VoiceServiceDeferral.Complete();
         m_VoiceServiceDeferral   = null;
         m_VoiceServiceConnection = null;
     }
 }
 private void OnVoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     CleanUpDeferral();
 }
		private void VoiceCommandCompleted( VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args )
		{
			if ( _deferral != null )
			{
				_deferral.Complete();
			}
		}
Ejemplo n.º 16
0
 private void VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     serviceDeferral?.Complete();
 }
 private void VoiceServiceConnection_VoiceCommandCompleted(VoiceCommandServiceConnection sender, VoiceCommandCompletedEventArgs args)
 {
     _deferral?.Complete();
 }