Malt.Reporting.OfficeXml.WordMLTemplate.ProcessDirectiveTag C# (CSharp) Method

ProcessDirectiveTag() private static method

private static ProcessDirectiveTag ( XmlDocument xml, XmlElement placeholderNode, string value ) : void
xml System.Xml.XmlDocument
placeholderNode System.Xml.XmlElement
value string
return void
        private static void ProcessDirectiveTag(
            XmlDocument xml, XmlElement placeholderNode, string value)
        {
            Debug.Assert(xml != null);
            Debug.Assert(placeholderNode != null);
            Debug.Assert(!string.IsNullOrEmpty(value));

            var directive = new DirectiveElement(xml, value);
            directive.ReduceTagByDirective(placeholderNode);
        }