32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Web;
|
|
|
|
namespace Mustache {
|
|
|
|
public class UrlEncodeTagDefinition : ContentTagDefinition {
|
|
public UrlEncodeTagDefinition()
|
|
: base("urlencode") {
|
|
}
|
|
|
|
public override IEnumerable<NestedContext> GetChildContext(TextWriter writer,Scope keyScope,Dictionary<string, object> arguments,Scope contextScope) {
|
|
NestedContext context = new NestedContext() {
|
|
KeyScope = keyScope,
|
|
Writer = new StringWriter(),
|
|
WriterNeedsConsidated = true,
|
|
};
|
|
yield return context;
|
|
}
|
|
|
|
public override IEnumerable<TagParameter> GetChildContextParameters() {
|
|
return new TagParameter[] { new TagParameter("collection") };
|
|
}
|
|
|
|
public override string ConsolidateWriter(TextWriter writer, Dictionary<string, object> arguments) {
|
|
return HttpUtility.UrlEncode(writer.ToString());
|
|
}
|
|
}
|
|
} |