TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
.NET Framework
Tagged Content List
Wiki Page:
IEnumerable<T> Vs. IQueryable<T>
Jaliya Udagedara
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>...
on
22 Sep 2013
Wiki Page:
Top 8 Features of the .NET Framework 4.0 & Visual Studio
Richard Mueller
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...
on
17 Sep 2013
Wiki Page:
Forms Authentication with Multiple Login Pages
Jaliya Udagedara
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...
on
17 Sep 2013
Wiki Page:
C#
Maheshkumar S Tiwari
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...
on
13 Sep 2013
Wiki Page:
Progress of a Task in C#
Ed Price - MSFT
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...
on
7 Sep 2013
Wiki Page:
Introduction to WCF Data Services
Ed Price - MSFT
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...
on
7 Sep 2013
Wiki Page:
WCF Data Services with Entity Framework Provider
Ed Price - MSFT
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...
on
7 Sep 2013
Wiki Page:
Wiki: Platforms Portal
Gokan Ozcifci
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...
on
11 Aug 2013
Wiki Page:
Visual C#: MultiThreadSingleton
Ed Price - MSFT
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...
on
8 Aug 2013
Wiki Page:
Set WCF Service Authentication to Use a Custom Username & Password over HTTP
Naomi N
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...
on
6 Aug 2013
Wiki Page:
Using Two Interfaces with the Same Method Signature in One Class
Naomi N
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...
on
6 Aug 2013
Wiki Page:
Windows Server 2012 üzerinde .NET Framework 3.5 kurulumu
Gokan Ozcifci
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...
on
31 Jul 2013
Wiki Page:
Host .NET Framework 3.x Services in AppFabric
Ed Price - MSFT
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...
on
13 Jul 2013
Wiki Page:
.NET Framework Overview
Ed Price - MSFT
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...
on
13 Jul 2013
Wiki Page:
Web Platform Installer
Richard Mueller
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...
on
11 Jun 2013
Wiki Page:
How to Enable .NET Framework 3.5 in Windows 8 Client
Fernando Lugão Veltem
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...
on
24 May 2013
Wiki Page:
Event ID 35: SidebySide
Ed Price - MSFT
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 ...
on
19 May 2013
Wiki Page:
Exception Handling in the .NET Framework Data Provider for ODBC, OLE DB, and for SQL Server
Richard Mueller
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...
on
25 Apr 2013
Wiki Page:
WorkflowRuntimeSection WorkflowDefinitionCacheCapacity Added to .Net Framework 3.5 in QFE
Richard Mueller
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...
on
19 Apr 2013
Wiki Page:
Using ReceiveAndSendReply Inside a Pick Activity (WF)
Yagmoth555
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...
on
9 Apr 2013
Wiki Page:
WCF Data Services: Overview
Ed Price - MSFT
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...
on
19 Feb 2013
Wiki Page:
Synchronize with Parameter Based Filters - Microsoft Sync Framework
Jaliya Udagedara
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...
on
19 Feb 2013
Wiki Page:
WCF Data Services : Vue d'ensemble (fr-FR)
Ed Price - MSFT
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...
on
14 Feb 2013
Wiki Page:
How To Determine the .NET Framework Installed Versions
Luigi Bruno
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...
on
10 Feb 2013
Wiki Page:
Come determinare le versioni di .NET Framework installate (it-IT)
Luigi Bruno
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...
on
10 Feb 2013
Page 1 of 2 (33 items)
1
2
Can't find it? Write it!
Post an Article