IVsTextStreamMarker::GetStreamBuffer Method (IVsTextStream^)

 

Provides access to the associated text buffer.

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

int GetStreamBuffer(
	[OutAttribute] IVsTextStream^% ppBuffer
)

Parameters

ppBuffer
Type: Microsoft.VisualStudio.TextManager.Interop::IVsTextStream^

[out] Pointer to the IVsTextStream interface of the associated buffer.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From textmgr.idl:

HRESULT IVsTextStreamMarker::GetStreamBuffer(
   [out] IVsTextStream **ppBuffer
);

This method can be used to return the underlying IVsTextStream object that contains the marker.

Return to top
Show: