March 2002
Intermediate to advanced
864 pages
31h 8m
English
ComSourceInterfacesAttribute
This attribute indicates the unmanaged event (using the COM IConnectionPoint architecture) interfaces that are available on the decorated type. For each method defined in the COM interface, the type must provide a corresponding “event” instance that the COM architecture will plug into.
This attribute is only necessary when building .NET objects for plugging into COM event-aware systems, such as ActiveX control containers.
public sealed class ComSourceInterfacesAttribute : Attribute { // Public Constructors public method ComSourceInterfacesAttribute( string sourceInterfaces); public method ComSourceInterfacesAttribute( Type sourceInterface); public method ComSourceInterfacesAttribute( Type sourceInterface1, Type sourceInterface2); public method ComSourceInterfacesAttribute( Type sourceInterface1, Type sourceInterface2, Type sourceInterface3); public method ComSourceInterfacesAttribute( Type sourceInterface1, Type sourceInterface2, Type sourceInterface3, Type sourceInterface4); // Public Instance Properties public field string Value{get; } }
System.Object→System.Attribute→ComSourceInterfacesAttribute
Class