Evernote.EDAM.NoteStore.NoteStore.Client.getResourceData C# (CSharp) 메소드

getResourceData() 공개 메소드

public getResourceData ( string authenticationToken, string guid ) : byte[]
authenticationToken string
guid string
리턴 byte[]
      public byte[] getResourceData(string authenticationToken, string guid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getResourceData(authenticationToken, guid);
        return recv_getResourceData();

        #else
        var asyncResult = Begin_getResourceData(null, null, authenticationToken, guid);
        return End_getResourceData(asyncResult);

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