System.Xml.Xsl.IlGen.IteratorDescriptor.SetIterator C# (CSharp) Метод

SetIterator() публичный Метод

Set this iterator to be the same as the specified iterator.
public SetIterator ( IteratorDescriptor iterInfo ) : void
iterInfo IteratorDescriptor
Результат 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