コード例 #1
0
 public static XDocument ReadXmlOrDefault(this TextReader w, Func <XDocument> xml)
 {
     return(Xml.ReadOrDefault(w, xml));
 }
コード例 #2
0
 public static XDocument ReadXmlOrDefault(this Stream s, Func <XDocument> xml)
 {
     return(Xml.ReadOrDefault(s, xml));
 }
コード例 #3
0
 public static XDocument ReadXmlOrDefault(this TextReader w)
 {
     return(Xml.ReadOrDefault(w));
 }
コード例 #4
0
 public static XDocument ReadXmlOrDefault(this Stream s)
 {
     return(Xml.ReadOrDefault(s));
 }