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