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

send_authenticateToSharedNote() public method

public send_authenticateToSharedNote ( string guid, string noteKey ) : void
guid string
noteKey string
return void
      public void send_authenticateToSharedNote(string guid, string noteKey)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("authenticateToSharedNote", TMessageType.Call, seqid_));
        authenticateToSharedNote_args args = new authenticateToSharedNote_args();
        args.Guid = guid;
        args.NoteKey = noteKey;
        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_authenticateToSharedNote ( AsyncCallback callback, object state, string guid, string noteKey ) : IAsyncResult
NoteStore.Client