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

send_getPublicNotebook() public method

public send_getPublicNotebook ( int userId, string publicUri ) : void
userId int
publicUri string
return void
      public void send_getPublicNotebook(int userId, string publicUri)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getPublicNotebook", TMessageType.Call, seqid_));
        getPublicNotebook_args args = new getPublicNotebook_args();
        args.UserId = userId;
        args.PublicUri = publicUri;
        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_getPublicNotebook ( AsyncCallback callback, object state, int userId, string publicUri ) : IAsyncResult
NoteStore.Client