IVsTextLines.LockBufferEx(UInt32) Method

Definition

Extension of the LockBuffer() method. Deprecated.

public:
 int LockBufferEx(System::UInt32 dwFlags);
public:
 int LockBufferEx(unsigned int dwFlags);
int LockBufferEx(unsigned int dwFlags);
public int LockBufferEx (uint dwFlags);
abstract member LockBufferEx : uint32 -> int
Public Function LockBufferEx (dwFlags As UInteger) As Integer

Parameters

dwFlags
UInt32

[in]Combine with a bitwise or of BufferLockFlags, presently either BLF_READ or BLF_WRITE.)

Returns

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

Implements

Remarks

Starting in Visual Studio 2010, you should access the text buffer on the UI thread, not on background threads. The text buffer no longer gets locked when you call LockBuffer or LockBufferEx. Similarly, the UnlockBuffer and UnlockBufferEx methods no longer have any effect.

COM Signature

From textmgr.idl:

HRESULT IVsTextLines::LockBufferEx(  
   [in] DWORD dwFlags  
);  

When the LockBufferEx method is called by one thread, no other thread can perform write operations on the buffer. To unlock the buffer, call UnlockBufferEx.

Applies to