1 write to _type
System (1)
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1449_type = type;
25 references to _type
System (25)
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (25)
1476TypeDescriptor.Trace("Attributes : Building collection for {0}", _type.Name); 1510Attribute[] attrArray = ReflectTypeDescriptionProvider.ReflectGetAttributes(_type); 1511Type baseType = _type.BaseType; 1527Type[] interfaces = _type.GetInterfaces(); 1585return _type.FullName; 1631typeAttr = (TypeConverterAttribute)TypeDescriptor.GetAttributes(_type)[typeof(TypeConverterAttribute)]; 1640return (TypeConverter)ReflectTypeDescriptionProvider.CreateInstance(converterType, _type); 1652TypeDescriptor.Trace("Converters : Building converter for {0}", _type.Name); 1656typeAttr = (TypeConverterAttribute)TypeDescriptor.GetAttributes(_type)[typeof(TypeConverterAttribute)]; 1666_converter = (TypeConverter)ReflectTypeDescriptionProvider.CreateInstance(converterType, _type); 1678_converter = (TypeConverter)ReflectTypeDescriptionProvider.SearchIntrinsicTable(IntrinsicTypeConverters, _type); 1700attributes = TypeDescriptor.GetAttributes(_type); 1712return TypeDescriptor.GetEvents(_type)[attr.Name]; 1732attributes = TypeDescriptor.GetAttributes(_type); 1744return TypeDescriptor.GetProperties(_type)[attr.Name]; 1766typeAttr = GetEditorAttribute(TypeDescriptor.GetAttributes(_type), editorBaseType); 1773return ReflectTypeDescriptionProvider.CreateInstance(editorType, _type); 1795typeAttr = GetEditorAttribute(TypeDescriptor.GetAttributes(_type), editorBaseType); 1801editor = ReflectTypeDescriptionProvider.CreateInstance(editorType, _type); 1812editor = ReflectTypeDescriptionProvider.SearchIntrinsicTable(intrinsicEditors, _type); 1886TypeDescriptor.Trace("Events : Building collection for {0}", _type.Name); 1890Type baseType = _type; 1923TypeDescriptor.Trace("Properties : Building collection for {0}", _type.Name); 1927Type baseType = _type; 1967t = _type.Assembly.GetType(typeName);