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