6 instantiations of RuntimeParameterInfo
mscorlib (6)
system\reflection\emit\dynamicmethod.cs (1)
1001parameters[i] = new RuntimeParameterInfo(this, null, parameterTypes[i], i);
system\reflection\parameterinfo.cs (4)
330returnParameter = new RuntimeParameterInfo(sig, scope, tkParamDef, position, attr, member); 338args[position] = new RuntimeParameterInfo(sig, scope, tkParamDef, position, attr, member); 349returnParameter = new RuntimeParameterInfo(sig, MetadataImport.EmptyImport, 0, -1, (ParameterAttributes)0, member); 361args[i] = new RuntimeParameterInfo(sig, MetadataImport.EmptyImport, 0, i, (ParameterAttributes)0, member);
system\reflection\propertyinfo.cs (1)
580propParams[i] = new RuntimeParameterInfo((RuntimeParameterInfo)methParams[i], this);
27 references to RuntimeParameterInfo
mscorlib (27)
system\reflection\ConstructorInfo.cs (1)
486m_parameters = RuntimeParameterInfo.GetParameters(this, this, Signature);
system\reflection\customattribute.cs (6)
196internal static IList<CustomAttributeData> GetCustomAttributesInternal(RuntimeParameterInfo target) 1293internal static bool IsDefined(RuntimeParameterInfo parameter, RuntimeType caType) 1426private static bool AllowCriticalCustomAttributes(RuntimeParameterInfo parameter) 1541internal static Object[] GetCustomAttributes(RuntimeParameterInfo parameter, RuntimeType caType) 2318internal static Attribute[] GetCustomAttributes(RuntimeParameterInfo parameter, RuntimeType caType, out int count) 2355internal static bool IsDefined(RuntimeParameterInfo parameter, RuntimeType caType)
system\reflection\methodinfo.cs (2)
321m_parameters = RuntimeParameterInfo.GetParameters(this, this, Signature); 330m_returnParameter = RuntimeParameterInfo.GetReturnParameter(this, this, Signature);
system\reflection\parameterinfo.cs (4)
121RuntimeParameterInfo rtParam = this as RuntimeParameterInfo; 443internal RuntimeParameterInfo(RuntimeParameterInfo accessor, RuntimePropertyInfo property) 449private RuntimeParameterInfo(RuntimeParameterInfo accessor, MemberInfo member)
system\reflection\propertyinfo.cs (1)
580propParams[i] = new RuntimeParameterInfo((RuntimeParameterInfo)methParams[i], this);
system\runtime\interopservices\attributes.cs (8)
530internal static Attribute GetCustomAttribute(RuntimeParameterInfo parameter) 536internal static bool IsDefined(RuntimeParameterInfo parameter) 697internal static Attribute GetCustomAttribute(RuntimeParameterInfo parameter) 701internal static bool IsDefined(RuntimeParameterInfo parameter) 715internal static Attribute GetCustomAttribute(RuntimeParameterInfo parameter) 719internal static bool IsDefined(RuntimeParameterInfo parameter) 733internal static Attribute GetCustomAttribute(RuntimeParameterInfo parameter) 737internal static bool IsDefined(RuntimeParameterInfo parameter)
system\runtime\remoting\remotingattributes.cs (2)
86private RuntimeParameterInfo RI; // reflection structure on which this data structure is stored 88internal RemotingParameterCachedData(RuntimeParameterInfo ri)
system\runtime\remoting\remotingservices.cs (3)
2835internal static RemotingCachedData GetReflectionCachedData(RuntimeParameterInfo reflectionObject) 2845RuntimeParameterInfo parameter = reflectionObject as RuntimeParameterInfo;