rishitraykhanna

Stories kicked by rishitraykhanna

XML Dictionary & Serialization in WCF(sankarsan.wordpress.com)

submitted by sankarsansankarsan(440) 2 years, 1 month ago

We all are quite conversant with the XmlWriter & XmlReader classes in System.Xml namespace.But not that much with the XmlDictionary ,XmlDictionaryReader & XmlDictionaryWriter present in System.Xml namespace in System.Runtime.Serialization assembly.These are used primarily by the WCF framework to optimize XML serialization/deserialization.In this post we will see how a XML Dictionary can be used to make XML writing/reading more optimized. read more...

add a comment |category: |Views: 65

tags: another

Introducing Fluent MetadataProvider for ASP.NET MVC - Kazi(weblogs.asp.net)

submitted by jantujantu(1045) 2 years, 1 month ago

I have just included a Fluent Metadata provider in my open source System.Web.Mvc.Extensibility project. Currently it contains all of the features of the Built-in DataAnnotations Metadata provider that comes with the ASP.NET MVC 2 framework. Consider it as a holiday special from me for the ASP.NET MVC community :-). The main reason I am no... read more...

5 comments |category: |Views: 262

tags: another

More on Fluent MetadataProvider for ASP.NET MVC - Kazi Manzur Rashid(weblogs.asp.net)

submitted by jantujantu(1045) 2 years, 1 month ago

In my last post, one of the thing you complained about the maintaining view model meta data configuration in two separate place and I admit this becomes a pain when you skim through the codes. I have changed the implementation, so now you will be able to configure the meta data very much like the Fluent NHibernate or Entity Framework 4.0 Code ... read more...

8 comments |category: |Views: 278

tags: another

Xaml color scheme generator(blogs.compdj.com)

submitted by activeaspactiveasp(163) 2 years, 1 month ago

I’ve made a xaml color scheme generator that works with colorschemedesigner .com It generates a resource dictionary and xaml demo source. In the color scheme generator site, just export to xaml, and save to a file. In the generator, browse for that file, and click convert. read more...

add a comment |category: |Views: 71

tags: another

Capturing File Information(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 1 month ago

This article describes a simple approach to capturing and displaying file and file version information. read more...

add a comment |category: |Views: 2

tags: another

Meet my new ASP.NET MVC Extension - System.Web.Mvc-Kazi Manzur Rashid(weblogs.asp.net)

submitted by mithumithu(570) 2 years, 1 month ago

After hearing Phil Haack and Scott Hanselman in their latest podcast and PDC session I decided to give a good look at the MvcTrubine project in this weekend. I totally agree the intend of this project, let your favorite IoC to rule everywhere, but I do not think it has been implemented in the correct way. There are three important design flaws that I found in MvcTurbine: Generic Component Registration API Rather than allowing you to use your preferred IoC registration features, it prefers to use its own generic syntax for component registration, which is simply wrong. In real application, we need more support from our IoC such as lifetime management, auto wiring, modularity like (Ninject/Autfac Modules, StructureMap Registry) etc. In case of this generic API we have to throw away the features of these IoCs. Missing Common Service Locator I think the Common Service Locator(CSL) has become the standard to abstract the underlying IoC from your application code and all the popular IoCs in .NET world has an adapter for CSL. But rather than using/extending it, it has its own version of service locator. Limited support for Action Filter injection It uses a host kinda Attribute to inject the dependencies into the actual action filter attribute and this host is not capable of passing the attribute specific values to the actual attribute and even if this feature is implemented in the future it will be based upon the string based property name which would work on top of reflection. Now, lets see how my new extension solves the above issues and how easily you can start plugging it in your application. First lets take a quick look of the project structure of this extension. read more...

4 comments |category: |Views: 246

tags: another

.NET 4 Parallel Programming, Not So Fast… (Part 3)(shelbyrobertson.com)

submitted by srober12srober12(20) 2 years, 1 month ago

A look into the performance of the parallel programing structures included with .NET 4.0 read more...

add a comment |category: |Views: 24

tags: another

ASP.NET WebForms Best Practices(jsprunger.com)

submitted by daymandayman(80) 2 years, 1 month ago

Collection of useful ASP.NET best practices. read more...

add a comment |category: |Views: 35

tags: another

Windows Ribbon for WinForms, Part 21 – SizeDefinition(blogs.microsoft.co.il)

submitted by arikparikp(1204) 2 years, 1 month ago

Windows Ribbon for WinForms, Part 21 – SizeDefinition After reviewing the MSDN documentation for the Windows Ribbon Framework I’ve discovered there is only one subject I haven't covered in my ribbon posts. This post comes to rectify this issue. This post is about how to define custom size definitions for ribbon group elements. The post is entirely about ribbon markup, so no changes to the Windows Ribbon for WinForms library. Nevertheless, I’ve uploaded a new sample “18-SizeDefinition” to the project s... read more...

add a comment |category: |Views: 14

tags: another

C++ Programming : Introduction(begincpp.blogspot.com)

submitted by homamhomam(100) 2 years, 2 months ago

This blog is designed to help you teach yourself how to program with C++. It lays emphasis on the practical usage of the language, and helps you get up-to-speed with concepts that are most important in writing C++ application for real-world usage. read more...

add a comment |category: |Views: 4

tags: another

KiGG Design And Architecture – Part 2 Project Structure(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 2 years, 2 months ago

In part 1 I talked about KiGG high level architecture. In this part I am going to talk about KiGG project structure and summarize the purpose of each project in the solution. I’ll not go into deep details of each project. I’ll save that for some other posts, just be patient with me and stay tuned. read more...

add a comment |category: |Views: 250

tags: another

Casts using “as” (Pitfalls and Best Practices to Prevent Them #5)(winsharp93.wordpress.com)

submitted by winSharp93winSharp93(235) 2 years, 2 months ago

Well – “as” is faster to type than a “real” cast using two brackets and has the same result. Really? read more...

add a comment |category: |Views: 10

tags: another

The Evolution of Visual Basic (blog-mstechnology.blogspot.com)

submitted by babu.mstechbabu.mstech(285) 2 years, 2 months ago

Evolution of Visual Basic from VB1 - VB10 read more...

add a comment |category: |Views: 9

tags: another

Extending ASP.NET MVC 2 Templates - Kazi Manzur Rashid(weblogs.asp.net)

submitted by mithumithu(570) 2 years, 2 months ago

One of the new features of ASP.NET MVC 2 is Templates (DisplayFor/EditorFor), Brad Wilson did a series of post which explains how the templates works, Please read it before you continue this post. Although he did an excellent job explaining the inner-details, but one thing you will notice that the object model in those examples are traversed from top to bottom or parent to child which is good for explaining the internal, but in our real application we need a bit more support. Lets take a trivial example, you are creating a create/edit screen for your Product, where each product has a associated Category and you want to show this category in a DropDownList, say we have a Product class like the.... read more...

add a comment |category: |Views: 207

tags: another

Telerik Extensions for ASP.NET MVC Survey - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by jantujantu(1045) 2 years, 2 months ago

Dear readers, as you know that we have released our beta few weeks back, we are currently looking for your feedback on the existing features as well as the features that you would like to see in our next release. This is a very short survey only 4/5 screens to complete, click here to submit your valuable feedback. Thanks in advance for your precious... read more...

add a comment |category: |Views: 177

tags: another

Access AssemblyInfo file and get product informations(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 2 months ago

This article tells you that .Net have the assemblyInfo file for every project and also have custom attributes to access the asseblyinfo file attributes. read more...

add a comment |category: |Views: 3

tags: another