Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns a pointer to IDiscoveryResult.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function DiscoverUrl ( _
pbstrURL As String, _
<OutAttribute> ByRef pIDiscoveryResult As IDiscoveryResult _
) As Integer
int DiscoverUrl(
string pbstrURL,
out IDiscoveryResult pIDiscoveryResult
)
int DiscoverUrl(
[InAttribute] String^ pbstrURL,
[OutAttribute] IDiscoveryResult^% pIDiscoveryResult
)
abstract DiscoverUrl :
pbstrURL:string *
pIDiscoveryResult:IDiscoveryResult byref -> int
function DiscoverUrl(
pbstrURL : String,
pIDiscoveryResult : IDiscoveryResult
) : int
Parameters
pbstrURL
Type: System.String[in] Pointer to a string containing the URL of the file to be discovered.
pIDiscoveryResult
Type: Microsoft.VisualStudio.Shell.Interop.IDiscoveryResult%[out] Pointer to an IDiscoveryResult object.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From discoveryservice.idl:
HRESULT IDiscoverySession::DiscoverUrl(
[in] BSTR pbstrUrl,
[out, retval] IDiscoveryResult **pIDiscoveryResult
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.