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

send_getNotebook() public method

public send_getNotebook ( string authenticationToken, string guid ) : void
authenticationToken string
guid string
return void
      public void send_getNotebook(string authenticationToken, string guid)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getNotebook", TMessageType.Call, seqid_));
        getNotebook_args args = new getNotebook_args();
        args.AuthenticationToken = authenticationToken;
        args.Guid = guid;
        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_getNotebook ( AsyncCallback callback, object state, string authenticationToken, string guid ) : IAsyncResult
NoteStore.Client