Partilhar via


Método IDiscoverySession.DiscoverUrlAsync (String, IDiscoverUrlCallBack, Int32)

 

Publicado: abril de 2016

Retorna o resultado de descoberta depois que o arquivo é baixado.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int DiscoverUrlAsync(
    string url,
    IDiscoverUrlCallBack pDiscoverUrlCallBack,
    out int cookie
)
int DiscoverUrlAsync(
    String^ url,
    IDiscoverUrlCallBack^ pDiscoverUrlCallBack,
    [OutAttribute] int% cookie
)
abstract DiscoverUrlAsync : 
        url:string *
        pDiscoverUrlCallBack:IDiscoverUrlCallBack *
        cookie:int byref -> int
Function DiscoverUrlAsync (
    url As String,
    pDiscoverUrlCallBack As IDiscoverUrlCallBack,
    <OutAttribute> ByRef cookie As Integer
) As Integer

Parâmetros

  • url
    [in] Especifica a URL para a sessão de descoberta.
  • pDiscoverUrlCallBack
    [in] Ponteiro para IDiscoverUrlCallBack Interface.Essa interface retorna S_OK quando a detecção for concluída.
  • cookie
    [out] Especifica um cookie que identifica o resultado de descoberta.

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 discoveryservice.idl:

HRESULT IDiscoverySession::DiscoverUrlAsync(
   [in] BSTR url,
   [in] IDiscoverUrlCallBack *pDiscoverUrlCallBack,
   [out, retval] int *cookie
);

Consulte também

Interface IDiscoverySession
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo