IVsPersistentTextImage.Image_FullTextRead Method
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaración
Function Image_FullTextRead ( _
<OutAttribute> ByRef ppszText As String, _
<OutAttribute> ByRef piLength As Integer _
) As Integer
'Uso
Dim instance As IVsPersistentTextImage
Dim ppszText As String
Dim piLength As Integer
Dim returnValue As Integer
returnValue = instance.Image_FullTextRead(ppszText, _
piLength)
int Image_FullTextRead(
out string ppszText,
out int piLength
)
int Image_FullTextRead(
[OutAttribute] String^% ppszText,
[OutAttribute] int% piLength
)
abstract Image_FullTextRead :
ppszText:string byref *
piLength:int byref -> int
function Image_FullTextRead(
ppszText : String,
piLength : int
) : int
Parameters
- ppszText
Type: System.String%
[out]
- piLength
Type: System.Int32%
[out]
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 textmgr.idl:
HRESULT IVsPersistentTextImage::Image_FullTextRead(
[out] const WCHAR **ppszText,
[out] long *piLength
);
Nota
The text buffer is created by the IVsPersistentTextImage object and the buffer must persist for the life of the IVsPersistentTextImage object or until the Image_CloseFullTextScan method is called.
If you are implementing this interface in managed code and you need to have the string disposed of by the caller, implement the IVsCoTaskMemFreeMyStrings interface on the IVsPersistentTextImage interface.
.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.
See Also
Reference
IVsPersistentTextImage Interface