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

getNoteApplicationData() public method

public getNoteApplicationData ( string authenticationToken, string guid ) : Evernote.EDAM.Type.LazyMap
authenticationToken string
guid string
return Evernote.EDAM.Type.LazyMap
      public Evernote.EDAM.Type.LazyMap getNoteApplicationData(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getNoteApplicationData(authenticationToken, guid);
        return recv_getNoteApplicationData();

        #else
        var asyncResult = Begin_getNoteApplicationData(null, null, authenticationToken, guid);
        return End_getNoteApplicationData(asyncResult);

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