void HtmlTokenizer.IWriter.Inlay(string textRaw, HtmlInlayType type)
 {
     RdFlushDeferredTag();
     WrWrite(EncodeInlay(DecodeInlay(textRaw, type), encoding), WsType.Ortho, WsType.Ortho);
 }
 public Inlay(string val, HtmlInlayType type)
 {
     Val  = val;
     Type = type;
 }
示例#3
0
 static Inlay DecodeInlay(string textRaw, HtmlInlayType type)
 {
     return(new Inlay(textRaw, type));
 }