WriteWhitespace() 공개 메소드

public WriteWhitespace ( string ws ) : void
ws string
리턴 void
예제 #1
0
 public override void WriteWhitespace(string ws)
 {
     if (_wrapped == null)
     {
         _eventCache.WriteWhitespace(ws);
     }
     else
     {
         _wrapped.WriteWhitespace(ws);
     }
 }
예제 #2
0
 public override void WriteWhitespace(string?ws)
 {
     if (!_inAttr && (_inCDataSection || StartCDataSection()))
     {
         _wrapped.WriteCData(ws);
     }
     else
     {
         _wrapped.WriteWhitespace(ws);
     }
 }