Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
TileEventArgs.cs
1using System;
2
4{
8 public class TileEventArgs : EventArgs
9 {
10 private readonly RemoteDesktopSession session;
11 private readonly string tileBase64;
12 private readonly int x;
13 private readonly int y;
14
23 {
24 this.session = Session;
25 this.x = X;
26 this.y = Y;
27 this.tileBase64 = TileBase64;
28 }
29
33 public RemoteDesktopSession Session => this.session;
34
38 public string TileBase64 => this.tileBase64;
39
43 public int X => this.x;
44
48 public int Y => this.y;
49 }
50}
Maintains the client-side state of a Remote Desktop Session.
Event arguments for tile events.
Definition: TileEventArgs.cs:9
int X
Tile X-coordinate of remote desktop screen.
RemoteDesktopSession Session
Remote Desktop session.
string TileBase64
PNG of tile being updated, base64-encoded.
TileEventArgs(RemoteDesktopSession Session, int X, int Y, string TileBase64)
Event arguments for tile events.
int Y
Tile Y-coordinate of remote desktop screen.