コード例 #1
0
ファイル: XmlElementItem.cs プロジェクト: BlueSkeye/ApkRe
        internal override bool StartEndMatch(XmlTreeItem candidate)
        {
            XmlElementItem other = candidate as XmlElementItem;

            if (null == other) { return false; }
            if (other.Name != this.Name) { return false; }
            if (other.Namespace != this.Namespace) { return false; }
            return true;
        }
コード例 #2
0
ファイル: XmlNamespaceItem.cs プロジェクト: BlueSkeye/ApkRe
        internal override bool StartEndMatch(XmlTreeItem candidate)
        {
            XmlNamespaceItem other = candidate as XmlNamespaceItem;

            if (null == other) { return false; }
            if (other.Prefix != this.Prefix) { return false; }
            if (other.Uri != this.Uri) { return false; }
            return true;
        }
コード例 #3
0
ファイル: XmlTreeItem.cs プロジェクト: BlueSkeye/ApkRe
 internal abstract bool StartEndMatch(XmlTreeItem candidate);