2003-01-15 04:24:50 +00:00
|
|
|
public void Write (string buffer)
|
|
|
|
{
|
2003-02-05 06:30:34 +00:00
|
|
|
byte [] bytes = System.Text.Encoding.UTF8.GetBytes (buffer);
|
|
|
|
|
2004-05-03 14:40:16 +00:00
|
|
|
gtk_html_stream_write (Handle, bytes, bytes.Length);
|
2003-01-15 04:24:50 +00:00
|
|
|
}
|