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