/// <summary>
 /// Sends a new direct message to the specified user from the authenticating user.
 /// </summary>
 /// <param name="oAuth"></param>
 /// <param name="textMessage"></param>
 /// <returns></returns>
 public JArray PostDirect_Messages_New(oAuthTwitter oAuth, string textMessage, string userId)
 {
     DirectMessage objDM = new DirectMessage();
     JArray jobjDMN = new JArray();
     jobjDMN = objDM.Post_Direct_Messages_New(oAuth, textMessage, userId);
     return jobjDMN;
 }