ServicedComponent and IComponent

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any connection at all between the ServicedComponent class and the
IComponent interface? The Visual Studio Help for IComponent says:

Provides functionality required by all components. Component is the default
implementation of IComponent and serves as the base class for all components
in the common language runtime.

But other than that they both derive from System.MarshalByRefObject, these
seem like two totally different uses of the word 'Component'.
 
I don't think ServicedComponent and Component are related to each other.

ServicedComponent is for something you want to put in COM+.

Component is for an object you want to be able to use in the designer and
set properties on.
 
Back
Top