System.Runtime.Serialization.Formatters.Soap.SoapAttributeInfo.IsXmlAttribute C# (CSharp) Method

IsXmlAttribute() private method

private IsXmlAttribute ( ) : bool
return bool
		internal bool IsXmlAttribute()
		{
			if ((m_attributeType & SoapAttributeType.XmlAttribute) > 0)
				return true;
			else
				return false;
		}