Have you ever wanted to inject some dynamic text into all of the ASP.NET Web Form pages in your site whether or not they use a master page?
This sample project shows how to do just that: inject some dynamic text into all of the web page head tags in an ASP.NET Web Forms project.
It will work for pages that use master pages to generate their header and for pages that do not.
To accomplish this we create an ASP.Net HttpModule which takes advantage of the ASP.NET pipeline and runs our code to create the custom header information responding to the correct page life-cycle event.
More details to come...
April 12, 2012
April 9, 2012
Conditional Builder Design Pattern
Have you ever wanted to use the Builder design pattern to create a really cool fluent interface for building objects but you wanted to add conditions to the building? The good news is that you can do something like so:
Notice how in this contrived example a ninja only gets the "hide in shadows" skill after reaching 6th level? To handle a conditional builder take a look at the following code:
For a complete sample project check it out on my GitHub account!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var level = new Random().Next(1, 20); | |
var ninjaBuilder = NinjaBuilder | |
.CreateNinjaBuilder() | |
.AtLevel(level) | |
.WithShurikens(10) | |
.WithSkill("hideinshadows") | |
.When(() => level > 5); | |
var ninja = ninjaBuilder.Build(); |
Notice how in this contrived example a ninja only gets the "hide in shadows" skill after reaching 6th level? To handle a conditional builder take a look at the following code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NinjaBuilder | |
{ | |
private readonly List<Action<Ninja>> _builderActions; | |
public static NinjaBuilder CreateNinjaBuilder() | |
{ | |
return new NinjaBuilder(); | |
} | |
public NinjaBuilder() | |
{ | |
_builderActions = new List<Action<Ninja>>(); | |
} | |
public NinjaBuilder AtLevel(int level) | |
{ | |
_builderActions.Add(n => n.Level = level); | |
return this; | |
} | |
public NinjaBuilder WithShurikens(int numShirukens) | |
{ | |
_builderActions.Add(n => n.Shirukens = numShirukens); | |
return this; | |
} | |
public NinjaBuilder WithSkill(string skill) | |
{ | |
_builderActions.Add(s => s.Skill = skill); | |
return this; | |
} | |
public NinjaBuilder When(Func<Boolean> condition) | |
{ | |
var result = condition.Invoke(); | |
if (!result) | |
{ | |
var oldAction = _builderActions[_builderActions.Count - 1]; | |
_builderActions.Remove(oldAction); | |
} | |
return this; | |
} | |
public Ninja Build() | |
{ | |
var ninja = new Ninja(); | |
_builderActions.ForEach(ba => ba(ninja)); | |
return ninja; | |
} |
Labels:
.Net,
builder,
C#,
design pattern
Subscribe to:
Posts (Atom)