Evernote.EDAM.UserStore.UserStore.Client.send_refreshAuthentication C# (CSharp) Method

send_refreshAuthentication() public method

public send_refreshAuthentication ( string authenticationToken ) : void
authenticationToken string
return void
      public void send_refreshAuthentication(string authenticationToken)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("refreshAuthentication", TMessageType.Call, seqid_));
        refreshAuthentication_args args = new refreshAuthentication_args();
        args.AuthenticationToken = authenticationToken;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT || NETFX_CORE
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

UserStore.Client::send_refreshAuthentication ( AsyncCallback callback, object state, string authenticationToken ) : IAsyncResult