.NET news » Search results

Search results for query "System" (117):

Parallel programming in .NET - Internals

.NET 4 brings a powerful Task library to support a piece of code to run in parallel processors. What it does just simply spawns threads into multiple processes using the newly written task libraries (System.Threading.Tasks) in mscorlib 4.0. Task libraries contain methods like For, ForEach and Invok
2010-07-21 14:24:00   Source: Parallel programming in .NET - Internals   Tags: Performance

Threading in C#: In-Depth Article

Extensive article on threading in C#. Covers such topics as Thread Pooling, safe use of Abort, when and how to use Synchronization Contexts, Wait Handles vs Wait and Pulse, Threading vs System Timers, implications of Memory Barriers and volatility, uses for Local Storage, subclassing BackgroundWorker. Free.
2006-05-17 09:26:32   Source: Threading in C#: In-Depth Article   Tags: C#

Using AppDomains to Build Reliable Systems

The first step to building reliable systems is to accept that it is impossible. Instead, we will attempt to build a more reliable system from a collection of smaller unreliable components. The idea is to manage failure rather than pursue an impossible perfection. Find out how.

The Working Programmer: Talk to Me, Part 3: Meet the Therapist

After building a simple cloud-hosted voice-input system and a chat-bot named Feliza to respond to user input in the first two parts of this series, Ted Neward takes his project a bit further by combining the two systems, showing how the host, Tropo, offers voice/SMS access over HTTP/REST-like channels.
2012-04-30 18:00:00   Source: The Working Programmer: Talk to Me, Part 3: Meet the...   Tags: Internet

Your First Step to the Silverlight Voice/Video Chatting Client/Server

What you should to do to create your own Silverlight Voice/Video chatting system.

JavaScript Security: Web to Windows 8: Security

Web developers switching to Windows 8 development with JavaScript need to update their views on security. With the tools available in Windows 8, you can transform JavaScript security from a facade to a multifaceted defense system that protects both your data and your users.
2012-10-31 18:00:00   Source: JavaScript Security: Web to Windows 8: Security   Tags: Security

Take Your Apps Far and Wide with a GPS Tracking System

You already know that GPS is used extensively in a wide variety of mobile devices in order to track delivery and service vehicles—or any other mobile fleet. This kind of application is not as difficult as you may at first think. Find out how to use Visual Studio to create a GPS tracking app, with maps, that runs on Windows Mobile Pocket PC devices.

Microsecond and Millisecond .NET Timer

MicroTimer: A microsecond and millisecond timer in C# that is used in a similar way to the .NET System.Timers.Timer
2010-08-01 02:23:00   Source: Microsecond and Millisecond .NET Timer   Tags: C#

MailMergeLib - A .NET Mail Client Library

MailMergeLib is a SMTP mail client library. It makes use of .NET System.Net.Mail and provides comfortable mail merge capabilities. MailMergeLib corrects a number of the most annoying bugs and RFC violations that .NET 2.0 to .NET 4.0 suffer from.
2010-05-03 13:27:00   Source: MailMergeLib - A .NET Mail Client Library   Tags: Internet

Using the TreeView Control and a DataList to Create an Online Image Gallery

the treeview control, when viewed through a browser.

ASP.NET version 2.0 includes a wide array of Web controls not found in previous versions. One such control is the TreeView, which is ideal for displaying hierarchical data. The TreeView control can be bound to a hierarchical data source such as the XmlDataSource or SiteMapDataSource, or can be constructed programmatically.

One common source of hierarchical data is the web server's file system. In many scenarios, there may be a folder that contains subfolders and files that the user needs to be able to browse. Using the classes in the System.IO namespace, we can programmatically populate the TreeView with the directory structure of our website. Then, when the user clicks a folder, the selected folder's files can be displayed.

In this article we will examine how to create a simple image gallery web page that's a breeze to maintain. The image gallery lacks the bells and whistles found in more complex and feature-rich image galleries, but this one is a cinch to deploy and maintain. We'll be using two Web controls: a TreeView to list the folders and subfolders in which the images reside; and a DataList control that lists each image in the selected folder..

2006-08-29 19:00:00   Source: Using the TreeView Control and a DataList to Create an...   Tags: ASP.NET