IVsContainedLanguageHost::GetErrorProviderInformation Method (String^, Guid)

 

Retrieves information about the error provider.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)

int GetErrorProviderInformation(
	[OutAttribute] String^% pbstrTaskProviderName,
	[OutAttribute] Guid% pguidTaskProviderGuid
)

Parameters

pbstrTaskProviderName
Type: System::String^

[out] Name of the task provider.

pguidTaskProviderGuid
Type: System::Guid

[out] A GUID identifying the task provider.

Return Value

Type: System::Int32

If successful, returns S_OK; otherwise, returns an error code.

From singlefileeditor.idl:

HRESULT GetErrorProviderInformation(
   [out] BSTR* pbstrTaskProviderName,
   [out] GUID* pguidTaskProviderGuid
);

The information returned by this method is typically the name and GUID for the editor that implements the IVsContainedLanguageHost interface.

Return to top
Show: