interop.net.property
index
e:\vslrft\dlr\languages\ironpython\tests\interop\net\property\__init__.py

* Where the property/indexer is defined
  - interface
* Property/Indexer type
  - Same as described in the "field"
* How the property is defined
  - Static / instance
  - Read-write, read-only, write-only properties
    * Derivation scenario: base / derived type each has different accessor.
  - As interface implementation (interface-type . identifier)
* How the indexer is defined
  - Static / instance
  - this[parameter-list], or VB style, name[parameter-list]
    * signature again: ref, params
    * overloads
  - As interface implementation (interface-type.this[xxx], interface-type.Foo[xxx])
* set/get via Type|object (dot) (Static|Intance) Property|Indexer
* Set value with different type to the property/indexer, try None
* How Indexer choose the overload?
  - Incorrect argument number, type
  - (python) Overloaded index properties in general: foo['xyz'], foo['xyz', 'def'], (foo[] ?)
* repeating from the derived class or its instance
* (python) __set__/__get__...
* Negative scenario: property as By-ref argument
* Able to call the actual underlying methods
* Other operations against them
  - Call, dot,

 
Package Contents
       
test_indexercs
test_indexervb
test_property