Used in connection with the ConnectComplete event. Contains information about the remote desktop useful for setting-up the client's GUI.
Inheritance: System.EventArgs
Exemple #1
0
 /// <summary>
 /// Dispatches the ConnectComplete event if any targets have registered.
 /// </summary>
 /// <param name="e">A ConnectEventArgs object with information about the remote framebuffer's geometry.</param>
 /// <exception cref="System.InvalidOperationException">Thrown if the RemoteDesktop control is not in the Connected state.</exception>
 protected void OnConnectComplete(ConnectEventArgs e)
 {
     if (ConnectComplete != null)
     {
         ConnectComplete(this, e);
     }
 }
		/// <summary>
		/// Dispatches the ConnectComplete event if any targets have registered.
		/// </summary>
		/// <param name="e">A ConnectEventArgs object with information about the remote framebuffer's geometry.</param>
		/// <exception cref="System.InvalidOperationException">Thrown if the RemoteDesktop control is not in the Connected state.</exception>
		protected void OnConnectComplete(ConnectEventArgs e)
		{
			if (ConnectComplete != null) {
				ConnectComplete(this, e);
			}
		}