System.Runtime.Serialization.Formatters.Soap.WriteObjectInfo.IsCustomXmlAttribute C# (CSharp) Method

IsCustomXmlAttribute() private method

private IsCustomXmlAttribute ( ) : bool
return bool
        internal bool IsCustomXmlAttribute()
        {
            if (arrayElemObjectInfo != null)
                return arrayElemObjectInfo.IsCustomXmlAttribute();

            if ((typeAttributeInfo != null) &&
                ((typeAttributeInfo.m_attributeType & SoapAttributeType.XmlAttribute) != 0))
                return true;
            else
                return false;
        }

Usage Example

Example #1
0
        internal bool IsCustomXmlAttribute()
        {
            if (arrayElemObjectInfo != null)
            {
                return(arrayElemObjectInfo.IsCustomXmlAttribute());
            }

            if ((typeAttributeInfo != null) &&
                ((typeAttributeInfo.m_attributeType & SoapAttributeType.XmlAttribute) != 0))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
All Usage Examples Of System.Runtime.Serialization.Formatters.Soap.WriteObjectInfo::IsCustomXmlAttribute