ReadValue<T> method

Future<T?> ReadValue<T>()
Reads the value.

Implementation

Future<T?> ReadValue<T>() async {
  return EwsUtilities.Parse<T>(await this.ReadStringValue());
}