System.Xml.Xsl.IlGen.IteratorDescriptor.SetIterator C# (CSharp) Méthode

SetIterator() public méthode

Set this iterator to be the same as the specified iterator.
public SetIterator ( IteratorDescriptor iterInfo ) : void
iterInfo IteratorDescriptor
Résultat 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