LineSharp.Datatypes.TalkService.Client.resendPinCode C# (CSharp) 메소드

resendPinCode() 공개 메소드

public resendPinCode ( string sessionId ) : void
sessionId string
리턴 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