System.Runtime.Serialization.Formatters.Soap.WriteObjectInfo.IsCustomXmlElement C# (CSharp) Méthode

IsCustomXmlElement() private méthode

private IsCustomXmlElement ( ) : bool
Résultat bool
        internal bool IsCustomXmlElement()
        {
            if (arrayElemObjectInfo != null)
                return arrayElemObjectInfo.IsCustomXmlElement();

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

Usage Example

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

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