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

getResourceAttributes() public method

public getResourceAttributes ( string authenticationToken, string guid ) : Evernote.EDAM.Type.ResourceAttributes
authenticationToken string
guid string
return Evernote.EDAM.Type.ResourceAttributes
      public Evernote.EDAM.Type.ResourceAttributes getResourceAttributes(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getResourceAttributes(authenticationToken, guid);
        return recv_getResourceAttributes();

        #else
        var asyncResult = Begin_getResourceAttributes(null, null, authenticationToken, guid);
        return End_getResourceAttributes(asyncResult);

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