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!

XmlWriter.Item (Int32)

[To be supplied.]

[C#] In C#, this member is the indexer for the XmlWriter class.

[Visual Basic]
Overloads Overridable Public Default Property Item( _
   ByVal i As Integer _
) As Object
[C#]
public object this[
   int i
] {virtual get; virtual set;}
[C++]
public: __property virtual Object* get_Item(
   int i
);
public: __property virtual void set_Item(
   int i,
   Object*
);
[JScript]
returnValue = XmlWriterObject.Item(i);
XmlWriterObject.Item(i) = returnValue;
-or-
returnValue = XmlWriterObject(i);
XmlWriterObject(i) = returnValue;

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed Item property whose type is Object and whose index type is String.

Arguments [JScript]

i
[To be supplied.]

Parameters [Visual Basic, C#, C++]

i
[To be supplied.]

See Also

XmlWriter Class | XmlWriter Members | System.Data.XML Namespace | XmlWriter.Item Overload List