Método IVsProjectFactory.SetSite (IServiceProvider)
Inicializa a fábrica de projeto no ambiente e permite que o projeto para obter serviços proffered pelo ambiente.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int SetSite(
IServiceProvider psp
)
int SetSite(
IServiceProvider^ psp
)
abstract SetSite :
psp:IServiceProvider -> int
Function SetSite (
psp As IServiceProvider
) As Integer
Parâmetros
- psp
[in] Ponteiro para o IServiceProvider interface, que pode ser usado pela fábrica para obter serviços proffered pelo shell de Visual Studio.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsProjectFactory::SetSite(
[in] IServiceProvider *pSP
);
O ambiente chama este método em conjunto com UnregisterProjectType.
Exemplos
[C#]
/// <summary>
/// Called by the shell to initialize the project factory.
/// </summary>
/// <param name="serviceProvider">An object that is used to find services proffered by the shell.</param>
public virtual void SetSite(Microsoft.OLE.Interop.IServiceProvider serviceProvider)
{
this.serviceProvider = serviceProvider;
}
No exemplo acima this refere-se para a fábrica de projeto em questão.
Consulte também
Interface IVsProjectFactory
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo