CodeDomDesignerLoader.TypeResolutionService Property

Definition

Gets the type resolution service to be used with this designer loader.

protected:
 abstract property System::ComponentModel::Design::ITypeResolutionService ^ TypeResolutionService { System::ComponentModel::Design::ITypeResolutionService ^ get(); };
protected abstract System.ComponentModel.Design.ITypeResolutionService TypeResolutionService { get; }
protected abstract System.ComponentModel.Design.ITypeResolutionService? TypeResolutionService { get; }
member this.TypeResolutionService : System.ComponentModel.Design.ITypeResolutionService
Protected MustOverride ReadOnly Property TypeResolutionService As ITypeResolutionService

Property Value

An ITypeResolutionService that the CodeDOM serializers will use when resolving types.

Remarks

The CodeDomDesignerLoader automatically adds this ITypeResolutionService to the service container when the Initialize method is invoked. While the type resolution service is optional in many scenarios, it is required for code interpretation because source code contains type names, but no assembly references.

Applies to

See also