64 references to NotSupported_SignatureType
System.Private.CoreLib (64)
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureGenericParameterType.cs (2)
22
public sealed override bool IsEnum => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
30
protected sealed override bool IsValueTypeImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (62)
54
public sealed override Type MakeGenericType(params Type[] typeArguments) => throw new NotSupportedException(SR.
NotSupported_SignatureType
); // There is no SignatureType for type definition types so it would never be legal to call this.
81
public sealed override Assembly Assembly => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
82
public sealed override Module Module => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
84
public sealed override Type ReflectedType => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
85
public sealed override Type BaseType => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
88
public sealed override Type[] GetInterfaces() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
89
public sealed override bool IsAssignableFrom([NotNullWhen(true)] Type? c) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
90
public sealed override int MetadataToken => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
91
public sealed override bool HasSameMetadataDefinitionAs(MemberInfo other) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
93
public sealed override Type DeclaringType => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
94
public sealed override MethodBase DeclaringMethod => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
96
public sealed override Type[] GetGenericParameterConstraints() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
97
public sealed override GenericParameterAttributes GenericParameterAttributes => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
98
public sealed override bool IsEnumDefined(object value) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
99
public sealed override string GetEnumName(object value) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
100
public sealed override string[] GetEnumNames() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
101
public sealed override Type GetEnumUnderlyingType() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
103
public sealed override Array GetEnumValues() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
104
public sealed override Guid GUID => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
105
protected sealed override TypeCode GetTypeCodeImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
106
protected sealed override TypeAttributes GetAttributeFlagsImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
109
public sealed override ConstructorInfo[] GetConstructors(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
112
public sealed override EventInfo GetEvent(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
115
public sealed override EventInfo[] GetEvents(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
118
public sealed override FieldInfo GetField(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
121
public sealed override FieldInfo[] GetFields(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
124
public sealed override MemberInfo[] GetMembers(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
127
public sealed override MethodInfo[] GetMethods(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
130
public sealed override Type GetNestedType(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
133
public sealed override Type[] GetNestedTypes(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
136
public sealed override PropertyInfo[] GetProperties(BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
139
public sealed override object InvokeMember(string name, BindingFlags invokeAttr, Binder? binder, object? target, object?[]? args, ParameterModifier[]? modifiers, CultureInfo? culture, string[]? namedParameters) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
142
protected sealed override MethodInfo GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
145
protected sealed override MethodInfo GetMethodImpl(string name, int genericParameterCount, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
148
protected sealed override PropertyInfo GetPropertyImpl(string name, BindingFlags bindingAttr, Binder? binder, Type? returnType, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
151
public sealed override MemberInfo[] FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter? filter, object? filterCriteria) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
154
public sealed override MemberInfo[] GetMember(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
157
public sealed override MemberInfo[] GetMember(string name, MemberTypes type, BindingFlags bindingAttr) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
166
public sealed override MemberInfo[] GetDefaultMembers() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
169
public sealed override EventInfo[] GetEvents() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
171
public sealed override object[] GetCustomAttributes(bool inherit) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
172
public sealed override object[] GetCustomAttributes(Type attributeType, bool inherit) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
173
public sealed override bool IsDefined(Type attributeType, bool inherit) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
174
public sealed override IList<CustomAttributeData> GetCustomAttributesData() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
178
public sealed override Type GetInterface(string name, bool ignoreCase) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
181
protected sealed override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
183
protected sealed override bool IsCOMObjectImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
184
protected sealed override bool IsPrimitiveImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
185
public sealed override IEnumerable<CustomAttributeData> CustomAttributes => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
188
public sealed override Type[] FindInterfaces(TypeFilter filter, object? filterCriteria) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
189
public sealed override InterfaceMapping GetInterfaceMap([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
190
protected sealed override bool IsContextfulImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
192
public sealed override bool IsEquivalentTo([NotNullWhen(true)] Type? other) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
193
public sealed override bool IsInstanceOfType([NotNullWhen(true)] object? o) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
194
protected sealed override bool IsMarshalByRefImpl() => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
195
public sealed override bool IsSecurityCritical => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
196
public sealed override bool IsSecuritySafeCritical => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
197
public sealed override bool IsSecurityTransparent => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
199
public sealed override bool IsSerializable => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
200
public sealed override bool IsSubclassOf(Type c) => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
203
public sealed override StructLayoutAttribute StructLayoutAttribute => throw new NotSupportedException(SR.
NotSupported_SignatureType
);
205
public sealed override RuntimeTypeHandle TypeHandle => throw new NotSupportedException(SR.
NotSupported_SignatureType
);