NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TextWriter.Write (String)

Writes a string to the text stream.

[Visual Basic]
Overloads Overridable Public Sub Write( _
   ByVal value As String _
)
[C#]
public virtual void Write(
   string value
);
[C++]
public: virtual void Write(
   String* value
);
[JScript]
public function Write(
   value : String
);

Parameters

value
The string to write.

Exceptions

Exception Type Condition
ArgumentNullException A a null reference (in Visual Basic Nothing) string or object is passed.
IOException An I/O error occurs.

Remarks

If value is null, nothing is written to the text stream.

See Also

TextWriter Class | TextWriter Members | System.IO Namespace | TextWriter.Write Overload List