From e04e4decda8e2554df1ee14d645feef92ce408ec Mon Sep 17 00:00:00 2001 From: Jonathan Channon Date: Thu, 20 Dec 2012 22:34:08 +0000 Subject: [PATCH] Added some more XML comments --- src/Nancy.ViewEngines.Razor/TextResourceFinder.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Nancy.ViewEngines.Razor/TextResourceFinder.cs b/src/Nancy.ViewEngines.Razor/TextResourceFinder.cs index 92ea9721dc..907b062d41 100644 --- a/src/Nancy.ViewEngines.Razor/TextResourceFinder.cs +++ b/src/Nancy.ViewEngines.Razor/TextResourceFinder.cs @@ -22,6 +22,12 @@ public TextResourceFinder(ITextResource textResource, NancyContext context) this.context = context; } + /// + /// Finds text resource + /// + /// GetMemberBinder with dynamic text key + /// Text item + /// public override bool TryGetMember(GetMemberBinder binder, out object result) { result = this.textResource[binder.Name, this.context];