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