Sage.Integration.Northwind.Application.Base.RTDVField.GetXmlQualifiedName C# (CSharp) Method

GetXmlQualifiedName() private method

private GetXmlQualifiedName ( ) : XmlQualifiedName
return System.Xml.XmlQualifiedName
        private XmlQualifiedName GetXmlQualifiedName()
        {
            switch (_typeCode)
            {
                case TypeCode.Boolean:
                    return new XmlQualifiedName("boolean", "http://www.w3.org/2001/XMLSchema");
                case TypeCode.DateTime:
                    return new XmlQualifiedName("dateTime", "http://www.w3.org/2001/XMLSchema");
                case TypeCode.Decimal:
                    return new XmlQualifiedName("decimal", "http://www.w3.org/2001/XMLSchema");
                case TypeCode.Double:
                    return new XmlQualifiedName("double", "http://www.w3.org/2001/XMLSchema");
                case TypeCode.Int32:
                    return new XmlQualifiedName("int", "http://www.w3.org/2001/XMLSchema");
                case TypeCode.Int16:
                    return new XmlQualifiedName("short", "http://www.w3.org/2001/XMLSchema");
                case TypeCode.String:
                    return  new XmlQualifiedName("varchar", "http://www.w3.org/2001/XMLSchema");
                    //return  new XmlQualifiedName("multitext", "http://www.w3.org/2001/XMLSchema");
                default:
                    //return new XmlQualifiedName("text", "http://www.w3.org/2001/XMLSchema");
                    return new XmlQualifiedName("varchar", "http://www.w3.org/2001/XMLSchema");
            }
        }