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

getSharedNotebookByAuth() public method

public getSharedNotebookByAuth ( string authenticationToken ) : Evernote.EDAM.Type.SharedNotebook
authenticationToken string
return Evernote.EDAM.Type.SharedNotebook
      public Evernote.EDAM.Type.SharedNotebook getSharedNotebookByAuth(string authenticationToken)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getSharedNotebookByAuth(authenticationToken);
        return recv_getSharedNotebookByAuth();

        #else
        var asyncResult = Begin_getSharedNotebookByAuth(null, null, authenticationToken);
        return End_getSharedNotebookByAuth(asyncResult);

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