AspectSharp.Builder.XmlEngineBuilder.GetAttribute C# (CSharp) Метод

GetAttribute() приватный Метод

private GetAttribute ( XmlNode node, String key, String defaultValue ) : String
node System.Xml.XmlNode
key String
defaultValue String
Результат String
		private String GetAttribute(XmlNode node, String key, String defaultValue)
		{
			XmlAttribute att = node.Attributes[key];
			if (att == null)
			{
				return defaultValue;
			}
			return att.Value;
		}
	}