ModelBusAdapterManager::CreateAdapter Method (ModelBusReference^, IServiceProvider^)

 

Create a ModelBusAdapter instance supported by this ModelBusAdapterManager.

Namespace:   Microsoft.VisualStudio.Modeling.Integration
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Integration.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.Integration.12.0.dll)

public:
ModelBusAdapter^ CreateAdapter(
	ModelBusReference^ reference,
	IServiceProvider^ serviceProvider
)

Parameters

reference
Type: Microsoft.VisualStudio.Modeling.Integration::ModelBusReference^

Reference to the model that the adapter should wrap.

serviceProvider
Type: System::IServiceProvider^

ServiceProvider that supplies special services to configure the Adapter

Return Value

Type: Microsoft.VisualStudio.Modeling.Integration::ModelBusAdapter^

The created non-null ModelBusAdapter instance if successful, exception will be thrown otherwise.

The IServiceProvider should be used by callers to supply services that implement a private protocol between the caller and the Adapter being created by the AdapterManager. If an AdapterManager does not does not require any special services from the caller, then this ServiceProvider should not be used by the AdapterManager. Note to implementors: In order to retrieve general purpose Services, use the ModelBus's ServiceProvider or any other standard ServiceProvider instead.

Return to top
Show: