- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
public bool StartListener()
{
bool flag;
try
{
flag = (this.m_Listener.BeginAccept() ? true : false);
}
catch (Exception exception)
{
CAssert.ReportAssert(exception);
flag = false;
}
return flag;
}