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