Example #1
0
        protected void HandleCollectionTypeElement(XmlReader reader)
        {
            CollectionTypeElement collectionTypeElement = new CollectionTypeElement((SchemaElement)this);

            collectionTypeElement.Parse(reader);
            this._typeSubElement = (ModelFunctionTypeElement)collectionTypeElement;
        }
Example #2
0
        protected void HandleCollectionTypeElement(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var subElement = new CollectionTypeElement(this);

            subElement.Parse(reader);
            _typeSubElement = subElement;
        }
        protected void HandleCollectionTypeElement(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var subElement = new CollectionTypeElement(this);
            subElement.Parse(reader);
            _typeSubElement = subElement;
        }