This repository has been archived by the owner on Jul 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
almightylks
committed
Dec 20, 2020
1 parent
c2fc8be
commit f40f765
Showing
3 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
|
||
<ItemGroup> | ||
<Folder Include="Logging\" /> | ||
<Folder Include="Example\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
using System.Net.Sockets; | ||
using EasyCommunication.Client.Connection; | ||
using System.Net.Sockets; | ||
|
||
namespace EasyCommunication.Events.Client.EventArgs | ||
{ | ||
public class ConnectedToHostEventArgs : IClientEventArgs | ||
{ | ||
public TcpClient Client { get; internal set; } | ||
public int HostPort { get; internal set; } | ||
public Connection? Connection { get; internal set; } | ||
public bool Abort { get; set; } | ||
} | ||
} |