CodeRush Xpress for C# - 0 views
Subscribing to Content with Web Slices - 0 views
OpenService Accelerators Developer Guide - 0 views
VS2010 and .NET Framework 4.0 CTP - 0 views
Touchless SDK - CodePlex - 0 views
-
The Touchless SDK enables developers to create multi-touch based applications using a webcam for input. Yeah ... touch without touching. The main idea: to offer users a new and cheap way of experiencing multi-touch capabilities, without the need of expensive hardware or software. All the user needs is a camera, which will track colored markers defined by the user.
WPF Chrome - MSDN Code Gallery - 0 views
ImageX Command-Line Options - 0 views
Mvp.Xml Project - Home - 0 views
MSDN: Attached Properties Overview - 0 views
Windows Vista update - improves compatibility, reliability, and stability - 0 views
-
It improves the stability of Windows PowerShell.
-
It shortens the recovery time after Windows Vista experiences a period of inactivity.
-
It improves the reliability of Windows Vista when you open the menu of a startup application.
- ...1 more annotation...
Deriving from WebClient to handle persisting cookies for login - 0 views
-
Then just use the ExWebClient class to make your requests;
-
Public Class CookieWebClient : Inherits WebClient ' overridden to add cookie headers to http requests. Protected Overrides Function GetWebRequest(ByVal address As System.Uri) As System.Net.WebRequest Dim request As WebRequest = MyBase.GetWebRequest(address) If TypeOf request Is HttpWebRequest Then DirectCast(request, HttpWebRequest).CookieContainer = _cookies End If Return request End Function ' overridden to save cookies to the container for http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function ' overridden to save cookies to the container for async http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest, ByVal result As System.IAsyncResult) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request, result) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function Private Shared _cookies As CookieContainer = New CookieContainer End Class
/\/\o\/\/ PowerShelled: Large AD queries in Monad - 0 views
-
For searching for huge result sets in AD you need to set a PageSize, or maybe do the paging by hand.
Related:
http://groups.google.com/group/microsoft.public.windows.server.scripting/tree/browse_frm/thread/32864b65a7a4fb70/14689e6f46898340
« First
‹ Previous
201 - 220 of 310
Next ›
Last »
Showing 20▼ items per page