System.Configuration.HandlerBase.GetAndRemoveStringAttributeInternal C# (CSharp) Метод

GetAndRemoveStringAttributeInternal() приватный статический Метод

private static GetAndRemoveStringAttributeInternal ( XmlNode node, string attrib, bool fRequired, string &val ) : XmlNode
node System.Xml.XmlNode
attrib string
fRequired bool
val string
Результат System.Xml.XmlNode
        private static XmlNode GetAndRemoveStringAttributeInternal(XmlNode node, string attrib, bool fRequired, ref string val) {
            XmlNode a = GetAndRemoveAttribute(node, attrib, fRequired);
            if (a != null)
                val = a.Value;

            return a;
        }