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, Object, Object, Object)

Writes out a formatted string, using the same semantics as Format.

[Visual Basic]
Overloads Overridable Public Sub Write( _
   ByVal format As String, _
   ByVal arg0 As Object, _
   ByVal arg1 As Object, _
   ByVal arg2 As Object _
)
[C#]
public virtual void Write(
   string format,
   object arg0,
   object arg1,
   object arg2
);
[C++]
public: virtual void Write(
   String* format,
   Object* arg0,
   Object* arg1,
   Object* arg2
);
[JScript]
public function Write(
   format : String,
   arg0 : Object,
   arg1 : Object,
   arg2 : Object
);

Parameters

format
The formatting string.
arg0
The object to write into format string.
arg1
The object to write into format string.
arg2
The object to write into format string.

Exceptions

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

See Also

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