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

listSharedNotebooks() public method

public listSharedNotebooks ( string authenticationToken ) : List
authenticationToken string
return List
      public List<Evernote.EDAM.Type.SharedNotebook> listSharedNotebooks(string authenticationToken)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_listSharedNotebooks(authenticationToken);
        return recv_listSharedNotebooks();

        #else
        var asyncResult = Begin_listSharedNotebooks(null, null, authenticationToken);
        return End_listSharedNotebooks(asyncResult);

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