Rhino.Xmlimpl.XMLName.LocalName C# (CSharp) Method

LocalName() private method

private LocalName ( ) : string
return string
		internal virtual string LocalName()
		{
			if (qname.GetLocalName() == null)
			{
				return "*";
			}
			return qname.GetLocalName();
		}

Usage Example

Example #1
0
		internal override bool HasOwnProperty(XMLName xmlName)
		{
			bool hasProperty = false;
			if (IsPrototype())
			{
				string property = xmlName.LocalName();
				hasProperty = (0 != FindPrototypeId(property));
			}
			else
			{
				hasProperty = (GetPropertyList(xmlName).Length() > 0);
			}
			return hasProperty;
		}
All Usage Examples Of Rhino.Xmlimpl.XMLName::LocalName