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

updateLinkedNotebook() public method

public updateLinkedNotebook ( string authenticationToken, Evernote linkedNotebook ) : int
authenticationToken string
linkedNotebook Evernote
return int
      public int updateLinkedNotebook(string authenticationToken, Evernote.EDAM.Type.LinkedNotebook linkedNotebook)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_updateLinkedNotebook(authenticationToken, linkedNotebook);
        return recv_updateLinkedNotebook();

        #else
        var asyncResult = Begin_updateLinkedNotebook(null, null, authenticationToken, linkedNotebook);
        return End_updateLinkedNotebook(asyncResult);

        #endif
      }
      #if SILVERLIGHT || NETFX_CORE
NoteStore.Client