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!

Assembly.CreateQualifiedName

Creates the name of a type qualified by the display name of its assembly.

[Visual Basic]
Public Shared Function CreateQualifiedName( _
   ByVal assemblyName As String, _
   ByVal typeName As String _
) As String
[C#]
public static string CreateQualifiedName(
   string assemblyName,
   string typeName
);
[C++]
public: static String* CreateQualifiedName(
   String* assemblyName,
   String* typeName
);
[JScript]
public static function CreateQualifiedName(
   assemblyName : String,
   typeName : String
) : String;

Parameters

assemblyName
The display name of an assembly.
typeName
The full name of a type.

Return Value

The full name of the type qualified by the display name of the assembly.

Remarks

The format of the returned string is:

<FullTypeName>, <AssemblyDisplayName>

See AssemblyName for a description of the format of the display name of an assembly.

See Also

Assembly Class | Assembly Members | System.Reflection Namespace