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

send_getSharedNotebookByAuth() public method

public send_getSharedNotebookByAuth ( string authenticationToken ) : void
authenticationToken string
return void
      public void send_getSharedNotebookByAuth(string authenticationToken)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getSharedNotebookByAuth", TMessageType.Call, seqid_));
        getSharedNotebookByAuth_args args = new getSharedNotebookByAuth_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

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