System.Xml.Xsl.XsltOld.ReaderOutput.MoveToAttribute C# (CSharp) Method

MoveToAttribute() public method

public MoveToAttribute ( string name ) : bool
name string
return bool
        public override bool MoveToAttribute(string name) {
            int ordinal;
            if (FindAttribute(name, out ordinal)) {
                Debug.Assert(ordinal >= 0);
                SetAttribute(ordinal);
                return true;
            }
            else {
                Debug.Assert(ordinal == -1);
                return false;
            }
        }

Same methods

ReaderOutput::MoveToAttribute ( string localName, string namespaceURI ) : bool
ReaderOutput::MoveToAttribute ( int i ) : void