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

Writes the text representation of an integer to the text stream.

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

Parameters

value
The unsigned integer to write.

Exceptions

Exception Type Condition
ArgumentNullException A null string or object is passed.
IOException An I/O error occurs.

Remarks

The text representation of the specified value is produced by calling ToString.

See Also

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