Hi
I think the default setting of an Addin generated by the Addin Wizard is
just OK.
You may try to look into the ComVisible attribute, it is set to true by
default and what is your concern about the default setting by the Wizard?
You can apply this attribute to assemblies, interfaces, classes,
structures, delegates, enumerations, fields, methods, or properties.
The default is true, which indicates that the managed type is visible to
COM. This attribute is not needed to make public managed assemblies and
types visible; they are visible to COM by default. Only public types can be
made visible. The attribute cannot be used to make an otherwise internal or
protected type visible to COM or to make members of a nonvisible type
visible.
Setting the attribute to false on the assembly hides all public types
within the assembly. You can selectively make types within the assembly
visible by setting the individual types to true. Setting the attribute to
false on a specific type hides that type and its members. However, you
cannot make members of a type visible if the type is invisible. Setting the
attribute to false on a type prevents that type from being exported to a
type library; classes are not registered; interfaces are never responsive
to unmanaged QueryInterface calls.
Unless you explicitly set a class and its members to false, inherited
classes can expose to COM base class members that are invisible in the
original class. For example, if you set ClassA to false and do not apply
the attribute to its members, the class and its members are invisible to
COM. However, if you derive ClassB from ClassA and export ClassB to COM,
ClassA members become visible base class members of ClassB.
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! -
www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.