public static Uri ParseUri(this XText e) { var uri = e.ParseString(); try { if (String.IsNullOrEmpty(uri)) { return(null); } return(new Uri(uri)); } catch (UriFormatException) { return(null); } }