13 references to ArgumentType
mscorlib (11)
system\reflection\customattribute.cs (9)
918if (ArgumentType.IsEnum) 919return String.Format(CultureInfo.CurrentCulture, typed ? "{0}" : "({1}){0}", Value, ArgumentType.FullName); 922return String.Format(CultureInfo.CurrentCulture, typed ? "null" : "({0})null", ArgumentType.Name); 924else if (ArgumentType == typeof(string)) 927else if (ArgumentType == typeof(char)) 930else if (ArgumentType == typeof(Type)) 933else if (ArgumentType.IsArray) 938Type elementType = ArgumentType.GetElementType(); 947return String.Format(CultureInfo.CurrentCulture, typed ? "{0}" : "({1}){0}", Value, ArgumentType.Name);
system\reflection\parameterinfo.cs (1)
625if (value.ArgumentType != null)
system\runtime\interopservices\marshal.cs (1)
2365Contract.Assert(progIdConstructorArg.ArgumentType == typeof(String), "progIdConstructorArg.ArgumentType == typeof(String)");
PresentationBuildTasks (1)
Shared\System\Windows\Markup\ReflectionHelper.cs (1)
308if (attrValue == null && allowTypeAlso && tca.ArgumentType == typeof(Type))
WindowsBase (1)
Shared\System\Windows\Markup\ReflectionHelper.cs (1)
308if (attrValue == null && allowTypeAlso && tca.ArgumentType == typeof(Type))