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