[To be supplied.]
[C#] In C#, this member is the indexer for the ReferenceMap class.
[Visual Basic] Public Default Property Item( _ ByVal url As String _ ) As Object [C#] public object this[ string url ] {get; set;} [C++] public: __property Object* get_Item( String* url ); public: __property void set_Item( String* url, Object* ); [JScript] returnValue = ReferenceMapObject.Item(url); ReferenceMapObject.Item(url) = returnValue; -or- returnValue = ReferenceMapObject(url); ReferenceMapObject(url) = 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.
ReferenceMap Class | ReferenceMap Members | System.Web.Services.Discovery Namespace