Click here to Skip to main content
16,013,338 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: how add frame.net to instalation in setup wizard Pin
Dave Kreskowiak27-Jun-06 5:02
mveDave Kreskowiak27-Jun-06 5:02 
Questiondrawing onclick event Pin
reshsilk26-Jun-06 7:55
reshsilk26-Jun-06 7:55 
AnswerRe: drawing onclick event Pin
Josh Smith26-Jun-06 16:21
Josh Smith26-Jun-06 16:21 
Questionhow to implement instalation pakage Pin
bspman26-Jun-06 4:01
bspman26-Jun-06 4:01 
AnswerRe: how to implement instalation pakage Pin
Jun Du26-Jun-06 8:21
Jun Du26-Jun-06 8:21 
GeneralRe: how to implement instalation pakage Pin
bspman27-Jun-06 1:12
bspman27-Jun-06 1:12 
QuestionMcAfee and Async Sockets Pin
Aurelius166426-Jun-06 1:40
Aurelius166426-Jun-06 1:40 
AnswerRe: McAfee and Async Sockets Pin
Mike Dimmick27-Jun-06 0:55
Mike Dimmick27-Jun-06 0:55 
I'd guess they don't support binding to a completion port, or something like that. In the first instance complain to McAfee since their stack is at fault. It's possible that the kernel simply has a specific list of things that can bind to completion ports.

For some uses of the asynchronous pattern, .NET queues a work item to the thread pool and simply runs the synchronous version on the thread pool thread. For sockets, it's different: asynchronous I/Os are used. If the OS supports it - NT, 2000, XP, 2003 and successors - the socket is bound to a completion port which is a highly scalable way of receiving I/O completion notifications; otherwise it uses overlapped I/Os. In any case, the notification that the I/O is complete ends up on the thread pool, which then calls your callback function.

.NET 2.0 adds a new property to the Socket class which can be used to force the overlapped I/O mechanism and turn off the completion port feature: UseOnlyOverlappedIO. Set to true to stop it using the completion port. This may work around the problem, but McAfee really should fix it - .NET 1.x will always use the completion port if it's available.

Stability. What an interesting concept. -- Chris Maunder
QuestionRe: McAfee and Async Sockets Pin
Aurelius166427-Jun-06 11:01
Aurelius166427-Jun-06 11:01 
AnswerRe: McAfee and Async Sockets Pin
Mike Dimmick15-Jul-06 5:59
Mike Dimmick15-Jul-06 5:59 
QuestionHow to run .Net exe on other PC? Pin
Andy Rama25-Jun-06 23:46
Andy Rama25-Jun-06 23:46 
AnswerRe: How to run .Net exe on other PC? Pin
Dave Kreskowiak26-Jun-06 1:14
mveDave Kreskowiak26-Jun-06 1:14 
AnswerRe: How to run .Net exe on other PC? Pin
theney6-Jul-06 11:01
theney6-Jul-06 11:01 
QuestionWindows service Pin
Rsekaran25-Jun-06 20:05
Rsekaran25-Jun-06 20:05 
AnswerRe: Windows service Pin
Jun Du26-Jun-06 16:11
Jun Du26-Jun-06 16:11 
QuestionGoogle maps and sql Pin
sante14025-Jun-06 13:25
sante14025-Jun-06 13:25 
AnswerRe: Google maps and sql Pin
Amit Agarrwal29-Jun-06 22:28
Amit Agarrwal29-Jun-06 22:28 
GeneralRe: Google maps and sql Pin
sante14029-Jun-06 22:53
sante14029-Jun-06 22:53 
Questionabout ObjectDisposedException Pin
Super Lloyd24-Jun-06 18:12
Super Lloyd24-Jun-06 18:12 
AnswerRe: about ObjectDisposedException Pin
Robert Rohde24-Jun-06 23:26
Robert Rohde24-Jun-06 23:26 
GeneralRe: about ObjectDisposedException Pin
Super Lloyd24-Jun-06 23:43
Super Lloyd24-Jun-06 23:43 
GeneralRe: about ObjectDisposedException Pin
Guffa25-Jun-06 0:39
Guffa25-Jun-06 0:39 
Questionhelp needed in pushing object eg. a vcard from my desktop to a bluetooth device Pin
piyushnarain24-Jun-06 2:34
piyushnarain24-Jun-06 2:34 
QuestionWinSocket Library in C#? Pin
Andy Rama23-Jun-06 23:13
Andy Rama23-Jun-06 23:13 
AnswerRe: WinSocket Library in C#? Pin
Jun Du24-Jun-06 2:53
Jun Du24-Jun-06 2:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.