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

IsAttributeNameSpace() private method

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

            if ((typeAttributeInfo != null) && (typeAttributeInfo.m_nameSpace != null))
                return true;
            else
                return false;
        }

Usage Example

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

            if ((typeAttributeInfo != null) && (typeAttributeInfo.m_nameSpace != null))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
All Usage Examples Of System.Runtime.Serialization.Formatters.Soap.WriteObjectInfo::IsAttributeNameSpace