19 references to Format
mscorlib (19)
system\reflection\emit\aqnbuilder.cs (9)
103internal static string ToString(Type type, Format format) 105if (format == Format.FullName || format == Format.AssemblyQualifiedName) 151private void ConstructAssemblyQualifiedNameWorker(Type type, Format format) 175if (rootType.IsGenericType && (!rootType.IsGenericTypeDefinition || format == Format.ToString)) 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 (3)
392return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName); 400return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName); 406return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.ToString);
system\reflection\emit\typebuilder.cs (3)
1027return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.ToString); 1101m_strFullQualName = TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName); 1116return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName);
system\reflection\emit\typebuilderinstantiation.cs (3)
67return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.ToString); 116m_strFullQualName = TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName); 121public override String AssemblyQualifiedName { get { return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName); } }