Send() private method

private Send ( ) : void
return void
 public void SendBroadcast(string fromAddress, string subject, string body, int encodingType = 2)
 {
     var broadcast = new Broadcast(this)
     {
         Key = fromAddress,
         Body = body,
         Subject = subject
     };
     broadcast.SaveAsync(DB);
     broadcast.Send();
 }