Evernote.EDAM.NoteStore.NoteStore.Client.send_authenticateToSharedNotebook C# (CSharp) Method

send_authenticateToSharedNotebook() public method

public send_authenticateToSharedNotebook ( string shareKey, string authenticationToken ) : void
shareKey string
authenticationToken string
return void
      public void send_authenticateToSharedNotebook(string shareKey, string authenticationToken)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("authenticateToSharedNotebook", TMessageType.Call, seqid_));
        authenticateToSharedNotebook_args args = new authenticateToSharedNotebook_args();
        args.ShareKey = shareKey;
        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

NoteStore.Client::send_authenticateToSharedNotebook ( AsyncCallback callback, object state, string shareKey, string authenticationToken ) : IAsyncResult
NoteStore.Client