Share via


VirtualTypeBuilder.InitializeFromType Method (ITypeResolutionService, CodeNamespace)

Initializes this virtual type builder with data obtained from the given type.

Namespace:  Microsoft.VisualStudio.Shell.Design
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)

Syntax

'Declaration
Public Sub InitializeFromType ( _
    typeResolutionService As ITypeResolutionService, _
    ns As CodeNamespace _
)
public void InitializeFromType(
    ITypeResolutionService typeResolutionService,
    CodeNamespace ns
)
public:
void InitializeFromType(
    ITypeResolutionService^ typeResolutionService, 
    CodeNamespace^ ns
)
member InitializeFromType : 
        typeResolutionService:ITypeResolutionService * 
        ns:CodeNamespace -> unit
public function InitializeFromType(
    typeResolutionService : ITypeResolutionService, 
    ns : CodeNamespace
)

Parameters

  • typeResolutionService
    Type: ITypeResolutionService

    The type resolution service to use when resolving types in the Code Document Object Model (CodeDOM) tree.

  • ns
    Type: CodeNamespace

    The namespace that contains a type to create. This namespace must contain exactly one type.

Exceptions

Exception Condition
ArgumentNullException

If any of the parameters are nulla null reference (Nothing in Visual Basic).

ArgumentException

If ns contains anything other than a single type declaration.

Remarks

The InitializeFromType method will clear all member collections and repopulate them based on a type declaration.

.NET Framework Security

See Also

Reference

VirtualTypeBuilder Class

InitializeFromType Overload

Microsoft.VisualStudio.Shell.Design Namespace