namespace Mustache { /// /// Holds information describing a parameter that creates a new context. /// public sealed class ContextParameter { /// /// Initializes a new instance of a ContextParameter. /// /// The parameter that is used to create a new context. /// The key whose corresponding value will be used to create the context. internal ContextParameter(string parameter, string argument) { Parameter = parameter; Argument = argument; } /// /// Gets the parameter that is used to create a new context. /// public string Parameter { get; } /// /// Gets the key whose corresponding value will be used to create the context. /// public string Argument { get; } } }