| |
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.
|
66 Articles match "Class"
| Related DevelopMentor Courses | MORE | | Foundations of C# Programming and the.NET Framework Training Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Perform error notification and error handling using exceptions Use properties to implement the private data/public accessor pattern Use namespaces to group related types Use delegates and events to implement callbacks Override Object class methods such as ToString Avoid dll conflicts during deployment Use dynamic binding and polymorphism to write generic code (i.e., interface vs. abstract class, or property vs. field)? DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (US) Training EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. Learn to write code using new.NET class libraries like LINQ and Silverlight. EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. Beyond the Basics LINQ to Objects and LINQ to XML Entity Framework Introduction Day 2 Model-View-ViewModel for WPF and Silverlight PFx: Task: a Unified Threading API PFx: The Parallel Class and Concurrent Data Structures Building WCF REST Services [after?class] and jQuery. and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Essential Google App Engine This class will take Java Developers familiar with basic Java web applications and teach them the in's and out's of Google App Engine (GAE). ? Topics covered include: Using Eclipse to Create GAE web applications Creating dynamic web applications Working with files and images in GAE Storing data and designing schemas for the NoSQL Datastore database Using fully relational data with Hosted SQL Deploying and maintaining Google App Engine applications Securing access to your application with Google user accounts, oAuth, OpenID and more. Also in this module we demonstrate the URL fetch API. DevelopMentor Courses - Wednesday, October 5, 2011 |
425 Articles match "Class"
| The Latest from DevelopMentor | MORE | | Michael’s.NET Suggested Reading List Want to get ready for this class or a class like it or just get a quick-start on.NET? With Guerrilla.NET from DevelopMentor coming up on May 7th, it’s time to refresh my.NET reading list. Here’s what I would recommend. … Continue reading → DevelopMentor.NET Michael C. Kennedy's Weblog - Friday, April 27, 2012 Roll Your Own REST-ful WCF Router SerializationHelper is a class I wrote to serialize Xml and Json using WCF’s data contract serializer.) Download the code for this post here. Recently I’ve been tasked with building a WCF routing service and faced the choice of whether to go with the built-in router that ships with WCF 4.0 , or to build one from scratch. The built-in router is great for a lot of different scenarios – it provides content-based routing, multicasting, protocol bridging, and failover-based routing. This is a very important requirement for performance and scalability. FirstOrDefault(); if (region != Enjoy. Tony and Zuzana's World - Tuesday, April 24, 2012 Ninject WCF Extensions for RESTful Services found out that the static KernelContainer class had been deprecated, so I had to refactor my code to remove references to it. In this case, you’ll want to supply a ServiceHostFactory-derived class when registering the service route, which let’s you specify an endpoint address that is different than the base HTTP address used for the SOAP endpoint. In my original blog post on this topic I introduced a NinjectServiceHelper class that can be used by test classes to spin up matching services and clients on the fly. Download the code for this post. NinjectWebCommon.cs Tony and Zuzana's World - Sunday, April 8, 2012 | -
| The Best from DevelopMentor | MORE | - Rehosting the Workflow Designer in WF4
The WorkflowDesigner The WorkflowDesigner is the main class to work with. public class ValidationErrorService : IValidationErrorService. {. Note: This blog post is written using the.NET framework 4.0 Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application. But possible is about all there was to say about it as it was pretty hard to do anything beyond the basics. Now that is more like it! This exposes the actual design surface through the View property and the linked property sheet through the PropertyInspectorView property. The Problem Solver - Wednesday, December 23, 2009 - Using dynamic objects in Silverlight 4
Creating the class to data bind to is simple. In this example I am using a Peron class with a regular FirstName property and all others are dong using indexed properties. The complete class, including INotifyPropertyChanged looks like this: public class Person : INotifyPropertyChanged. {. So i tried to create a Peron class deriving from Dictionary and adding a indexer to that but this doesn’t work, data binding completely fails to load the data. Note: This blog post is written using Silverlight 4.0 get; set; }. public Person(). {. get. {. set. {. get. {. The Problem Solver - Monday, April 12, 2010 - Using WF4 bookmarks with IWorkflowInstanceExtension
Using a IWorkflowInstanceExtension Workflow extensions can be of any type you want, there is no base class or interface requirement. class MyExtension : IWorkflowInstanceExtension. {. The new activity looks like this: public class MyBookmarkedActivity : NativeActivity. {. Note: This blog post is written using the.NET framework 4.0 Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. So what about using a WorkflowInvoker or a WorkflowServiceHost? return null ; }. Enjoy! The Problem Solver - Wednesday, January 27, 2010 - Changing the Icon on a custom activity designer
public sealed class MyWriteLine : CodeActivity. {. // Define an activity input argument of type string. The standard designer looks like this: < sap:ActivityDesigner x:Class ="WorkflowConsoleApplication3.MyWriteLineDesigner" xmlns ="[link]. < sap:ActivityDesigner x:Class ="WorkflowConsoleApplication3.MyWriteLineDesigner" xmlns ="[link]. Note: This blog post is written using the.NET framework 4.0 Beta 2 When I create custom activity designers the icon that appears is usually one of the first things I want to change. xmlns:x ="[link]. The Problem Solver - Monday, January 25, 2010 - Getting T4 templates to work with Silverlight
The reason being that Visual Studio decides to load the Silverlight version of System.dll which doesn’t contain all the required classes. 12: public class Demo. 3: public class Demo. Pretty nice, something I will be using a lot more often when developing all those repetitive DTO classes. In a previous blog post I mentioned that T4 templates didn’t quite work with Silverlight development. Fortunately I was not the first person to run into this limitation, Jason Jarrett did as well and he described the solution in a blog post here. 11: {. 13: {. 14: <#. The Problem Solver - Monday, March 23, 2009 - Using Model – View – ViewModel with Silverlight
The ViewModel is just another class. 5: public class Customer : INotifyPropertyChanged. 6: public partial class CustomerView : UserControl. The ViewModel class is the one that glues the View and the Model together, hence its name. Another example of a property like this would be the CSS class to use in an ASP.NET application. The complete ViewModel class looks like this: 1: using System.ComponentModel; 2: using System.Windows; 3: using SilverlightMVVMDemo.Model; 4: 5: namespace SilverlightMVVMDemo.ViewModel. The View is data bound to a ViewModel. 11: {. The Problem Solver - Tuesday, April 7, 2009 - Using the WCF Web API in an ASP.NET MVC application
public class BooksService: IDisposable. {. Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. So in this blog post I am going to show how to do the normal thing I Created an ASP.NET MVC 3 app to host the REST service. just prefer the MVC approach, you might not. The service we are going to host is pretty simple for now. Enjoy! The Problem Solver - Monday, June 13, 2011
| | |