|
|
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.
|
13 Articles match "Public"
|
Related DevelopMentor Courses
|
MORE
|
|
Virtual Foundations of C# Programming and the.NET Framework (Part 1)
Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Use properties to implement the private data/public accessor pattern Avoid dll conflicts during deployment Virtual Foundations of C# Programming and the.NET Framework is ".NET NET 101" for developers moving to.NET. Explore core C# features like classes, inheritance, namespaces, and events. In this course, you spend half your time on the C# language and half on the.NET platform. interface vs. abstract class, or property vs.
DevelopMentor Courses
- Wednesday, February 17, 2010
Foundations of C# Programming and the.NET Framework
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., less code!) NET 101" for developers moving to.NET. field)?
DevelopMentor Courses
- Friday, June 12, 2009
NET Security
Learn about symmetric and public-key cryptography and operating system security concepts important for developers. Public Key Cryptography and SSL This module introduces asymmetric (public) key cryptography and certificates. For instance, Kerberos is a great choice for closed Intranet applications, but for public Web applications, SSL coupled with basic authentication or some sort of forms authentication is much more reliable. But not every security feature is also a secure feature. You'll get answers to these questions: How do I protect data?
DevelopMentor Courses
- Friday, June 12, 2009
|
234 Articles match "Public"
|
The Latest from DevelopMentor
|
MORE
|
|
Workflows and no persist zones
The NoPersistProperty is also internal but that is no problem as all we need to do if check if there is a object stored under the name "System.Activities.NoPersistProperty", something we can do with the following activity: public class CheckForNoPersistZone : NativeActivity. {. public OutArgument IsInNoPersistScope { get; set; }. public class NoPersistZone : NativeActivity. {. public Activity Body { get; set; }. There are times when a workflow can't be persisted safely using a SqlWorkflowInstanceStore. No problem there. But where? But wait. null ); }. }.
The Problem Solver
- Sunday, August 22, 2010
Conferences, Conferences, Training - a busy autumn
14 October In between times, I’m also delivering several public training courses - not to mention private ones but there is no point in me telling you about those. I’m speaking at a bunch of conferences this autumn so if any reader out there would like to hear me speak, or ask a questions you might get yourself a ticket to one of these: Jax London / DevCon , 27-29 September, London: Return to Requirements, 27 September IRM IIBA Business Analysis Conference , 27-29 September, London: Objective Agility, what does it take to be an Agile Company?,
Allan Kelly's Blog
- Sunday, August 8, 2010
WIF, ASP.NET 4.0 and Request Validation
The WIF SDK (v4) contains a sample validator that does exactly that: public class WSFedRequestValidator : RequestValidator. {. Since the response of a WS-Federation sign-in request contains XML, the ASP.NET built-in request validation will trigger an exception. To solve this, request validation needs to be turned off for pages receiving such a response message. Starting with ASP.NET 4.0 you can plug in your own request validation logic. This allows letting WS-Federation messages through, while applying all standard request validation to all other requests. WSFederationConstants.
www.leastprivilege.com
- Saturday, July 24, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Public training
regularly get e-mails from people asking when I’m running a public training course. Truth is, public training adds lots of additional hoops to jump through to be successful, e.g. ve now teamed up with the folks at Skills Matter to offer public training, specifically Agile Project Management. Speaking of speaking - as I was in my last post. getting a good venue. Consequently I usually confine myself to in-house training for organizations. These sessions are running throughout 2009 in London and Aarhus, Denmark. More details on the Skills Matter web site
Allan Kelly's Blog
- Saturday, November 29, 2008
-
Mixed mode DLLs: Problem with public functions using native types as arguments
public ref class Conversions. {. public: static void S2S(System::String^ s1, std::string& s2) { /*. */ }. }; This code should compile as expected, however, it would not give you the expected result! Why is a public static function S2S of a public type Convesions not accessible? This managed wrapper value type is private, therefore, the Conversions::S2S cannot be called from outside the assembly even though it is a public function of a public type. Assume the native wrapper type for std::string was public. include. using "Conversions.dll".
Marcus' Blog
- Tuesday, March 21, 2006
-
Public sector ITC
The Work Foundation (yes, odd name but it makes sense when you read their description of themselves ) has released a report on public sector IT projects. Sometimes it seems hardly a week goes by in the UK without the media publicizing another failed Government IT project. Although the report is about the public sector I think most private sector organizations could benefit from having a look at it The report is called How ICT? and is free. There is also a short summary in the FT – you might need a subscription.) Well, ICT is about more than technology.
Allan Kelly's Blog
- Monday, September 18, 2006
-
Public training course next week
m teaching two public courses next week fro DeveloMentor in London - Foundations and Requirements. While I’m on the subject of training courses. believe there are places left, if you (or someone you know) calls DevelopMentor quickly and mentions my name you might even get a discount
Allan Kelly's Blog
- Tuesday, September 15, 2009
-
Using Model – View – ViewModel with Silverlight
5: public class Customer : INotifyPropertyChanged. 7: private string _firstName; 8: private string _lastName; 9: 10: public string FirstName. 20: public string LastName. 30: 31: 32: public string FullName. 36: 37: public event PropertyChangedEventHandler PropertyChanged; 38: 39: protected void OnPropertyChanged( string propertyName). 6: public partial class CustomerView : UserControl. 8: public CustomerView(). 7: public class CustomerViewModel : INotifyPropertyChanged. 9: private Customer _model; 10: 11: public CustomerViewModel().
The Problem Solver
- Tuesday, April 7, 2009
-
Rehosting the Workflow Designer in WF4
public class ValidationErrorService : IValidationErrorService. {. private IList _errorList; public ValidationErrorService(IList errorList). {. public void ShowValidationErrors(IList errors). {. 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! The WorkflowDesigner The WorkflowDesigner is the main class to work with.
The Problem Solver
- Wednesday, December 23, 2009
-
Using WF4 bookmarks with IWorkflowInstanceExtension
private WorkflowInstanceProxy _instance; public IEnumerable GetAdditionalExtensions(). {. public void SetInstance(WorkflowInstanceProxy instance). {. public void WaitSome(Bookmark bookmark). {. 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? Enjoy!
The Problem Solver
- Wednesday, January 27, 2010
|
|
|