34 references to ConverterTypeName
System (6)
compmod\system\componentmodel\PropertyDescriptor.cs (3)
92if (attr.ConverterTypeName != null && attr.ConverterTypeName.Length > 0) { 93Type converterType = GetTypeFromName(attr.ConverterTypeName);
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (2)
1635Type converterType = GetTypeFromName(instanceAttr.ConverterTypeName); 1661Type converterType = GetTypeFromName(typeAttr.ConverterTypeName);
compmod\system\componentmodel\TypeConverterAttribute.cs (1)
78return (other != null) && other.ConverterTypeName == typeName;
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (1)
834Type typeConverterType = Type.GetType(typeConverterAttribute.ConverterTypeName);
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
201return (TypeConverter)Activator.CreateInstance(Type.GetType(attribute.ConverterTypeName));
System.Activities.Presentation\System\Activities\Presentation\Model\XamlUtilities.cs (2)
43if (tca != null && tca.ConverterTypeName != null) 45Type type = Type.GetType(tca.ConverterTypeName);
System.Configuration (1)
System\Configuration\ConfigurationProperty.cs (1)
99typeConverter = TypeUtil.CreateInstanceRestricted<TypeConverter>(info.DeclaringType, attribConverter.ConverterTypeName);
System.Data (4)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (1)
834Type typeConverterType = Type.GetType(typeConverterAttribute.ConverterTypeName);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
201return (TypeConverter)Activator.CreateInstance(Type.GetType(attribute.ConverterTypeName));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\XamlUtilities.cs (2)
43if (tca != null && tca.ConverterTypeName != null) 45Type type = Type.GetType(tca.ConverterTypeName);
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (1)
270Type converterType = Type.GetType(converterAttr.ConverterTypeName, false, true);
System.Web (2)
UI\WebParts\WebPartManager.cs (2)
3058Type converterType = WebPartUtil.DeserializeType(attr.ConverterTypeName, false); 4237Type converterType = WebPartUtil.DeserializeType(attr.ConverterTypeName, false);
System.Web.DataVisualization (7)
Common\Utilities\XmlSerializer.cs (7)
1075if (typeConverterAttrib != null && typeConverterAttrib.ConverterTypeName.Length > 0) 1106if (_converterDict.Contains(attr.ConverterTypeName)) 1108return (TypeConverter)_converterDict[attr.ConverterTypeName]; 1110String typeStr = attr.ConverterTypeName; 1112if (attr.ConverterTypeName.Contains(",") ) 1114typeStr = attr.ConverterTypeName.Split(',')[0]; 1153if (result != null) _converterDict[attr.ConverterTypeName] = result;
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (2)
741string converterTypeName = attr.ConverterTypeName; 752Debug.Fail("Failed to create TypeConverter of type '" + attr.ConverterTypeName + "' from Attribute", ex.ToString());
System.Windows.Forms.DataVisualization (7)
Common\Utilities\XmlSerializer.cs (7)
1075if (typeConverterAttrib != null && typeConverterAttrib.ConverterTypeName.Length > 0) 1106if (_converterDict.Contains(attr.ConverterTypeName)) 1108return (TypeConverter)_converterDict[attr.ConverterTypeName]; 1110String typeStr = attr.ConverterTypeName; 1112if (attr.ConverterTypeName.Contains(",") ) 1114typeStr = attr.ConverterTypeName.Split(',')[0]; 1153if (result != null) _converterDict[attr.ConverterTypeName] = result;