public void Write_blip(TextWriter s)
 {
     if (_blip != null)
     {
         _blip.Write(s, "blip");
     }
 }
示例#2
0
 public void Write_blip(TextWriter s, int depth, Dictionary <string, string> namespaces)
 {
     if (_blip != null)
     {
         _blip.Write(s, "blip", depth + 1, namespaces);
     }
 }