Browse by Tags

Tagged Content List
  • Wiki Page: IEnumerable<T> Vs. IQueryable<T>

    I am sure most of you have seen the following interfaces when you write code with .NET Framework. IEnumerable IEnumerable<T> IQueryable IQueryable<T> Have you ever wondered what these really are. Let’s see the beauty of them and let’s have a dig into IEnumerable<T>...
  • Wiki Page: Top 8 Features of the .NET Framework 4.0 & Visual Studio

    The top 8 features and sub-features of the .NET Framework 4.0 and are listed below: Web Development JavaScript Intellisense is supported in the Visual Studio Editor One Click Deployment For Applications RIA Support by providing Full fledged support for Silverlight Cloud Development...
  • Wiki Page: Forms Authentication with Multiple Login Pages

    Have you ever come across a situation where you want to have multiple login pages with Forms Authentication. Forms Authentication directly supports one login page, but there is a work around. Today we will see how to achieve this. For an example let’s say you want two login pages where one...
  • Wiki Page: C#

    C# is a type-safe, statically typed, object-oriented language that is simple yet powerful, allowing programmers to build a breadth of applications. Combined with the .NET Framework, Visual C# 2008/2010 enables the creation of Windows applications, Web services, database tools, components, controls...
  • Wiki Page: Progress of a Task in C#

    By default Task doesn’t report its progress as a BackgroundWorker does. But that doesn’t mean we can’t get a progress of a Task. There is a new interface which was introduced with .NET framework 4.5 which is IProgress<T> . This interface exposes a Report(T) method, which the async task calls...
  • Wiki Page: Introduction to WCF Data Services

    Table of Contents Introduction OData(Open Data Protocol) WCF Data Service + oData Data Service Providers Introduction WCF Data Services (formerly known as ADO.NET Data Services and codename is “Astoria”) is a platform for what Microsoft calls Data Services. This is a component of the .NET...
  • Wiki Page: WCF Data Services with Entity Framework Provider

    This Article focuses on how we can implement a WCF Data Service with Entity Framework Provider. I have created an empty ASP.NET web application. Now let’s start by adding an ADO.NET Entity Data Model to the project. ADO.NET Entity Data Model Now I am...
  • Wiki Page: Wiki: Platforms Portal

    Una plataforma es un elemento crucial en el desarrollo de software. Una plataforma puede ser definida simplemente como "un lugar para lanzar el software. Se puede incluir un marco o sistema operativo. Lea más sobre las siguientes plataformas mencionadas en TechNet Wiki. Table of Contents Active...
  • Wiki Page: Visual C#: MultiThreadSingleton

    This article demonstrates how to make multi threaded singleton 01. public sealed class MultiThreadSingleton<T> where T : class 02. { 03. #region Private Fields 04. /// <summary> 05. /// 06. /// </summary> 07. private static volatile T...
  • Wiki Page: Set WCF Service Authentication to Use a Custom Username & Password over HTTP

    It’s a common requirement where you want to authenticate the requests which the clients will make to your WCF services. And let's say that’s using some data which you have in your user table. In WCF, the default, when a user name and password is used for authentication, is let Windows to validate...
  • Wiki Page: Using Two Interfaces with the Same Method Signature in One Class

    Let me give you a brief description about common scenario, let’s say you have two interfaces Interface1, Interface2, and both interfaces are having a method addNumber() with the same signature. Now let’s say you have to implement both interfaces in one class (e.g. Class1: Interface1, Interface2). The...
  • Wiki Page: Windows Server 2012 üzerinde .NET Framework 3.5 kurulumu

    Windows Server 2012 işletim sistemi üzerine .NET Framework 3.5 kurmak isterseniz aşağıdaki uyarı ile karşılaşabilirsiniz. Bu uyarıda bahsi geçtiği üzere olmayan paketi kurmak için dism komutunu kullanabilirsiniz. dism /online /enable-feature /featurename:NetFX3 /all /Source:X:\sources...
  • Wiki Page: Host .NET Framework 3.x Services in AppFabric

    The rich and robust set of server management capabilities in Windows Server AppFabric apply only to Windows Communication Foundation (WCF) or Windows Workflow Foundation (WF) services built using .NET Framework 4. If you have access to the source files for the existing .NET 3.X WCF or WF service assembly...
  • Wiki Page: .NET Framework Overview

    Table of Contents .NET Wiki Pages See Also Other Languages Microsoft .NET is a wide collection of products and technologies with a dependence on the Microsoft .NET Framework. The .NET Framework allows you to: Apply common skills across a variety of devices, application types, and programming...
  • Wiki Page: Web Platform Installer

    Table of Contents Introduction Community Resources Blogs Web Pages Forums Credit Other Languages Deutsch (de-DE) Introduction The Microsoft Web Platform Installer is also called Web PI. It is a free tool that makes getting the latest components of the Microsoft Web Platform, including...
  • Wiki Page: How to Enable .NET Framework 3.5 in Windows 8 Client

    On the Windows 8 client, some applications will require you to install .NET Framework 3.5 for backwards compatibility. You will need internet access to download .Net Framework 3.5 for installation. This document provides step by step instruction on how to enable and install .NET Framework 3.5 on the...
  • Wiki Page: Event ID 35: SidebySide

    Table of Contents Applies To Details Cause User Action Applies To Windows Server 2008 R2, Windows 7 Details Product Windows Operating System ID 35 Source SidebySide Version ...
  • Wiki Page: Exception Handling in the .NET Framework Data Provider for ODBC, OLE DB, and for SQL Server

    Developers using the .NET Framework Data Provider for ODBC, the .NET Framework Data Provider for OLE DB, or the NET Framework Data Provider for SQL Server often send feedback to Microsoft, asking for a complete list of the exceptions that a given method can throw. Until such time as the documentation...
  • Wiki Page: WorkflowRuntimeSection WorkflowDefinitionCacheCapacity Added to .Net Framework 3.5 in QFE

    The System.Workflow.Runtime.WorkflowRuntime WorkflowDefinitionCacheCapacity property (the number of workflow definitions saved by the workflow runtime) has been added to the .Net 3.5 Framework by a QFE. This property has already been added in .Net Framework 4.0, and is documented here: http://msdn...
  • Wiki Page: Using ReceiveAndSendReply Inside a Pick Activity (WF)

    The ReceiveAndSendReply activity template is used in a workflow service to implement a two-way operation. When this activity template is dragged onto the workflow designer, a Sequence activity containing a Receive activity followed by SendReply activity is added to the workflow. The ReceiveAndSendReply...
  • Wiki Page: WCF Data Services: Overview

    WCF Data Services (formerly known as "ADO.NET Data Services") is a component of the .NET Framework that enables you to create services that use the Open Data Protocol (OData) to expose and consume data over the Web or intranet by using the semantics of representational state transfer (REST...
  • Wiki Page: Synchronize with Parameter Based Filters - Microsoft Sync Framework

    Let’s imagine a scenario where you want to sync data based on a filter. For an example your server database has an “EMPLOYEE” master table and it has all the employee records of all your branches. Now you have two branch office databases for your two branches, and you want to download relevant employee...
  • Wiki Page: WCF Data Services : Vue d'ensemble (fr-FR)

    WCF Data Services (anciennement « ADO.NET Data Services ») est un composant du .NET Framework qui vous permet de créer des services qui utilisent Open Data Protocol (OData) pour exposer et consommer des données sur le Web ou l'intranet à l'aide de la sémantique de representational state transfer...
  • Wiki Page: How To Determine the .NET Framework Installed Versions

    This topic is a how to. Please keep it as clear and simple as possible. Avoid speculative discussions as well as a deep dive into underlying mechanisms or related technologies. Table of Contents Introduction The Microsoft.NET\Framework Folder Registry Keys Determining the .NET Framework...
  • Wiki Page: Come determinare le versioni di .NET Framework installate (it-IT)

    Questo argomento è un how to. Si prega di mantenerlo chiaro e semplice per quanto possibile. Evitare discussioni speculative, come pure un esame in profondità dei meccanismi sottostanti o delle tecnologie correlate. Table of Contents Introduzione La cartella Microsoft.NET\Framework...
Page 1 of 2 (33 items) 12
Can't find it? Write it!