LineSharp.Datatypes.TalkService.Client.resendPinCode C# (CSharp) Method

resendPinCode() public method

public resendPinCode ( string sessionId ) : void
sessionId string
return void
      public void resendPinCode(string sessionId)
      {
        #if !SILVERLIGHT
        send_resendPinCode(sessionId);
        recv_resendPinCode();

        #else
        var asyncResult = Begin_resendPinCode(null, null, sessionId);
        End_resendPinCode(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client