7 references to AssemblyQualifiedName
mscorlib (7)
system\reflection\emit\aqnbuilder.cs (3)
105if (format == Format.FullName || format == Format.AssemblyQualifiedName) 182Format genericArgumentsFormat = format == Format.FullName ? Format.AssemblyQualifiedName : format; 194if (format == Format.AssemblyQualifiedName)
system\reflection\emit\customattributebuilder.cs (1)
433String typeName = TypeNameBuilder.ToString((Type)value, TypeNameBuilder.Format.AssemblyQualifiedName);
system\reflection\emit\symboltype.cs (1)
400return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName);
system\reflection\emit\typebuilder.cs (1)
1116return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName);
system\reflection\emit\typebuilderinstantiation.cs (1)
121public override String AssemblyQualifiedName { get { return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName); } }