Edit

Share via


MarshalByValueComponent Class

Definition

Implements IComponent and provides the base implementation for remotable components that are marshaled by value (a copy of the serialized object is passed).

C#
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ComponentConverter))]
public class MarshalByValueComponent : IDisposable, IServiceProvider, System.ComponentModel.IComponent
C#
public class MarshalByValueComponent : IDisposable, IServiceProvider, System.ComponentModel.IComponent
C#
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ComponentConverter))]
[System.Runtime.InteropServices.ComVisible(true)]
public class MarshalByValueComponent : IDisposable, IServiceProvider, System.ComponentModel.IComponent
C#
public class MarshalByValueComponent : IServiceProvider, System.ComponentModel.IComponent
Inheritance
MarshalByValueComponent
Derived
Attributes
Implements

Remarks

A component can be contained in a container. For each component in a container, the container creates a site that it uses to manage the component. The component interacts with its container primarily through a container-provided ISite, which is a repository of container-specific, per-component information.

Notes to Inheritors

When you inherit from this class, you can override the Dispose(), Site, and the GetService(Type) methods.

Constructors

MarshalByValueComponent()

Initializes a new instance of the MarshalByValueComponent class.

Properties

Container

Gets the container for the component.

DesignMode

Gets a value indicating whether the component is currently in design mode.

Events

Gets the list of event handlers that are attached to this component.

Site

Gets or sets the site of the component.

Methods

Dispose()

Releases all resources used by the MarshalByValueComponent.

Dispose(Boolean)

Releases the unmanaged resources used by the MarshalByValueComponent and optionally releases the managed resources.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
Finalize()

Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetService(Type)

Gets the implementer of the IServiceProvider.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a String containing the name of the Component, if any. This method should not be overridden.

Events

Disposed

Adds an event handler to listen to the Disposed event on the component.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also