| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
8 Articles match "Library","Sample"
| Related DevelopMentor Courses | MORE | | Brock Allen: CORS support in WebAPI, MVC and IIS with Thinktecture.IdentityModel My second contribution to the Thinktecture.IdentityModel security library is a full-featured CORS implementation. Many other sample implementations only emit the Access-Control-Allow-Origin header, but there’s more to it than that. The implementation in Thinktecture.IdentityModel follows the W3C Working Draft 3 from April 2012. There is a rich configuration API to control the various settings that are DevelopMentor Courses - Thursday, June 28, 2012 Concepts and Architecture of the STL C++'s Standard Template Library (STL) is uniquely powerful and extensible, and it facilitates the creation of very efficient code. Participants will gain: An understanding of the architecture behind the STL, including its core components and concepts. Usage guidelines that explain how to avoid subtle STL correctness and performance traps. An understanding of the applications and limitations of STL allocators. Format: Lecture and question/answer. There are no hands-on exercises, but participants are welcome to use their computers to experiment with the course material as it is presented. DevelopMentor Courses - Tuesday, March 1, 2011 Effective STL Programming Training This seminar, based on Meyers' Effective STL , reveals the critical rules of thumb employed by the experts -- the things they almost always do or almost always avoid doing -- to get the most out of the library. Participants will gain: Insights into the behavior of sequence, associative, contiguous-memory, and node-based containers, including new containers specified in TR1. Knowledge of techniques to use both containers and algorithms most efficiently. An understanding of the applications and limitations of STL allocators. Using "the swap trick" to perform "shrink to fit." DevelopMentor Courses - Tuesday, March 1, 2011 |
37 Articles match "Library","Sample"
| The Latest from DevelopMentor | MORE | | Optimistic concurrency in MongoDB using.NET and C# 'This article demonstrates a technique and supporting library for adding optimistic concurrency control to NoSQL databases and MongoDB in particular. The only thing you need to do to use this library in your apps is to implement this interface on all top-level MongoDB entities and use a class derived from ConcurrentDataContext (in library below) for your data access. Here’s the download for the source, library with the concurrent data context, and the sample app: MongoDB.Kennedy.zip. Quickly, what is optimistic concurrency control? Edit in memory. Michael C. Kennedy's Weblog - Monday, April 8, 2013 ASP.NET WebAPI Security 4: Examples for various Authentication Scenarios The Thinktecture.IdentityModel.Http repository includes a number of samples for the various authentication scenarios. My library contains a class that can create the Basic Authentication header value. The OAuth2Client class is part of my library. So you can see that it’s pretty straightforward to implement various authentication scenarios using WebAPI and my authentication library. Stay tuned for more client samples! All the clients follow a basic pattern: Acquire client credential (a single token, multiple tokens, username/password). Call Service. Result; }. www.leastprivilege.com - Wednesday, March 14, 2012 ASP.NET WebAPI Security 3: Extensible Authentication Framework username, password) => username == password); You simply have to provide a password validation function which could of course point back to your existing password library or e.g. membership. var config = new AuthenticationConfiguration. {. // sample claims transformation for consultants sample, comment out to see raw claims. You can find the full source code and some samples here. In the next post I will describe some of the samples in the download, and then move on to authorization. In my last post, I described the identity architecture of ASP.NET Web API. www.leastprivilege.com - Tuesday, March 13, 2012 | -
| The Best from DevelopMentor | MORE | - WPF MVVM Helper Library (WPF + MVVM = testability)
One of the things I give the students is a library to do MVVM - I also use it in my consulting work. bit of history -- the library is really just a place where I dump all kinds of useful utility classes, helpers, wrappers, etc. For example, there was a recent thread on the Mediator pattern (initiated by Marlon Grech and added on by Josh Smith, Laurent Bugnion and others); I already had a message mediator in place but the idea of using an attribute to hook it up was a great one that I adopted into my library just because I like the idea. that I tend to use a lot. file -. - Jason’s AJAX Component Library
So here is the first release of Jason’s AJAX Component Library. don’t have any examples of the components it contains online so you’re going to have to download the solution and take a look at the samples on your own machine. The library contains the following extender controls: ReorderColumnsExtender. [Update: This release won't build if you extracted it to a folder with spaces in the path. You might want to get Release 2 instead.]. I’ve been really busy recently working on some extender controls for ASP.NET AJAX. ResizeColumnsExtender. Jason Diamond - Monday, June 4, 2007 - ASP.NET WebAPI Security 4: Examples for various Authentication Scenarios
The Thinktecture.IdentityModel.Http repository includes a number of samples for the various authentication scenarios. My library contains a class that can create the Basic Authentication header value. The OAuth2Client class is part of my library. So you can see that it’s pretty straightforward to implement various authentication scenarios using WebAPI and my authentication library. Stay tuned for more client samples! All the clients follow a basic pattern: Acquire client credential (a single token, multiple tokens, username/password). Call Service. Result; }. www.leastprivilege.com - Wednesday, March 14, 2012 - Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations. Rather it's a library that can be used in conjunction with any of these testing frameworks. Download the library with sample test project here: Kennedy.WorkflowTesting.zip (216 KB). don't have to write about that now, but you'll see it used in the sample with my library. After reading it, I can say that there's still a long way to go - and this library will get us most of the way there. The Sample: Let me set the stage first before we see the test code. Michael C. Kennedy's Weblog - Sunday, January 18, 2009 - ASP.NET WebAPI Security 3: Extensible Authentication Framework
username, password) => username == password); You simply have to provide a password validation function which could of course point back to your existing password library or e.g. membership. var config = new AuthenticationConfiguration. {. // sample claims transformation for consultants sample, comment out to see raw claims. You can find the full source code and some samples here. In the next post I will describe some of the samples in the download, and then move on to authorization. In my last post, I described the identity architecture of ASP.NET Web API. www.leastprivilege.com - Tuesday, March 13, 2012 - NuGet and projects under source control
All 3rp party libraries added using NuGet end up under a solution folder called Packages. In my sample project this file looks like this. NuGet is one of those awesome additions to Visual Studio that I wonder how I could have gone for that long without it. And as I am not the only one who likes it we had a bit of a discussion on Twitter last week about how to go about using NuGet with projects under source control that are shared by multiple users. The problem is nothing new and has been around forever. Adding NuGet to the mix doesn’t really have to change anything. Conclusion. The Problem Solver - Tuesday, April 12, 2011 - Simple MVVM Toolkit versus MVVM Light Toolkit
Presently MVVM Light requires a manual installation , but the download for Simple MVVM is an installer which gives you the assembly binaries, external libraries, samples and source code. Simple MVVM Toolkit, on the other hand, has Documentation that includes the following topics: Introduction , Features , Prerequisites , Download Contents , Installation , Samples , and a Programming Reference. That is why I have focused a great deal of my energy on building two categories of sample applications that are installed with the Simple MVVM Toolkit. Platforms. Support. Tony and Zuzana's World - Saturday, April 23, 2011 %>
| | |