private void SendNextStep(ContentInfo contentInfo, LOLMessageClient service)
 {
     #if(DEBUG)
     System.Diagnostics.Debug.WriteLine("Send next step!");
     #endif
     if (contentInfo.ContentState != null)
     {
         if (contentInfo.ContentState.HasVoiceRecordings)
         {
             this.SendVoiceData(contentInfo, service);
         } else
         if (contentInfo.ContentState.HasPollingSteps)
         {
             this.SendPollingSteps(contentInfo, service);
         } else
         {
             service.MessageConfirmSendCompleted += Service_MessageConfirmSendCompleted;
             service.MessageConfirmSendAsync(contentInfo.Message.MessageID, AndroidData.CurrentUser.AccountID, new Guid(AndroidData.ServiceAuthToken), contentInfo);
         }
     }
 }