System.Runtime.Remoting.SoapServices.GetInteropFieldTypeAndNameFromXmlAttribute C# (CSharp) Method

GetInteropFieldTypeAndNameFromXmlAttribute() public static method

public static GetInteropFieldTypeAndNameFromXmlAttribute ( Type containingType, String xmlAttribute, String xmlNamespace, Type &type, String &name ) : void
containingType System.Type
xmlAttribute String
xmlNamespace String
type System.Type
name String
return void
        public static void GetInteropFieldTypeAndNameFromXmlAttribute(Type containingType,
            String xmlAttribute, String xmlNamespace,
            out Type type, out String name)
        {
            if (containingType == null)
            {
                type = null;
                name = null;
                return;
            }
        
            XmlToFieldTypeMap map = (XmlToFieldTypeMap)_xmlToFieldTypeMap[containingType];
            if (map != null)
            {
                map.GetFieldTypeAndNameFromXmlAttribute(xmlAttribute, xmlNamespace,
                                                        out type, out name);
            }
            else
            {
                type = null;
                name = null;
            }
        } // GetInteropFieldTypeFromXmlAttribute