ReadNullableAttributeValue<T> method

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

Implementation

T? ReadNullableAttributeValue<T>(String attributeName) {
  String? attributeValue = this.ReadAttributeValue(attributeName);
  if (attributeValue == null) {
    return null;
  } else {
    return EwsUtilities.Parse<T>(attributeValue);
  }
}