Aqueduct.Configuration.Processors.ReplacementProcessor.ProcessPlaceholder C# (CSharp) Method

ProcessPlaceholder() private method

private ProcessPlaceholder ( Match placeholderMatch ) : string
placeholderMatch System.Text.RegularExpressions.Match
return string
        private string ProcessPlaceholder(Match placeholderMatch)
        {
            string placeholderString = placeholderMatch.Groups[1].Value;

            placeholderString = FindAndProcessReplacements(placeholderString);

            EnsureThereAreNoCircularReplacements(placeholderString);

            return GetReplacement(placeholderString);
        }