Example #1
0
 public static Task <double> ReadElementContentAsDoubleAsync([NotNull] this XmlReader reader) => reader.ReadElementContentAsTypeAsync <double>();
Example #2
0
 public static Task <bool> ReadElementContentAsBooleanAsync([NotNull] this XmlReader reader) => reader.ReadElementContentAsTypeAsync <bool>();
Example #3
0
 public static Task <int> ReadElementContentAsIntAsync([NotNull] this XmlReader reader) => reader.ReadElementContentAsTypeAsync <int>();