System.Xml.Xsl.IlGen.IteratorDescriptor.SetIterator C# (CSharp) Method

SetIterator() public method

Set this iterator to be the same as the specified iterator.
public SetIterator ( IteratorDescriptor iterInfo ) : void
iterInfo IteratorDescriptor
return void
        public void SetIterator(IteratorDescriptor iterInfo) {
            if (iterInfo.HasLabelNext) {
                this.lblNext = iterInfo.GetLabelNext();
                this.hasNext = true;
            }

            this.storage = iterInfo.Storage;
        }

Same methods

IteratorDescriptor::SetIterator ( Label lblNext, StorageDescriptor storage ) : void