public static ITunesImageElement TryCreate(XElementHost host)
 {
     var node = host.SelectSingleElement("image");
     return node == null ? null : new ITunesImageElement(node);
 }
Esempio n. 2
0
                internal static CategoryNode TryCreate(XElementHost host)
                {
                    var categoryNode = host.SelectSingleElement("category");

                    return categoryNode == null ? null : new CategoryNode(categoryNode);
                }