TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
paul aarman
NA
17
3.9k
socketexpection unhandle
May 25 2013 4:18 PM
im trying to add a catch to this but it wont let me add it
heres my code
try
{
bool Flag = false;
foreach (Client client in Clients.ToList())
{
if (client.roomName == connection.mRoomName)
{
Flag = true;
break;
}
}
if (!Flag)
{
Client client = new Client(connection.mRoomName);
Thread thd = new Thread(() => { client.mNetConnection.Connect(connection.mRoomRTMP, param); });
client.SetHandler(thd);
thd.Start();
Clients.Add(client);
}
}
------
Reply
Answers (
6
)
C sharp Exceptions
registry key crashing my app