コード例 #1
0
ファイル: RemoteParam.cs プロジェクト: ShlegelAndrey/RedConn
 public RemoteParam(RemoteConn conn, RemoteObj parent)
 {
     this.Conn = conn;
     this.Parent = parent;
 }
コード例 #2
0
ファイル: TestForm.cs プロジェクト: ShlegelAndrey/RedConn
 public TestForm()
 {
     InitializeComponent();
     Remote = new RemoteConn();
     Remote.MessageReceived += MessageReceived; // register for receiving messages from server
 }