IVsContainedLanguageCodeSupport::GetBaseClassName Method (String^, String^)

 

Returns the base class name for the provided class.

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

int GetBaseClassName(
	String^ pszClassName,
	[OutAttribute] String^% pbstrBaseClassName
)

Parameters

pszClassName
Type: System::String^

[in] The full name of the class, for example, Namespace1.Namespace2.Class1.

pbstrBaseClassName
Type: System::String^

[out] The full name of the base class, for example, System.Web.UI.Page.

Return Value

Type: System::Int32

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

From singlefileeditor.idl:

HRESULT GetBaseClassName(
   [in]  LPCWSTR pszClassName,
   [out] BSTR*   pbstrBaseClassName
);
Return to top
Show: