WriteWhitespace() public method

public WriteWhitespace ( string ws ) : void
ws string
return void
示例#1
0
 public override void WriteWhitespace(string ws)
 {
     if (_wrapped == null)
     {
         _eventCache.WriteWhitespace(ws);
     }
     else
     {
         _wrapped.WriteWhitespace(ws);
     }
 }