CodeDomDesignerLoader.Initialize Method

Definition

Initializes services.

protected:
 override void Initialize();
protected override void Initialize ();
override this.Initialize : unit -> unit
Protected Overrides Sub Initialize ()

Exceptions

The IDesignerLoaderHost has not been initialized, or the designer loader did not supply a type resolution service, which is required for CodeDom serialization.

Remarks

The following table describes the replaceable services that the CodeDomDesignerLoader adds to the service container.

Term Definition
INameCreationService Provides semantics for creating names of objects. The service uses the CodeDOM provider's ICodeGenerator interface to create names that are valid identifiers for the language. In addition, the name creation service supports empty names. Empty names should be interpreted as temporary local variables during serialization.
IDesignerSerializationService Allows other objects to serialize a group of components into a binary object. This service is most often used by features such as copy and paste or undo and redo. The CodeDomDesignerLoader class provides a designer serialization service that is based on creating CodeDOM trees for objects.
ComponentSerializationService This service replaces IDesignerSerializationService as a means to serialize components to a binary object.

For details on replaceable and non-replaceable services, see BasicDesignerLoader.

Applies to

See also