ReadAttributeStringValue method

String? ReadAttributeStringValue(
  1. String attributeName
)
Reads the attribute value. Name of the attribute.

Implementation

String? ReadAttributeStringValue(String attributeName) {
  return this._xmlReader.GetAttribute(attributeName);
}