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