18 instantiations of CustomAttributeNamedArgument
mscorlib (18)
system\reflection\customattribute.cs (18)
423new CustomAttributeNamedArgument(type.GetField("EntryPoint"), dllImport.EntryPoint), 424new CustomAttributeNamedArgument(type.GetField("CharSet"), dllImport.CharSet), 425new CustomAttributeNamedArgument(type.GetField("ExactSpelling"), dllImport.ExactSpelling), 426new CustomAttributeNamedArgument(type.GetField("SetLastError"), dllImport.SetLastError), 427new CustomAttributeNamedArgument(type.GetField("PreserveSig"), dllImport.PreserveSig), 428new CustomAttributeNamedArgument(type.GetField("CallingConvention"), dllImport.CallingConvention), 429new CustomAttributeNamedArgument(type.GetField("BestFitMapping"), dllImport.BestFitMapping), 430new CustomAttributeNamedArgument(type.GetField("ThrowOnUnmappableChar"), dllImport.ThrowOnUnmappableChar) 463namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("ArraySubType"), marshalAs.ArraySubType); 464namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("SizeParamIndex"), marshalAs.SizeParamIndex); 465namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("SizeConst"), marshalAs.SizeConst); 466namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("IidParameterIndex"), marshalAs.IidParameterIndex); 467namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("SafeArraySubType"), marshalAs.SafeArraySubType); 469namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("MarshalType"), marshalAs.MarshalType); 471namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("MarshalTypeRef"), marshalAs.MarshalTypeRef); 473namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("MarshalCookie"), marshalAs.MarshalCookie); 475namedArgs[i++] = new CustomAttributeNamedArgument(type.GetField("SafeArrayUserDefinedSubType"), marshalAs.SafeArrayUserDefinedSubType); 574namedArgs[j++] = new CustomAttributeNamedArgument(
22 references to CustomAttributeNamedArgument
mscorlib (20)
system\diagnostics\eventing\eventsource.cs (1)
3183foreach (CustomAttributeNamedArgument namedArgument in data.NamedArguments)
system\internal.cs (1)
153SZArrayHelper<CustomAttributeNamedArgument>(null);
system\reflection\customattribute.cs (15)
361private IList<CustomAttributeNamedArgument> m_namedArgs; 421m_namedArgs = Array.AsReadOnly(new CustomAttributeNamedArgument[] 440m_namedArgs = Array.AsReadOnly(new CustomAttributeNamedArgument[0]); 458CustomAttributeNamedArgument[] namedArgs = new CustomAttributeNamedArgument[i]; 490CustomAttributeNamedArgument[] namedArgs = new CustomAttributeNamedArgument[0]; 497m_namedArgs = Array.AsReadOnly(new CustomAttributeNamedArgument[0]); 553public virtual IList<CustomAttributeNamedArgument> NamedArguments 569CustomAttributeNamedArgument[] namedArgs = new CustomAttributeNamedArgument[cNamedArgs]; 592public static bool operator ==(CustomAttributeNamedArgument left, CustomAttributeNamedArgument right) 596public static bool operator !=(CustomAttributeNamedArgument left, CustomAttributeNamedArgument right)
system\runtime\compilerservices\customconstantattribute.cs (1)
20foreach (CustomAttributeNamedArgument namedArgument in attr.NamedArguments)
system\runtime\compilerservices\datetimeconstantattribute.cs (1)
34foreach (CustomAttributeNamedArgument namedArgument in attr.NamedArguments)
system\runtime\compilerservices\decimalconstantattribute.cs (1)
56foreach (CustomAttributeNamedArgument namedArgument in attr.NamedArguments)
System.AddIn (1)
System\Addin\Hosting\InspectionWorker.cs (1)
278foreach(CustomAttributeNamedArgument cana in cad.NamedArguments)
System.Web (1)
Compilation\TemplateControlCodeDomTreeGenerator.cs (1)
304foreach (var arg in attr.NamedArguments) {