iTextSharp.text.xml.xmp.XmpSchema.Process C# (CSharp) Method

Process() protected method

protected Process ( StringBuilder buf, Object p ) : void
buf StringBuilder
p Object
return void
        protected void Process(StringBuilder buf, Object p)
        {
            buf.Append('<');
            buf.Append(p);
            buf.Append('>');
            buf.Append(this[p.ToString()]);
            buf.Append("</");
            buf.Append(p);
            buf.Append('>');
        }