9 instantiations of CustomAttributeTypedArgument
mscorlib (9)
system\reflection\customattribute.cs (9)
350return new CustomAttributeTypedArgument(); 418new CustomAttributeTypedArgument(dllImport.Value), 438new CustomAttributeTypedArgument(fieldOffset.Value) 448new CustomAttributeTypedArgument(marshalAs.Value), 487typedArgs[0] = new CustomAttributeTypedArgument(typeof(Type), forwardedTo.Destination); 543typedCtorArgs[i] = new CustomAttributeTypedArgument(m_scope, m_ctorParams[i].CustomAttributeEncodedArgument); 575m_members[i], new CustomAttributeTypedArgument(m_scope, m_namedParams[i].EncodedArgument)); 625m_value = new CustomAttributeTypedArgument(type, value); 897arrayValue[i] = new CustomAttributeTypedArgument(scope, encodedArg.ArrayValue[i]);
41 references to CustomAttributeTypedArgument
mscorlib (27)
system\internal.cs (1)
152SZArrayHelper<CustomAttributeTypedArgument>(null);
system\reflection\customattribute.cs (22)
340internal static CustomAttributeTypedArgument Filter(IList<CustomAttributeData> attrs, Type caType, int parameter) 360private IList<CustomAttributeTypedArgument> m_typedCtorArgs; 416m_typedCtorArgs = Array.AsReadOnly(new CustomAttributeTypedArgument[] 437m_typedCtorArgs = Array.AsReadOnly(new CustomAttributeTypedArgument[] { 446m_typedCtorArgs = Array.AsReadOnly(new CustomAttributeTypedArgument[] 486CustomAttributeTypedArgument[] typedArgs = new CustomAttributeTypedArgument[1]; 496m_typedCtorArgs = Array.AsReadOnly(new CustomAttributeTypedArgument[0]); 531public virtual IList<CustomAttributeTypedArgument> ConstructorArguments 537CustomAttributeTypedArgument[] typedCtorArgs = new CustomAttributeTypedArgument[m_ctorParams.Length]; 604private CustomAttributeTypedArgument m_value; 628public CustomAttributeNamedArgument(MemberInfo memberInfo, CustomAttributeTypedArgument typedArgument) 670public CustomAttributeTypedArgument TypedValue { get { return m_value; } } 682public static bool operator ==(CustomAttributeTypedArgument left, CustomAttributeTypedArgument right) 686public static bool operator !=(CustomAttributeTypedArgument left, CustomAttributeTypedArgument right) 895CustomAttributeTypedArgument[] arrayValue = new CustomAttributeTypedArgument[encodedArg.ArrayValue.Length]; 936IList<CustomAttributeTypedArgument> array = Value as IList<CustomAttributeTypedArgument>;
system\reflection\parameterinfo.cs (1)
621CustomAttributeTypedArgument value =
system\runtime\compilerservices\decimalconstantattribute.cs (1)
69System.Collections.Generic.IList<CustomAttributeTypedArgument> args = attr.ConstructorArguments;
system\runtime\interopservices\marshal.cs (2)
2361IList<CustomAttributeTypedArgument> caConstructorArgs = cas[i].ConstructorArguments; 2364CustomAttributeTypedArgument progIdConstructorArg = caConstructorArgs[0];
PresentationBuildTasks (6)
Framework\System\Windows\Markup\XmlnsCache.cs (4)
254IList<CustomAttributeTypedArgument> constructorArguments = data.ConstructorArguments; 257CustomAttributeTypedArgument tca = constructorArguments[i]; 274IList<CustomAttributeTypedArgument> constructorArguments = data.ConstructorArguments; 277CustomAttributeTypedArgument tca = constructorArguments[i];
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
303IList<CustomAttributeTypedArgument> constructorArguments = cad.ConstructorArguments; 306CustomAttributeTypedArgument tca = constructorArguments[0];
System.AddIn (5)
System\Addin\Hosting\InspectionWorker.cs (4)
282CustomAttributeTypedArgument arg = cana.TypedValue; 283ReadOnlyCollection<CustomAttributeTypedArgument> types = (ReadOnlyCollection<CustomAttributeTypedArgument>)arg.Value; 286foreach (CustomAttributeTypedArgument subArg in types)
System\Addin\Hosting\Store\PipelineComponent.cs (1)
92IList<CustomAttributeTypedArgument> args = ca.ConstructorArguments;
System.Web (1)
Compilation\TemplateControlCodeDomTreeGenerator.cs (1)
300foreach (var arg in attr.ConstructorArguments) {
WindowsBase (2)
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
303IList<CustomAttributeTypedArgument> constructorArguments = cad.ConstructorArguments; 306CustomAttributeTypedArgument tca = constructorArguments[0];