14 references to GetReflectionTypeHelper
System.Windows.Forms.Design (14)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (10)
551f = GetReflectionTypeHelper(manager, lhs).GetField(fieldReferenceEx.FieldName, BindingFlags.GetField | BindingFlags.Instance | BindingFlags.Public); 736MethodInfo? mi = GetReflectionTypeHelper(manager, target).GetMethod(methodRef.MethodName, paramTypes); 811field = GetReflectionTypeHelper(manager, target).GetField(fieldReferenceEx.FieldName, BindingFlags.GetField | BindingFlags.Instance | BindingFlags.Public); 875result = GetReflectionTypeHelper(manager, targetObject).InvokeMember(methodInvokeEx.Method.MethodName, BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance, null, targetObject, parameters, null, null, null); 1122result = GetReflectionTypeHelper(manager, targetObject).InvokeMember("Item", BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance, null, targetObject, indexes, null, null, null); 1511PropertyInfo? propInfo = GetReflectionTypeHelper(manager, target).GetProperty(propertyReferenceEx.PropertyName, BindingFlags.GetProperty | BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic); 1530string? typeName = targetAsType is not null ? targetAsType.FullName : GetReflectionTypeHelper(manager, target).FullName; 1912if (GetReflectionTypeHelper(manager, value).IsSerializable && (value as IComponent)?.Site is null) 1924ConstructorInfo? ctor = GetReflectionTypeHelper(manager, value).GetConstructor([]); 2066Type targetType = GetReflectionTypeHelper(manager, value);
System\ComponentModel\Design\Serialization\ComponentCodeDomSerializer.cs (3)
262ctor = GetReflectionTypeHelper(manager, value).GetConstructor( 329reflectionType = GetReflectionTypeHelper(manager, value); 342reflectionType ??= GetReflectionTypeHelper(manager, value);
System\ComponentModel\Design\Serialization\LocalizationCodeDomSerializer.cs (1)
69bool isSerializable = value is null || GetReflectionTypeHelper(manager, value).IsSerializable;