[This is preliminary documentation and is subject to change.]

Gets or sets types to generate plugins for

Namespace: Tools.TotalCommanderT.PluginBuilder
Assembly: TCPluginBuilder (in TCPluginBuilder.exe) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public Type[] Types { get; set; }
Visual Basic
Public Property Types As Type()
	Get
	Set
Visual C++
public:
property array<Type^>^ Types {
	array<Type^>^ get ();
	void set (array<Type^>^ value);
}
F#
member Types : Type[] with get, set
JScript
function get Types () : Type[]
function set Types (value : Type[])

Field Value

All the types in array must be in assembly Assembly; when null all public types that qualify to be Total Commander plugins will be used.

Return Value

Type plugins will be generated for. Null when all possible types will be used.

Remarks

When null, this property is set during generation process to actual types plugins are generated for.

Passing constructed generic type here is only way to generate plugin of generic type. Otherwise plugin generator skips generic types.

See Also