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

getAccountSize() public method

public getAccountSize ( string authenticationToken ) : long
authenticationToken string
return long
      public long getAccountSize(string authenticationToken)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getAccountSize(authenticationToken);
        return recv_getAccountSize();

        #else
        var asyncResult = Begin_getAccountSize(null, null, authenticationToken);
        return End_getAccountSize(asyncResult);

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