Alexey Zakharov's Blog
-
New article for SilverlightShow
Hi Silverlighters,
-
Tips & Tricks: StyleCop copyright issue.
Today I've started using StyleCop in my open source project. With the help of style cop you can configure copyright text, which should be added to each file. Also ReSharper plugin for StyleCop will automatically add this header after clean up. But there is a little problem with setting up copyright text if it is not a single line. With style cop setting manager u can use only single line textbox to manage copyright text. So, I strongly recommend u to use text xml editor for this purpose. Also resharper plugin will not generate copyright text correctly if it holds new lines. To avoid this issue u can add slashes by hand before all newlines. Here is an example:
Hope it helps!1: <StringProperty Name="Copyright">This file is part of YOUR PROJECT
2: //
3: // YOUR PROJECT is free software: you can redistribute it and/or modify
4: // it under the terms of the GNU General Public License as published by
5: // the Free Software Foundation, either version 3 of the License, or
6: // (at your option) any later version.
7: //
8: // YOUR PROJECT is distributed in the hope that it will be useful,
9: // but WITHOUT ANY WARRANTY; without even the implied warranty of
10: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11: // GNU General Public License for more details.
12: //
13: // You should have received a copy of the GNU General Public License
14: // along with Foobar. If not, see http://www.gnu.org/license.
15: </StringProperty>
-
Silverlight Tip: Problems with polling duplex inactivitytimeout.
Many people ask question why polling duplex session shutdown after 10 minutes in spite of polling duplex InactivityTimeout value is more than hour.
-
How to increase amount of silverlight duplex clients.
Amount of silverlight polling duplex clients is defined by MaxConcurrentSessions throttling property. Default value is 10.
-
Silverlight Tip: If Polling Duplex SLOWS Everything =)
Today I've lost about 6 hours to find out why POLLING DUPLEX make all my WCF services work extremely SLOW. The reason was Global.ashx. Don't know why it caused such problems, but when I've deleted it everything started working correctly.
-
Microsoft business start 2009 Winner!
I'd like to say thanks for all people who helped us to prepare for Microsoft business start 2009!
-
Join to Twitter
Yesterday I've started using twitter service. U can follow me here
-
SilverlightShow Author
Today I officially join SIlverlightShow.net author's team.
-
Kudos to Jeffrey or Implementing the CLR Asynchronous Programming Model
Recently, I need to develop APM in my silverlight application. After rather long search through internet information garbage, I found wonderful article written by Jeffery Richter "Implementing the CLR Asynchronous Programming Model". Article is written for .NET, but code is 100% reusable in Silverlight.
-
ADO.NET Data-Services Advanced Topics: Custom-proxy based on T4 templates
Today SilverlightShow has published first article of my series about deep dive into ADO.NET Data Services. In this article I'm showing how to implement your own ADO.NET Data Services proxy with T4 templates.