ReadAttributeValue<T> method

T? ReadAttributeValue<T>(
  1. String attributeName
)
Reads the attribute value. Name of the attribute.

Implementation

T? ReadAttributeValue<T>(String attributeName) {
  return EwsUtilities.Parse<T>(this.ReadAttributeStringValue(attributeName));
}