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!

IConfigItem.Item

Gets ot sets the value of a property. Values can be of type Int32, Boolean, String or String[].

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

Overload List

Retrieves the value of a property given the index of the property. The index of the property is simply its order in the schema definition of the Config Type.

[Visual Basic] Overloads Default Property Item(Integer) As Object
[C#] object this[int] {get; set;}
[C++] Object* get_Item(int) = 0;
void set_Item(int, Object*) = 0;
[JScript] IConfigItem.Item (int)

Retrieves the value of a property given the name of the property.

[Visual Basic] Overloads Default Property Item(String) As Object
[C#] object this[String] {get; set;}
[C++] Object* get_Item(String*) = 0;
void set_Item(String*, Object*) = 0;
[JScript] IConfigItem.Item (String)

See Also

IConfigItem Interface | IConfigItem Members | System.Configuration Namespace