NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Type.AssemblyQualifiedName

Gets the fully qualified name of the Type, including the name of the assembly from which the Type was loaded.

[Visual Basic]
MustOverride Public ReadOnly Property AssemblyQualifiedName As _
   String
[C#]
public string AssemblyQualifiedName {abstract get;}
[C++]
public: __property virtual String* get_AssemblyQualifiedName() = 0;
[JScript]
public abstract function get AssemblyQualifiedName() : String;

Property Value

The fully qualified name of the Type, including the name of the assembly from which the Type was loaded.

Remarks

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.

See Also

Type Class | Type Members | System Namespace | String | GetType