Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - February 19, 2021
What are routed events in WPF? A routed event is a type of event that, in an element, a tree has multiple listeners and that is handle by the routed events. A routed event is a basically CLR event and it is supported by an instance of the Routed Event class. In the WPF application, they contain multiple elements some elements are declared in XAML, and some elements are declared in code, and these all elements are related to each other in a tree relationship. Tree Structures To...
Kapil Panchal - February 18, 2021
When you are developing the websites with JavaScript, you can use the localStorage and sessionStorage. In the localStorage and sessionStorage, the data stores in key-value pair in the user’s web browser. It is also known as sandboxed for each website, you can access only your data store on every website, and you can’t access to localStorage and sessionStorage objects being saved from another website. The data stores carefully because this data is volatile. Volatile means not permanent...
Kapil Panchal - February 18, 2021
MVP has become an indispensable factor through which many start-ups like Zappos, Dropbox, Twitter, Uber, etc. have got impeccable success in the market. MVP stands for Minimum Viable Product. It is the technique of implementing and delivering a product with just basic features and functionalities.The right audienceusingyour primary product would provide youquality feedbackand this helps you to make future iterations accordingly. Keeping an eye on the future, MVPwould help you to find the right...
Kapil Panchal - February 16, 2021
The .Net class library defines the types and methods that are referred to by an application. If your class library targets .NET Standard 3.1, it can be called by any .NET implementation (including .NET Framework) that supports .NET Standard 3.1. If your class library targets .NET 5, it can be invoked by any application that targets .NET 5. If you are creating a .Net core class library, you can distribute it as a NuGet package or as a bundled component with the application that uses it. Prerequisites First...
Kapil Panchal - February 12, 2021
It is quite common to decorate the ASP.NET MVC controller actions with filter attributes to differentiate cross-cutting concerns from the main concern of the action. Sometimes these filters require the use of other components but the attributes are very limited in their efficiency and dependence injection into an attribute is not directly possible. This post looks at some of the different techniques for injection dependence in action filters in the ASP.NET Core. We discuss when each method...