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

changeVerificationMethod() public method

public changeVerificationMethod ( string sessionId, VerificationMethod method ) : VerificationSessionData
sessionId string
method VerificationMethod
return VerificationSessionData
      public VerificationSessionData changeVerificationMethod(string sessionId, VerificationMethod method)
      {
        #if !SILVERLIGHT
        send_changeVerificationMethod(sessionId, method);
        return recv_changeVerificationMethod();

        #else
        var asyncResult = Begin_changeVerificationMethod(null, null, sessionId, method);
        return End_changeVerificationMethod(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client