Type.AssemblyQualifiedName Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the assembly-qualified name of the Type, which includes the name of the assembly from which the Type was loaded.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public MustOverride ReadOnly Property AssemblyQualifiedName As String
public abstract string AssemblyQualifiedName { get; }

Property Value

Type: System..::.String
The assembly-qualified name of the Type, which includes the name of the assembly from which the Type was loaded, or nullNothingnullptra null reference (Nothing in Visual Basic) if the current instance represents a generic type parameter.

Remarks

The assembly-qualified name of a type consists of the type name, including its namespace, followed by a comma, followed by the display name of the assembly. The display name of an assembly is obtained using the Assembly..::.FullName property.

All compilers that support the common language runtime emit the simple name of a nested class, and reflection constructs a mangled name when queried, in accordance with the following conventions.

Delimiter

Meaning

Backslash (\)

Escape character.

Comma (,)

Precedes the Assembly name.

Plus sign (+)

Precedes a nested class.

Period (.)

Denotes namespace identifiers.

Brackets ([])

After a type name, denotes an array of that type.

-or-

For a generic type, encloses the generic type argument list.

-or-

Within a type argument list, encloses an assembly-qualified type.

For example, the assembly-qualified name for a class might look like this:

TopNamespace.SubNameSpace.ContainingClass+NestedClass, MyAssembly, Version=1.3.0.0, Culture=neutral, PublicKeyToken=b17a5c561934e089

If the namespace contained a plus sign, for example TopNamespace.Sub+Namespace, then the plus sign (+) would be preceded by an escape character (\) to prevent it from being interpreted as a nesting separator. Reflection would emit this string as follows:

TopNamespace.Sub\+Namespace.ContainingClass+NestedClass, MyAssembly, Version=1.3.0.0, Culture=neutral, PublicKeyToken=b17a5c561934e089 

A "++" becomes "\+\+", and a "\" becomes "\\".

This qualified name can be persisted and later used to load the Type. To search for and load a Type, use GetType either with the type name only or with the assembly qualified type name. GetType with the type name only will look for the Type in the caller's assembly and then in the System assembly. GetType with the assembly qualified type name will look for the Type in any assembly.

Type names may include trailing characters that denote additional information about the type, such as whether the type is a reference type, a pointer type or an array type. To retrieve the type name without these trailing characters, use t.GetElementType().ToString(), where t is the type.

Spaces are relevant in all type name components except the assembly name. In the assembly name, spaces before the ',' separator are relevant, but spaces after the ',' separator are ignored.

Generic arguments of generic types are themselves qualified by assembly name. For example, in the assembly-qualified type name for MyGenericClass<int> (MyGenericClass(Of Integer) in Visual Basic), int is expanded to the assembly-qualified type name for Int32.

If the current Type object represents a generic parameter, this property returns nullNothingnullptra null reference (Nothing in Visual Basic).

Version Notes

Windows Phone

 The return value for AssemblyQualifiedName on Windows Phone might look like this: MyType, MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b17a5c561934e089.

Examples

The following example displays the assembly name associated with the class and the fully qualified name of the type.

Imports System.Reflection
Class Example
    Public Shared Sub Demo(outputBlock As System.Windows.Controls.TextBlock)
        Dim objType As Type = GetType(System.Array)
        ' Print the full assembly name.
        outputBlock.Text += String.Format("Full assembly name: {0}.", objType.Assembly.FullName.ToString()) + Environment.NewLine
        ' Print the qualified assembly name.
        outputBlock.Text += String.Format("Qualified assembly name: {0}.", objType.AssemblyQualifiedName.ToString()) + Environment.NewLine
    End Sub 'Main
End Class 'MyAssemblyClass
using System;
using System.Reflection;

class Example
{

    public static void Demo(System.Windows.Controls.TextBlock outputBlock)
    {
        Type objType = typeof(System.Array);

        // Print the full assembly name.
        outputBlock.Text += String.Format("Full assembly name: {0}.", objType.Assembly.FullName.ToString()) + Environment.NewLine; 

        // Print the qualified assembly name.
        outputBlock.Text += String.Format("Qualified assembly name: {0}.", objType.AssemblyQualifiedName.ToString()) + Environment.NewLine; 
    }
}

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

Type Class

System Namespace

String

GetType

FullName

Namespace

AssemblyName