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

Apply this attribute to Total Commander plugin class to make plugin generator ignore it

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[AttributeUsageAttribute(AttributeTargets.Class, Inherited = false)]
public class NotAPluginAttribute : Attribute
Visual Basic
<AttributeUsageAttribute(AttributeTargets.Class, Inherited := False)> _
Public Class NotAPluginAttribute _
	Inherits Attribute
Visual C++
[AttributeUsageAttribute(AttributeTargets::Class, Inherited = false)]
public ref class NotAPluginAttribute : public Attribute
F#
[<AttributeUsageAttribute(AttributeTargets.Class, Inherited = false)>]
type NotAPluginAttribute =  
    class
        inherit Attribute
    end
JScript
public class NotAPluginAttribute extends Attribute

Remarks

This attribute may be usefull when you have non-abstract base class that you don't wan't plugin to be generated for

Inheritance Hierarchy

System..::..Object
  System..::..Attribute
    Tools.TotalCommanderT..::..NotAPluginAttribute

See Also