System.Runtime.Serialization.ExtensionDataReader.MoveToAttribute C# (CSharp) Method

MoveToAttribute() public method

public MoveToAttribute ( string name ) : bool
name string
return bool
        public override bool MoveToAttribute(string name)
        {
            if (IsXmlDataNode)
            {
                return _xmlNodeReader.MoveToAttribute(name);
            }
            Fx.Assert("ExtensionDataReader MoveToAttribute method should only be called for IXmlSerializable");
            return false;
        }

Same methods

ExtensionDataReader::MoveToAttribute ( string name, string namespaceURI ) : bool
ExtensionDataReader::MoveToAttribute ( int index ) : void