VncSharp

RfbProtocol.WriteFramebufferUpdateRequest Method 

Sends a request for an update of the area specified by (x, y, w, h). See RFB Doc v. 3.8 section 6.3.4.

[Visual Basic]
Public Sub WriteFramebufferUpdateRequest( _
   ByVal x As UInt16, _
   ByVal y As UInt16, _
   ByVal width As UInt16, _
   ByVal height As UInt16, _
   ByVal incremental As Boolean _
)
[C#]
public void WriteFramebufferUpdateRequest(
   ushort x,
   ushort y,
   ushort width,
   ushort height,
   bool incremental
);

Parameters

x
The x-position of the area to be updated.
y
The y-position of the area to be updated.
width
The width of the area to be updated.
height
The height of the area to be updated.
incremental
Indicates whether only changes to the client's data should be sent or the entire desktop.

See Also

RfbProtocol Class | VncSharp Namespace