Search Results

6
votes

Unsubscribe anonymous method in C#

One technique is to declare a variable to hold the anonymous method which would then be available inside the anonymous method itself. This worked for me because the desired behavior was to unsubscr …
0
votes

Url as parameter gets intercepted

Perhaps you are running into the ValidateRequest feature of ASP.NET? …
3
votes

How to validate that a string doesn’t contain HTML using C#

You could ensure plain text by encoding the input using HttpUtility.HtmlEncode. I …
2
votes

Why LocalTime displays server time and not browser time?

One technique is to detect the client timezone offset (in minutes) using javascript on the client browser: alert((new Date()).getTimezoneOffset(); This can then be …
1
vote

Breaking out unit tests into another project

I believe you need to update the post build event for the Foo.Tests project to be: "$(ProjectDir)Foo.Test\Currencies.xml" "$(TargetDir)\XML" …
0
votes

My IsConnected always returns true.

I'm not sure exactly what you're trying to achieve, but assuming you're trying to tell if the connection has been broken, this post may be helpful: …
0
votes

My IsConnected always returns true.

It looks to me like you may not get the functionality you are expecting from the Socket class. My understanding is that the Socket class is only aware of the connection state as of the last socket …