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 (Boolean)

Writes the text representation of a Boolean value to the text stream.

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

Parameters

value
The Boolean to write.

Exceptions

Exception Type Condition
IOException An I/O error occurs.

Remarks

This method outputs either Boolean.TrueString or Boolean.FalseString.

See Also

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