Castle.MonoRail.Framework.AssemblySourceInfo.GetTemplateStream C# (CSharp) Method

GetTemplateStream() public method

Gets the template stream.
public GetTemplateStream ( String templateName ) : Stream
templateName String Name of the template.
return Stream
		public Stream GetTemplateStream(String templateName)
		{
			String resourcePath = (String) entries[NormalizeTemplateName(templateName)];

			return loadedAssembly.GetManifestResourceStream(resourcePath);
		}