VirtualTypeBuilder::TypeName Property

 

Gets or sets the type name for the virtual type.

Namespace:   Microsoft.VisualStudio.Shell.Design
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)

public:
property String^ TypeName {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The type name.

Exception Condition
ArgumentException

The provided type name does not conform to a valid type name. Valid type names are defined as names consisting of letters, numbers, an underscore and one or more "." or "+" characters.

The type name should be the fully qualified name that is reported as the type name through reflection. The simple type name will be fabricated by parsing the full type name. The default value of this property is null.

Return to top
Show: